{"id":308,"date":"2015-05-06T16:27:56","date_gmt":"2015-05-06T16:27:56","guid":{"rendered":"https:\/\/www.couchbase.com\/blog\/couchbase-spark-connector-developer-preview-refresh\/"},"modified":"2015-05-06T16:27:56","modified_gmt":"2015-05-06T16:27:56","slug":"couchbase-spark-connector-developer-preview-refresh","status":"publish","type":"post","link":"https:\/\/www.couchbase.com\/blog\/ko\/couchbase-spark-connector-developer-preview-refresh\/","title":{"rendered":"Couchbase Spark Connector &#8211; Developer Preview Refresh"},"content":{"rendered":"<p class=\"wp-block-paragraph\">It&#8217;s been a while since we&#8217;ve introduced <a href=\"https:\/\/www.couchbase.com\/blog\/ko\/introducing-the-couchbase-spark-connector\/\">the first developer preview<\/a> of our brand new Couchbase Spark Connector. So we thought it&#8217;s time for another release, providing enhancements and a handful of new features. In particular:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Native Support for Spark SQL<\/li>\n\n\n<li>Native Support for Spark Streaming<\/li>\n\n\n<li>Preferred Locations for Key\/Value Access<\/li>\n\n\n<li>Dependency Upgrades<\/li>\n\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">Most importantly, we now use <a href=\"https:\/\/spark.apache.org\/releases\/spark-release-1-3-0.html\">Apache Spark 1.3<\/a>, which will be the target version for the GA release of the connector.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">If you want to dive in right now, here are the coordinates:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Group ID: com.couchbase.client<\/li>\n\n\n<li>Artifact ID: spark-connector_2.10 or spark-connector_2.11<\/li>\n\n\n<li>Version: 1.0.0-dp2<\/li>\n\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">Make sure to include the Couchbase Repository since it is a pre-release:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">In addition to the plain maven dependency, we are now also available on <a href=\"https:\/\/spark-packages.org\/package\/couchbaselabs\/couchbase-spark-connector\">spark-packages.org<\/a>!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Spark SQL Support<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The main reason for upgrading to Spark 1.3 is the support for the new DataFrame API. The new DataFrame API is based on SQL and allows us to tightly integrate couchbase&#8217;s language specific implementation, N1QL. This provides a seamless end to end experience thats both familiar and tightly integrated.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The connector allows you to define relations (Couchbase itself does not enforce a schema) and you can either provide a schema manually or you can let the connector infer it for you. If you want automatic schema inference, it is a good idea to provide some kind of filter (for example on a type field) to get better accuracy. It will transparently load sample documents and create a schema for you which you can then query.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Here is an example with the current travel-sample:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">This will first print you a schema like:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">And then the results in the format of:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">While this is great to work with, the real power comes when you want to combine DataFrames from different sources. The following example fetches data from HDFS and Couchbase and queries it together:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Note that currently nested JSON objects and arrays are not supported, but will be in the next version. They can show up in the schema, but will fail during query time (when you want to query one of those fields or include in the result).<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Spark Streaming Support<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The first developer preview already provided support for writing data from a Spark Stream into Couchbase. In this developer preview, we&#8217;ve added experimental support for utilizing our &#8220;DCP&#8221; protocol to feed mutations and snapshot information as quickly as possible into spark. You can use this for near real-time analysis of data as it arrives in your Couchbase Cluster.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Note that currently snapshot and rollback support are not implemented, so failover and rebalance will not work as expected.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Here is a simple example on how to feed changes from your bucket:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">That&#8217;s all you need to do at this point. Make sure to test it on an empty bucket, because currently it will provide you all data in the bucket as well. Capabilities to start at the current snapshot will be added in a future release. If you run the code and then write documents into the bucket Spark Streaming will notify you of those changes:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">You can then filter for mutations and perform any kind of stream operation on them, including feeding them into a machine learning algorithm or storing in a different datastore after processing (or even back into couchbase).<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Preferred Locations for Key\/Value Access<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">One of performance killers when using Spark are shuffle operations. A &#8220;shuffle&#8221; is an operation which involves transferring data from one worker to another over the network. Since network traffic is always orders of magnitude slower than in-memory processing, shuffling needs to be avoided as much as possible.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">When you are loading documents through their unique IDs, the connector now always (and transparently) hints to Spark where the document is located in Couchbase. As a result, if you deploy a Spark Worker on every Couchbase Node, Spark will be intelligent enough to dispatch the task directly to this worker, removing the need to transfer the document over the network and allowing for local processing.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Since the location is just a hint, you can still run your workers on different nodes and Spark will dispatch them properly if it can&#8217;t find a perfect match.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">In the future, we also plan preferred locations for N1QL and View lookups based on the target node where the query will be executed.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Planned Features And Next Steps<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">While this release brings us closer to completion, we still have many things to complete. The next milestone will be a beta release and will include features like the java API, enhancements to Spark SQL and Streaming support and of course fixes and stability improvements as we find them.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Since we haven&#8217;t reached beta yet, please provide as much feedback as possible while we can change the API as needed.<\/p>","protected":false},"excerpt":{"rendered":"<p>It&#8217;s been a while since we&#8217;ve introduced the first developer preview of our brand new Couchbase Spark Connector. So we thought it&#8217;s time for another release, providing enhancements and a handful of new features. In particular: Most importantly, we now use Apache Spark 1.3, which will be the target version for the GA release of [&hellip;]<\/p>\n","protected":false},"author":19,"featured_media":18,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"inline_featured_image":false,"_acf":"","footnotes":""},"categories":[1],"tags":[],"ppma_author":[29],"class_list":["post-308","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v28.3 (Yoast SEO v28.3) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Couchbase Spark Connector - Developer Preview Refresh<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.couchbase.com\/blog\/ko\/couchbase-spark-connector-developer-preview-refresh\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Couchbase Spark Connector - Developer Preview Refresh\" \/>\n<meta property=\"og:description\" content=\"It&#8217;s been a while since we&#8217;ve introduced the first developer preview of our brand new Couchbase Spark Connector. So we thought it&#8217;s time for another release, providing enhancements and a handful of new features. In particular: Most importantly, we now use Apache Spark 1.3, which will be the target version for the GA release of [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.couchbase.com\/blog\/ko\/couchbase-spark-connector-developer-preview-refresh\/\" \/>\n<meta property=\"og:site_name\" content=\"The Couchbase Blog\" \/>\n<meta property=\"article:published_time\" content=\"2015-05-06T16:27:56+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/sites\/5\/2026\/05\/couchbase-nosql-dbaas.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1800\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Michael Nitschinger\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@daschl\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Michael Nitschinger\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/couchbase-spark-connector-developer-preview-refresh\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/couchbase-spark-connector-developer-preview-refresh\\\/\"},\"author\":{\"name\":\"Michael Nitschinger\",\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/#\\\/schema\\\/person\\\/e5d4d332756da6f361dd88c1576de61d\"},\"headline\":\"Couchbase Spark Connector &#8211; Developer Preview Refresh\",\"datePublished\":\"2015-05-06T16:27:56+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/couchbase-spark-connector-developer-preview-refresh\\\/\"},\"wordCount\":813,\"commentCount\":11,\"publisher\":{\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/couchbase-spark-connector-developer-preview-refresh\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/wp-content\\\/uploads\\\/sites\\\/5\\\/2026\\\/05\\\/couchbase-nosql-dbaas.png\",\"articleSection\":[\"Uncategorized\"],\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/couchbase-spark-connector-developer-preview-refresh\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/couchbase-spark-connector-developer-preview-refresh\\\/\",\"url\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/couchbase-spark-connector-developer-preview-refresh\\\/\",\"name\":\"Couchbase Spark Connector - Developer Preview Refresh\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/couchbase-spark-connector-developer-preview-refresh\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/couchbase-spark-connector-developer-preview-refresh\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/wp-content\\\/uploads\\\/sites\\\/5\\\/2026\\\/05\\\/couchbase-nosql-dbaas.png\",\"datePublished\":\"2015-05-06T16:27:56+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/couchbase-spark-connector-developer-preview-refresh\\\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/couchbase-spark-connector-developer-preview-refresh\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/couchbase-spark-connector-developer-preview-refresh\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/wp-content\\\/uploads\\\/sites\\\/5\\\/2026\\\/05\\\/couchbase-nosql-dbaas.png\",\"contentUrl\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/wp-content\\\/uploads\\\/sites\\\/5\\\/2026\\\/05\\\/couchbase-nosql-dbaas.png\",\"width\":1800,\"height\":630},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/couchbase-spark-connector-developer-preview-refresh\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Couchbase Spark Connector &#8211; Developer Preview Refresh\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/\",\"name\":\"The Couchbase Blog\",\"description\":\"Couchbase, the NoSQL Database\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/#organization\",\"name\":\"The Couchbase Blog\",\"url\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/wp-content\\\/uploads\\\/sites\\\/5\\\/2026\\\/06\\\/logo.svg\",\"contentUrl\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/wp-content\\\/uploads\\\/sites\\\/5\\\/2026\\\/06\\\/logo.svg\",\"width\":\"1024\",\"height\":\"1024\",\"caption\":\"The Couchbase Blog\"},\"image\":{\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/#\\\/schema\\\/person\\\/e5d4d332756da6f361dd88c1576de61d\",\"name\":\"Michael Nitschinger\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/dad99b5e02a74ca4bec14352e9da710160647a97290814b669babb3aac0ea675?s=96&d=mm&r=g95e178617974d46e3b02dd1754a3f60b\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/dad99b5e02a74ca4bec14352e9da710160647a97290814b669babb3aac0ea675?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/dad99b5e02a74ca4bec14352e9da710160647a97290814b669babb3aac0ea675?s=96&d=mm&r=g\",\"caption\":\"Michael Nitschinger\"},\"description\":\"Michael Nitschinger works as a Principal Software Engineer at Couchbase. He is the architect and maintainer of the Couchbase Java SDK, one of the first completely reactive database drivers on the JVM. He also authored and maintains the Couchbase Spark Connector. Michael is active in the open source community, a contributor to various other projects like RxJava and Netty.\",\"sameAs\":[\"https:\\\/\\\/nitschinger.at\",\"https:\\\/\\\/x.com\\\/daschl\"],\"url\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/ko\\\/author\\\/michael-nitschinger\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Couchbase Spark Connector - Developer Preview Refresh","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.couchbase.com\/blog\/ko\/couchbase-spark-connector-developer-preview-refresh\/","og_locale":"ko_KR","og_type":"article","og_title":"Couchbase Spark Connector - Developer Preview Refresh","og_description":"It&#8217;s been a while since we&#8217;ve introduced the first developer preview of our brand new Couchbase Spark Connector. So we thought it&#8217;s time for another release, providing enhancements and a handful of new features. In particular: Most importantly, we now use Apache Spark 1.3, which will be the target version for the GA release of [&hellip;]","og_url":"https:\/\/www.couchbase.com\/blog\/ko\/couchbase-spark-connector-developer-preview-refresh\/","og_site_name":"The Couchbase Blog","article_published_time":"2015-05-06T16:27:56+00:00","og_image":[{"width":1800,"height":630,"url":"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/sites\/5\/2026\/05\/couchbase-nosql-dbaas.png","type":"image\/png"}],"author":"Michael Nitschinger","twitter_card":"summary_large_image","twitter_creator":"@daschl","twitter_misc":{"Written by":"Michael Nitschinger","Est. reading time":"4\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.couchbase.com\/blog\/couchbase-spark-connector-developer-preview-refresh\/#article","isPartOf":{"@id":"https:\/\/www.couchbase.com\/blog\/couchbase-spark-connector-developer-preview-refresh\/"},"author":{"name":"Michael Nitschinger","@id":"https:\/\/www.couchbase.com\/blog\/#\/schema\/person\/e5d4d332756da6f361dd88c1576de61d"},"headline":"Couchbase Spark Connector &#8211; Developer Preview Refresh","datePublished":"2015-05-06T16:27:56+00:00","mainEntityOfPage":{"@id":"https:\/\/www.couchbase.com\/blog\/couchbase-spark-connector-developer-preview-refresh\/"},"wordCount":813,"commentCount":11,"publisher":{"@id":"https:\/\/www.couchbase.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.couchbase.com\/blog\/couchbase-spark-connector-developer-preview-refresh\/#primaryimage"},"thumbnailUrl":"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/sites\/5\/2026\/05\/couchbase-nosql-dbaas.png","articleSection":["Uncategorized"],"inLanguage":"ko-KR","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.couchbase.com\/blog\/couchbase-spark-connector-developer-preview-refresh\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.couchbase.com\/blog\/couchbase-spark-connector-developer-preview-refresh\/","url":"https:\/\/www.couchbase.com\/blog\/couchbase-spark-connector-developer-preview-refresh\/","name":"Couchbase Spark Connector - Developer Preview Refresh","isPartOf":{"@id":"https:\/\/www.couchbase.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.couchbase.com\/blog\/couchbase-spark-connector-developer-preview-refresh\/#primaryimage"},"image":{"@id":"https:\/\/www.couchbase.com\/blog\/couchbase-spark-connector-developer-preview-refresh\/#primaryimage"},"thumbnailUrl":"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/sites\/5\/2026\/05\/couchbase-nosql-dbaas.png","datePublished":"2015-05-06T16:27:56+00:00","breadcrumb":{"@id":"https:\/\/www.couchbase.com\/blog\/couchbase-spark-connector-developer-preview-refresh\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.couchbase.com\/blog\/couchbase-spark-connector-developer-preview-refresh\/"]}]},{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/www.couchbase.com\/blog\/couchbase-spark-connector-developer-preview-refresh\/#primaryimage","url":"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/sites\/5\/2026\/05\/couchbase-nosql-dbaas.png","contentUrl":"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/sites\/5\/2026\/05\/couchbase-nosql-dbaas.png","width":1800,"height":630},{"@type":"BreadcrumbList","@id":"https:\/\/www.couchbase.com\/blog\/couchbase-spark-connector-developer-preview-refresh\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.couchbase.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Couchbase Spark Connector &#8211; Developer Preview Refresh"}]},{"@type":"WebSite","@id":"https:\/\/www.couchbase.com\/blog\/#website","url":"https:\/\/www.couchbase.com\/blog\/","name":"\uce74\uc6b0\uce58\ubca0\uc774\uc2a4 \ube14\ub85c\uadf8","description":"\uce74\uc6b0\uce58\ubca0\uc774\uc2a4, NoSQL \ub370\uc774\ud130\ubca0\uc774\uc2a4","publisher":{"@id":"https:\/\/www.couchbase.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.couchbase.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Organization","@id":"https:\/\/www.couchbase.com\/blog\/#organization","name":"\uce74\uc6b0\uce58\ubca0\uc774\uc2a4 \ube14\ub85c\uadf8","url":"https:\/\/www.couchbase.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/www.couchbase.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/sites\/5\/2026\/06\/logo.svg","contentUrl":"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/sites\/5\/2026\/06\/logo.svg","width":"1024","height":"1024","caption":"The Couchbase Blog"},"image":{"@id":"https:\/\/www.couchbase.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.couchbase.com\/blog\/#\/schema\/person\/e5d4d332756da6f361dd88c1576de61d","name":"\ub9c8\uc774\ud074 \ub2c8\uce6d\uac70","image":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/secure.gravatar.com\/avatar\/dad99b5e02a74ca4bec14352e9da710160647a97290814b669babb3aac0ea675?s=96&d=mm&r=g95e178617974d46e3b02dd1754a3f60b","url":"https:\/\/secure.gravatar.com\/avatar\/dad99b5e02a74ca4bec14352e9da710160647a97290814b669babb3aac0ea675?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/dad99b5e02a74ca4bec14352e9da710160647a97290814b669babb3aac0ea675?s=96&d=mm&r=g","caption":"Michael Nitschinger"},"description":"\ub9c8\uc774\ucf08 \ub2c8\uce6d\uac70(Michael Nitschinger)\ub294 \uce74\uc6b0\uce58\ubca0\uc774\uc2a4(Couchbase)\uc758 \uc218\uc11d \uc18c\ud504\ud2b8\uc6e8\uc5b4 \uc5d4\uc9c0\ub2c8\uc5b4\uc785\ub2c8\ub2e4. \uadf8\ub294 JVM\uc5d0\uc11c \ucd5c\ucd08\uc758 \uc644\uc804\ud55c \ub9ac\uc561\ud2f0\ube0c \ub370\uc774\ud130\ubca0\uc774\uc2a4 \ub4dc\ub77c\uc774\ubc84 \uc911 \ud558\ub098\uc778 \uce74\uc6b0\uce58\ubca0\uc774\uc2a4 \uc790\ubc14 SDK\uc758 \uc544\ud0a4\ud14d\ud2b8\uc774\uc790 \uba54\uc778\ud14c\uc774\ub108\uc785\ub2c8\ub2e4. \ub610\ud55c \uce74\uc6b0\uce58\ubca0\uc774\uc2a4 \uc2a4\ud30c\ud06c \ucee4\ub125\ud130\ub97c \uc800\uc220\ud558\uace0 \uc720\uc9c0 \uad00\ub9ac\ud558\uace0 \uc788\uc2b5\ub2c8\ub2e4. \ub9c8\uc774\ucf08\uc740 \uc624\ud508 \uc18c\uc2a4 \ucee4\ubba4\ub2c8\ud2f0\uc5d0\uc11c \ud65c\ubc1c\ud788 \ud65c\ub3d9\ud558\uace0 \uc788\uc73c\uba70, RxJava \ubc0f Netty\uc640 \uac19\uc740 \ub2e4\uc591\ud55c \ub2e4\ub978 \ud504\ub85c\uc81d\ud2b8\uc5d0\ub3c4 \uae30\uc5ec\ud558\uace0 \uc788\uc2b5\ub2c8\ub2e4.","sameAs":["https:\/\/nitschinger.at","https:\/\/x.com\/daschl"],"url":"https:\/\/www.couchbase.com\/blog\/ko\/author\/michael-nitschinger\/"}]}},"acf":[],"authors":[{"term_id":29,"user_id":19,"is_guest":0,"slug":"michael-nitschinger","display_name":"Michael Nitschinger","avatar_url":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","author_category":"","first_name":"Michael","last_name":"Nitschinger, Principal Software Engineer, Couchbase","user_url":"","job_title":"","description":"\ub9c8\uc774\ucf08 \ub2c8\uce6d\uac70(Michael Nitschinger)\ub294 \uce74\uc6b0\uce58\ubca0\uc774\uc2a4(Couchbase)\uc758 \uc218\uc11d \uc18c\ud504\ud2b8\uc6e8\uc5b4 \uc5d4\uc9c0\ub2c8\uc5b4\uc785\ub2c8\ub2e4. \uadf8\ub294 JVM\uc5d0\uc11c \ucd5c\ucd08\uc758 \uc644\uc804\ud55c \ub9ac\uc561\ud2f0\ube0c \ub370\uc774\ud130\ubca0\uc774\uc2a4 \ub4dc\ub77c\uc774\ubc84 \uc911 \ud558\ub098\uc778 \uce74\uc6b0\uce58\ubca0\uc774\uc2a4 \uc790\ubc14 SDK\uc758 \uc544\ud0a4\ud14d\ud2b8\uc774\uc790 \uba54\uc778\ud14c\uc774\ub108\uc785\ub2c8\ub2e4. \ub610\ud55c \uce74\uc6b0\uce58\ubca0\uc774\uc2a4 \uc2a4\ud30c\ud06c \ucee4\ub125\ud130\ub97c \uc800\uc220\ud558\uace0 \uc720\uc9c0 \uad00\ub9ac\ud558\uace0 \uc788\uc2b5\ub2c8\ub2e4. \ub9c8\uc774\ucf08\uc740 \uc624\ud508 \uc18c\uc2a4 \ucee4\ubba4\ub2c8\ud2f0\uc5d0\uc11c \ud65c\ubc1c\ud788 \ud65c\ub3d9\ud558\uace0 \uc788\uc73c\uba70, RxJava \ubc0f Netty\uc640 \uac19\uc740 \ub2e4\uc591\ud55c \ub2e4\ub978 \ud504\ub85c\uc81d\ud2b8\uc5d0\ub3c4 \uae30\uc5ec\ud558\uace0 \uc788\uc2b5\ub2c8\ub2e4."}],"_links":{"self":[{"href":"https:\/\/www.couchbase.com\/blog\/ko\/wp-json\/wp\/v2\/posts\/308","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.couchbase.com\/blog\/ko\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.couchbase.com\/blog\/ko\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.couchbase.com\/blog\/ko\/wp-json\/wp\/v2\/users\/19"}],"replies":[{"embeddable":true,"href":"https:\/\/www.couchbase.com\/blog\/ko\/wp-json\/wp\/v2\/comments?post=308"}],"version-history":[{"count":0,"href":"https:\/\/www.couchbase.com\/blog\/ko\/wp-json\/wp\/v2\/posts\/308\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.couchbase.com\/blog\/ko\/wp-json\/wp\/v2\/media\/18"}],"wp:attachment":[{"href":"https:\/\/www.couchbase.com\/blog\/ko\/wp-json\/wp\/v2\/media?parent=308"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.couchbase.com\/blog\/ko\/wp-json\/wp\/v2\/categories?post=308"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.couchbase.com\/blog\/ko\/wp-json\/wp\/v2\/tags?post=308"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/www.couchbase.com\/blog\/ko\/wp-json\/wp\/v2\/ppma_author?post=308"}],"curies":[{"name":"\uc798\ud588\uc5b4","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}