{"id":4955,"date":"2022-02-16T02:23:00","date_gmt":"2022-02-16T10:23:00","guid":{"rendered":"https:\/\/en.pingcap.com\/?p=4955"},"modified":"2024-08-21T19:36:27","modified_gmt":"2024-08-22T02:36:27","slug":"uses-for-a-hybrid-transactional-and-analytical-processing-database","status":"publish","type":"post","link":"https:\/\/www.pingcap.com\/ko\/blog\/uses-for-a-hybrid-transactional-and-analytical-processing-database\/","title":{"rendered":"Uses for a Hybrid Transactional and Analytical Processing Database"},"content":{"rendered":"<p>Some time ago, when you bought a car, you had only one option for how it was going to get power: it came from an internal combustion engine. There were some variants on that technology, but they all relied on some sort of combustible fuel to generate the power needed to move the car along. More recently, we\u2019ve seen a rise in electric cars. These cars do not have an internal combustion engine; rather, they rely on batteries that can be charged at home or at a charging station to generate the power for the car.<\/p>\n\n\n\n<p>Both technologies have benefits and drawbacks. The internal combustion engine usually can deliver a high amount of power and is reasonably easy to refuel when needed. It has a negative side effect in that internal combustion engines are viewed as a primary pollution source. The electric engine is thought to be more ecologically sensitive, but it can be difficult to get enough power to drive a larger vehicle, and the need to recharge often can lead to range limitations.<\/p>\n\n\n\n<p>One solution to this is the hybrid vehicle. Such a car has both an internal combustion engine and batteries for an electric engine. This means that it can operate using only one or, in some cases, both engines. You get the environmental benefits of an electric vehicle along with the range and power of an internal combustion car.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"hybrid-transactional-and-analytical-processing-databases\"><span class=\"ez-toc-section\" id=\"Hybrid_Transactional_and_Analytical_Processing_databases\"><\/span>Hybrid Transactional and Analytical Processing databases<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>As it turns out, the same concepts can be applied to databases. For a long time, the only option we had was row store databases. They were great at processing transactions, getting data written and replicated, and processing standard queries.<\/p>\n\n\n\n<p>Over time, those databases became constrained as data volumes grew and queries became more complex. <strong>Even though they were great at processing transactions, some queries were overly time-consuming and used far too many resources to be run regularly.<\/strong> Enter analytical databases, which usually store data in a columnar format. These databases can process intense analytical queries with amazing speed but often have limitations in terms of getting data written since the data needs to be broken out into its columnar components.<\/p>\n\n\n\n<p>Now we have the Hybrid Transactional and Analytical Processing (HTAP) database. Like the hybrid car, you get the benefits of the transactional database, plus the goodness of an analytical database, all in a single package.<\/p>\n\n\n\n<p>But do you need such a database? As in many cases, the answer is \u201cit depends\u201d.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"example-applications\"><span class=\"ez-toc-section\" id=\"Example_applications\"><\/span>Example applications<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>Let\u2019s consider a retail store. Depending on the size of the store and the volume of activity, an HTAP database like <a href=\"https:\/\/www.pingcap.com\/ko\/tidb\/\">\ud2f0DB<\/a> may or may not be a good fit. If this store is in a single location and sells a limited stock of goods, then TiDB probably is overkill for them. They could use another open-source product to process transactions and keep track of inventory. If there is a delay between when a product was sold and when it is taken out of the online inventory, it\u2019s probably not a big problem. A store of this size may not even have an online store, so their main customer is the person who walks through the door to make a purchase.<\/p>\n\n\n\n<p>Now, let\u2019s look at a larger store, with a higher volume of products moving in and out, such as one of the big box retailers. In this case, having immediate access to an up-to-date inventory is highly important. For this type of retailer, TiDB is a great option.<\/p>\n\n\n\n<p>When a transaction is processed in TiDB, the information is written simultaneously to the transaction store and the analytics store. TiDB uses a key-value store, called TiKV, to write the transactional request, and a column store, called TiFlash, to write the same data for analytical purposes. <strong>The fact that the data is written to both storage locations at the same time is the strength of an HTAP database.<\/strong><\/p>\n\n\n\n<p>This means that when a purchase is recorded in the transactional store, the purchase (and the corresponding reduction in inventory) is recorded in the analytical engine. There is no need for an Extract, Transform, and Load (ETL) process to run to populate data into the analytical storage. <strong>When an ETL process is involved, there is an unavoidable delay in getting the record written to the analytical engine meaning that queries can and will return out of date results.<\/strong> In some cases, this may not be an issue, but if a customer wants to know if a popular item is in stock, getting the most current information to them is crucial.<\/p>\n\n\n\n<p>In financial situations, having access to up to the second data can literally mean savings or loss of money. Consider a case where you are using an analytical database to predict the price of a stock, with a purchase or sale being made once it is expected that the stock will reach a specified price point. If the data is even a few seconds out of date, the analysis is skewed, and the results are less than trustworthy; this can mean the difference between a sale at a profit or a sale at a loss.<\/p>\n\n\n\n<p>Gaming companies have a different need. When playing a game, the user has multiple paths that they can take at any point within the game. Based on their current actions coupled with previous activities, the game can adapt to the individual user\u2019s gameplay. In some cases, the game may make offers of items for purchase to assist a player in the game. It makes little sense if that offer comes after a user has successfully (or unsuccessfully) completed the task it was intended to assist. <strong>Having the ability to analyze the activities of a player as they are happening is key to the success of the game.<\/strong> Once again, relying on an ETL process to get the data over to the analytical database creates too much lag for sustainability.<\/p>\n\n\n\n<p>If having the ability to run operational queries with real-time data benefits the company, then looking at a hybrid database makes sense. <strong>MySQL compatibility provides an easy path to migration and there is little or no need to alter your application or change the user interface.<\/strong> Built-in high availability provides a stable environment and massively parallel processing of analytical queries provides a greatly enhanced user experience.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"summary\"><span class=\"ez-toc-section\" id=\"Summary\"><\/span>Summary<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>An HTAP database is not needed by all companies, but there are organizations for which it makes perfect sense. <strong>In much the same way that we are embracing hybrid automobiles for certain needs, we can embrace hybrid databases for certain needs.<\/strong> Industries like those described above see huge benefits to implementing a hybrid database. Such a database continues to meet the need for speedy transactions while also delivering real-time analytics capabilities. <\/p>","protected":false},"excerpt":{"rendered":"<p>With a Hybrid Transactional and Analytical Processing (HTAP) database like TiDB, you get the benefits of the transactional database, plus the goodness of an analytical database, all in a single package. But whether you need it depends on your application scenarios.<\/p>","protected":false},"author":18,"featured_media":4956,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"ub_ctt_via":"","footnotes":""},"categories":[145],"tags":[10,11,111],"class_list":["post-4955","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-thought-leadership","tag-htap","tag-real-time-analytics","tag-tidb"],"acf":[],"featured_image_src":"https:\/\/static.pingcap.com\/files\/2022\/02\/Why-HTAP-scaled.jpeg","author_info":{"display_name":"Rick Golba","author_link":"https:\/\/www.pingcap.com\/ko\/blog\/author\/rick-golba\/"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Uses for a Hybrid Transactional &amp; Analytical Processing Database<\/title>\n<meta name=\"description\" content=\"With an HTAP database like TiDB, you get the benefits of a transactional database, the goodness of an analytical database in a single stack.\" \/>\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.pingcap.com\/ko\/blog\/uses-for-a-hybrid-transactional-and-analytical-processing-database\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Uses for a Hybrid Transactional &amp; Analytical Processing Database\" \/>\n<meta property=\"og:description\" content=\"With an HTAP database like TiDB, you get the benefits of a transactional database, the goodness of an analytical database in a single stack.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.pingcap.com\/ko\/blog\/uses-for-a-hybrid-transactional-and-analytical-processing-database\/\" \/>\n<meta property=\"og:site_name\" content=\"TiDB\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/facebook.com\/pingcap2015\" \/>\n<meta property=\"article:published_time\" content=\"2022-02-16T10:23:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-08-22T02:36:27+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/static.pingcap.com\/files\/2022\/02\/Uses_for_a_HTAP_database.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2501\" \/>\n\t<meta property=\"og:image:height\" content=\"1309\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Rick Golba\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/static.pingcap.com\/files\/2022\/02\/Uses_for_a_HTAP_database.jpg\" \/>\n<meta name=\"twitter:creator\" content=\"@PingCAP\" \/>\n<meta name=\"twitter:site\" content=\"@PingCAP\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Rick Golba\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.pingcap.com\/blog\/uses-for-a-hybrid-transactional-and-analytical-processing-database\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.pingcap.com\/blog\/uses-for-a-hybrid-transactional-and-analytical-processing-database\/\"},\"author\":{\"name\":\"Rick Golba\",\"@id\":\"https:\/\/www.pingcap.com\/#\/schema\/person\/5e91718080741939570b1c9cc7e1d4e1\"},\"headline\":\"Uses for a Hybrid Transactional and Analytical Processing Database\",\"datePublished\":\"2022-02-16T10:23:00+00:00\",\"dateModified\":\"2024-08-22T02:36:27+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.pingcap.com\/blog\/uses-for-a-hybrid-transactional-and-analytical-processing-database\/\"},\"wordCount\":1136,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.pingcap.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.pingcap.com\/blog\/uses-for-a-hybrid-transactional-and-analytical-processing-database\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/static.pingcap.com\/files\/2022\/02\/Why-HTAP-scaled.jpeg\",\"keywords\":[\"HTAP\",\"Real-time analytics\",\"TiDB\"],\"articleSection\":[\"Thought Leadership\"],\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.pingcap.com\/blog\/uses-for-a-hybrid-transactional-and-analytical-processing-database\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.pingcap.com\/blog\/uses-for-a-hybrid-transactional-and-analytical-processing-database\/\",\"url\":\"https:\/\/www.pingcap.com\/blog\/uses-for-a-hybrid-transactional-and-analytical-processing-database\/\",\"name\":\"Uses for a Hybrid Transactional & Analytical Processing Database\",\"isPartOf\":{\"@id\":\"https:\/\/www.pingcap.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.pingcap.com\/blog\/uses-for-a-hybrid-transactional-and-analytical-processing-database\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.pingcap.com\/blog\/uses-for-a-hybrid-transactional-and-analytical-processing-database\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/static.pingcap.com\/files\/2022\/02\/Why-HTAP-scaled.jpeg\",\"datePublished\":\"2022-02-16T10:23:00+00:00\",\"dateModified\":\"2024-08-22T02:36:27+00:00\",\"description\":\"With an HTAP database like TiDB, you get the benefits of a transactional database, the goodness of an analytical database in a single stack.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.pingcap.com\/blog\/uses-for-a-hybrid-transactional-and-analytical-processing-database\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.pingcap.com\/blog\/uses-for-a-hybrid-transactional-and-analytical-processing-database\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/www.pingcap.com\/blog\/uses-for-a-hybrid-transactional-and-analytical-processing-database\/#primaryimage\",\"url\":\"https:\/\/static.pingcap.com\/files\/2022\/02\/Why-HTAP-scaled.jpeg\",\"contentUrl\":\"https:\/\/static.pingcap.com\/files\/2022\/02\/Why-HTAP-scaled.jpeg\",\"width\":2560,\"height\":853,\"caption\":\"Why HTAP\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.pingcap.com\/blog\/uses-for-a-hybrid-transactional-and-analytical-processing-database\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.pingcap.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Uses for a Hybrid Transactional and Analytical Processing Database\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.pingcap.com\/#website\",\"url\":\"https:\/\/www.pingcap.com\/\",\"name\":\"TiDB\",\"description\":\"TiDB | SQL at Scale\",\"publisher\":{\"@id\":\"https:\/\/www.pingcap.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.pingcap.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.pingcap.com\/#organization\",\"name\":\"PingCAP\",\"url\":\"https:\/\/www.pingcap.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/www.pingcap.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/static.pingcap.com\/files\/2021\/11\/pingcap-logo.png\",\"contentUrl\":\"https:\/\/static.pingcap.com\/files\/2021\/11\/pingcap-logo.png\",\"width\":811,\"height\":232,\"caption\":\"PingCAP\"},\"image\":{\"@id\":\"https:\/\/www.pingcap.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/facebook.com\/pingcap2015\",\"https:\/\/x.com\/PingCAP\",\"https:\/\/linkedin.com\/company\/pingcap\",\"https:\/\/youtube.com\/channel\/UCuq4puT32DzHKT5rU1IZpIA\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.pingcap.com\/#\/schema\/person\/5e91718080741939570b1c9cc7e1d4e1\",\"name\":\"Rick Golba\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/www.pingcap.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/static.pingcap.com\/files\/2022\/10\/17234942\/avatar.jpg\",\"contentUrl\":\"https:\/\/static.pingcap.com\/files\/2022\/10\/17234942\/avatar.jpg\",\"caption\":\"Rick Golba\"},\"url\":\"https:\/\/www.pingcap.com\/ko\/blog\/author\/rick-golba\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Uses for a Hybrid Transactional & Analytical Processing Database","description":"With an HTAP database like TiDB, you get the benefits of a transactional database, the goodness of an analytical database in a single stack.","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.pingcap.com\/ko\/blog\/uses-for-a-hybrid-transactional-and-analytical-processing-database\/","og_locale":"ko_KR","og_type":"article","og_title":"Uses for a Hybrid Transactional & Analytical Processing Database","og_description":"With an HTAP database like TiDB, you get the benefits of a transactional database, the goodness of an analytical database in a single stack.","og_url":"https:\/\/www.pingcap.com\/ko\/blog\/uses-for-a-hybrid-transactional-and-analytical-processing-database\/","og_site_name":"TiDB","article_publisher":"https:\/\/facebook.com\/pingcap2015","article_published_time":"2022-02-16T10:23:00+00:00","article_modified_time":"2024-08-22T02:36:27+00:00","og_image":[{"width":2501,"height":1309,"url":"https:\/\/static.pingcap.com\/files\/2022\/02\/Uses_for_a_HTAP_database.jpg","type":"image\/jpeg"}],"author":"Rick Golba","twitter_card":"summary_large_image","twitter_image":"https:\/\/static.pingcap.com\/files\/2022\/02\/Uses_for_a_HTAP_database.jpg","twitter_creator":"@PingCAP","twitter_site":"@PingCAP","twitter_misc":{"Written by":"Rick Golba","Est. reading time":"5\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.pingcap.com\/blog\/uses-for-a-hybrid-transactional-and-analytical-processing-database\/#article","isPartOf":{"@id":"https:\/\/www.pingcap.com\/blog\/uses-for-a-hybrid-transactional-and-analytical-processing-database\/"},"author":{"name":"Rick Golba","@id":"https:\/\/www.pingcap.com\/#\/schema\/person\/5e91718080741939570b1c9cc7e1d4e1"},"headline":"Uses for a Hybrid Transactional and Analytical Processing Database","datePublished":"2022-02-16T10:23:00+00:00","dateModified":"2024-08-22T02:36:27+00:00","mainEntityOfPage":{"@id":"https:\/\/www.pingcap.com\/blog\/uses-for-a-hybrid-transactional-and-analytical-processing-database\/"},"wordCount":1136,"commentCount":0,"publisher":{"@id":"https:\/\/www.pingcap.com\/#organization"},"image":{"@id":"https:\/\/www.pingcap.com\/blog\/uses-for-a-hybrid-transactional-and-analytical-processing-database\/#primaryimage"},"thumbnailUrl":"https:\/\/static.pingcap.com\/files\/2022\/02\/Why-HTAP-scaled.jpeg","keywords":["HTAP","Real-time analytics","TiDB"],"articleSection":["Thought Leadership"],"inLanguage":"ko-KR","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.pingcap.com\/blog\/uses-for-a-hybrid-transactional-and-analytical-processing-database\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.pingcap.com\/blog\/uses-for-a-hybrid-transactional-and-analytical-processing-database\/","url":"https:\/\/www.pingcap.com\/blog\/uses-for-a-hybrid-transactional-and-analytical-processing-database\/","name":"Uses for a Hybrid Transactional & Analytical Processing Database","isPartOf":{"@id":"https:\/\/www.pingcap.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.pingcap.com\/blog\/uses-for-a-hybrid-transactional-and-analytical-processing-database\/#primaryimage"},"image":{"@id":"https:\/\/www.pingcap.com\/blog\/uses-for-a-hybrid-transactional-and-analytical-processing-database\/#primaryimage"},"thumbnailUrl":"https:\/\/static.pingcap.com\/files\/2022\/02\/Why-HTAP-scaled.jpeg","datePublished":"2022-02-16T10:23:00+00:00","dateModified":"2024-08-22T02:36:27+00:00","description":"With an HTAP database like TiDB, you get the benefits of a transactional database, the goodness of an analytical database in a single stack.","breadcrumb":{"@id":"https:\/\/www.pingcap.com\/blog\/uses-for-a-hybrid-transactional-and-analytical-processing-database\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.pingcap.com\/blog\/uses-for-a-hybrid-transactional-and-analytical-processing-database\/"]}]},{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/www.pingcap.com\/blog\/uses-for-a-hybrid-transactional-and-analytical-processing-database\/#primaryimage","url":"https:\/\/static.pingcap.com\/files\/2022\/02\/Why-HTAP-scaled.jpeg","contentUrl":"https:\/\/static.pingcap.com\/files\/2022\/02\/Why-HTAP-scaled.jpeg","width":2560,"height":853,"caption":"Why HTAP"},{"@type":"BreadcrumbList","@id":"https:\/\/www.pingcap.com\/blog\/uses-for-a-hybrid-transactional-and-analytical-processing-database\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.pingcap.com\/"},{"@type":"ListItem","position":2,"name":"Uses for a Hybrid Transactional and Analytical Processing Database"}]},{"@type":"WebSite","@id":"https:\/\/www.pingcap.com\/#website","url":"https:\/\/www.pingcap.com\/","name":"\ud2f0DB","description":"TiDB | SQL at Scale","publisher":{"@id":"https:\/\/www.pingcap.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.pingcap.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Organization","@id":"https:\/\/www.pingcap.com\/#organization","name":"PingCAP","url":"https:\/\/www.pingcap.com\/","logo":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/www.pingcap.com\/#\/schema\/logo\/image\/","url":"https:\/\/static.pingcap.com\/files\/2021\/11\/pingcap-logo.png","contentUrl":"https:\/\/static.pingcap.com\/files\/2021\/11\/pingcap-logo.png","width":811,"height":232,"caption":"PingCAP"},"image":{"@id":"https:\/\/www.pingcap.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/facebook.com\/pingcap2015","https:\/\/x.com\/PingCAP","https:\/\/linkedin.com\/company\/pingcap","https:\/\/youtube.com\/channel\/UCuq4puT32DzHKT5rU1IZpIA"]},{"@type":"Person","@id":"https:\/\/www.pingcap.com\/#\/schema\/person\/5e91718080741939570b1c9cc7e1d4e1","name":"Rick Golba","image":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/www.pingcap.com\/#\/schema\/person\/image\/","url":"https:\/\/static.pingcap.com\/files\/2022\/10\/17234942\/avatar.jpg","contentUrl":"https:\/\/static.pingcap.com\/files\/2022\/10\/17234942\/avatar.jpg","caption":"Rick Golba"},"url":"https:\/\/www.pingcap.com\/ko\/blog\/author\/rick-golba\/"}]}},"grav_blocks":false,"card_markup":"<a class=\"card-resource bg-white\" href=\"https:\/\/www.pingcap.com\/ko\/blog\/uses-for-a-hybrid-transactional-and-analytical-processing-database\/\"><div class=\"card-resource__image-container\"><img class=\"card-resource__image\" alt=\"Why HTAP\" src=\"https:\/\/static.pingcap.com\/files\/2022\/02\/Why-HTAP-scaled.jpeg\" loading=\"lazy\" width=2560 height=853 \/><\/div><div class=\"card-resource__content-container\"><div class=\"card-resource__content-head\"><div class=\"card-resource__category\">Thought Leadership<\/div><\/div><h5 class=\"card-resource__title\">Uses for a Hybrid Transactional and Analytical Processing Database<\/h5><\/div><\/a>","_links":{"self":[{"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/posts\/4955","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/users\/18"}],"replies":[{"embeddable":true,"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/comments?post=4955"}],"version-history":[{"count":8,"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/posts\/4955\/revisions"}],"predecessor-version":[{"id":19044,"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/posts\/4955\/revisions\/19044"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/media\/4956"}],"wp:attachment":[{"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/media?parent=4955"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/categories?post=4955"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/tags?post=4955"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}