{"id":19422,"date":"2024-08-30T05:30:28","date_gmt":"2024-08-30T12:30:28","guid":{"rendered":"https:\/\/www.pingcap.com\/article\/integrating-tidb-for-efficient-iot-solutions\/"},"modified":"2024-09-03T02:34:12","modified_gmt":"2024-09-03T09:34:12","slug":"integrating-tidb-for-efficient-iot-solutions","status":"publish","type":"article","link":"https:\/\/www.pingcap.com\/ko\/article\/integrating-tidb-for-efficient-iot-solutions\/","title":{"rendered":"Integrating TiDB for Efficient IoT Solutions"},"content":{"rendered":"<h2><span class=\"ez-toc-section\" id=\"Introduction_to_TiDB_Integration_in_IoT\"><\/span>Introduction to TiDB Integration in IoT<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<h3>Overview of TiDB<\/h3>\n<p>TiDB stands out as a distributed SQL database system that is not only MySQL-compatible but also tailored for Hybrid Transactional and Analytical Processing (HTAP) workloads. Integrating <a href=\"https:\/\/github.com\/pingcap\/tidb\">\ud2f0DB<\/a> into Internet of Things (IoT) applications holds immense potential due to its ability to manage massive amounts of data with strong consistency, high availability, and horizontal scalability. TiDB&#8217;s architecture is based on a separation of computing and storage, which ensures efficient management of resources and makes it an ideal choice for handling dynamic IoT workloads.<\/p>\n<p>For more information about TiDB&#8217;s key features and architecture, check out <a href=\"https:\/\/docs.pingcap.com\/tidb\/stable\/overview\">TiDB Introduction<\/a>.<\/p>\n<img decoding=\"async\" src=\"https:\/\/static.pingcap.com\/files\/2024\/08\/30053012\/picturesimg-gIqEq1UH3VJfRRMQp5AVh3Qq.jpg\" alt=\"Illustration of TiDB architecture showing the separation of computing and storage with arrows indicating data flow.\" \/>\n<h3>Rising Importance of IoT in Modern Applications<\/h3>\n<p>The Internet of Things (IoT) represents a paradigm shift in how devices interact with each other and with human operators. In various sectors such as healthcare, manufacturing, and smart cities, IoT networks are growing exponentially both in scale and complexity. Each IoT device generates a continuous stream of data that needs real-time processing, analysis, and storage to enable applications ranging from predictive maintenance to smart grid management.<\/p>\n<h3>The Intersection of Databases and Edge Computing<\/h3>\n<p>Edge computing pushes data processing closer to the source of data generation, reducing latency and bandwidth consumption. This is crucial for IoT applications where real-time decision-making is necessary. Traditional database systems often fall short in such scenarios due to their centralized nature and limited scalability. TiDB, with its distributed architecture, aligns perfectly with the needs of edge computing by offering real-time data processing and high availability.<\/p>\n<h2><span class=\"ez-toc-section\" id=\"Benefits_of_TiDB_for_IoT_and_Edge_Computing\"><\/span>Benefits of TiDB for IoT and Edge Computing<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<h3>Real-time Data Processing and Analysis<\/h3>\n<p>In IoT environments, data must be processed and analyzed in real-time to enable timely actions and decisions. TiDB&#8217;s HTAP capabilities make it exceptionally suited for this requirement. TiDB employs <a href=\"https:\/\/docs.pingcap.com\/tidb\/stable\/tikv-overview\">TiKV<\/a> for row-based storage and <a href=\"https:\/\/docs.pingcap.com\/tidb\/stable\/tiflash-overview\">TiFlash<\/a> for columnar storage. This dual-engine setup enables TiDB to handle both transactional and analytical workloads seamlessly, allowing for real-time data insights.<\/p>\n<p>Example code snippet depicting real-time data ingestion:<\/p>\n<div class=\"codehilite\">\n<pre><code><span class=\"k\">INSERT<\/span> <span class=\"k\">INTO<\/span> <span class=\"n\">sensor_data<\/span> <span class=\"p\">(<\/span><span class=\"n\">device_id<\/span><span class=\"p\">,<\/span> <span class=\"n\">temperature<\/span><span class=\"p\">,<\/span> <span class=\"n\">humidity<\/span><span class=\"p\">,<\/span> <span class=\"n\">time_stamp<\/span><span class=\"p\">)<\/span>\n<span class=\"k\">VALUES<\/span> <span class=\"p\">(<\/span><span class=\"s1\">'device123'<\/span><span class=\"p\">,<\/span> <span class=\"mi\">75<\/span><span class=\"p\">.<\/span><span class=\"mi\">2<\/span><span class=\"p\">,<\/span> <span class=\"mi\">44<\/span><span class=\"p\">.<\/span><span class=\"mi\">1<\/span><span class=\"p\">,<\/span> <span class=\"n\">NOW<\/span><span class=\"p\">());<\/span>\n<\/code><\/pre>\n<\/div>\n<h3>Scalability and Flexibility for Growing IoT Networks<\/h3>\n<p>IoT networks are inherently dynamic, with new devices being added continuously. TiDB&#8217;s horizontal scalability ensures that the database can grow in tandem with the IoT network. Whenever additional storage or computational power is required, new nodes can be added effortlessly without any downtime, making TiDB a highly scalable solution.<\/p>\n<h3>High Availability and Fault Tolerance<\/h3>\n<p>In IoT deployments, data loss or system downtime can be catastrophic. TiDB&#8217;s design incorporates multiple replicas and uses the Multi-Raft protocol to ensure data consistency and availability even when some replicas fail. This makes TiDB a reliable choice for critical IoT applications.<\/p>\n<p>For instance, in financial-grade deployments, TiDB can be configured with geographical replicas to ensure disaster recovery with a Recovery Time Objective (RTO) of less than 30 seconds and a Recovery Point Objective (RPO) of zero.<\/p>\n<h2><span class=\"ez-toc-section\" id=\"Implementation_Strategies\"><\/span>Implementation Strategies<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<h3>Architecture Planning for Integrating TiDB with IoT Solutions<\/h3>\n<p>Effective architecture planning is vital for integrating TiDB with IoT solutions. The architecture needs to consider factors such as data ingestion rates, storage requirements, computational needs, and the distribution of data across edge and cloud environments. A hybrid cloud-edge architecture can be employed where TiDB clusters are deployed both at the edge and in the cloud to ensure optimal performance and resource utilization.<\/p>\n<h3>Optimizing Data Ingestion and Storage<\/h3>\n<p>Efficient data ingestion and storage are key to leveraging TiDB&#8217;s full potential. Using tools like <a href=\"https:\/\/docs.pingcap.com\/tidb\/stable\/tidb-lightning-overview\">TiDB Lightning<\/a> can expedite the import of large datasets. For real-time ingestion, leveraging TiDB&#8217;s compatibility with Kafka through <a href=\"https:\/\/docs.pingcap.com\/tidb\/stable\/ticdc-overview\">TiCDC<\/a> can ensure smooth streaming of data into the system.<\/p>\n<p>Example configuration for TiCDC:<\/p>\n<div class=\"codehilite\">\n<pre><code><span class=\"c1\"># Changefeed configuration<\/span>\n<span class=\"nt\">cdc<\/span><span class=\"p\">:<\/span>\n  <span class=\"nt\">changefeeds<\/span><span class=\"p\">:<\/span>\n    <span class=\"p p-Indicator\">-<\/span> <span class=\"nt\">name<\/span><span class=\"p\">:<\/span> <span class=\"s\">\"sensor_data_changefeed\"<\/span>\n      <span class=\"nt\">source<\/span><span class=\"p\">:<\/span> <span class=\"s\">\"kafka_cluster\"<\/span>\n      <span class=\"nt\">sink<\/span><span class=\"p\">:<\/span> <span class=\"s\">\"tidb_cluster\"<\/span>\n      <span class=\"nt\">tables<\/span><span class=\"p\">:<\/span>\n        <span class=\"p p-Indicator\">-<\/span> <span class=\"nt\">name<\/span><span class=\"p\">:<\/span> <span class=\"s\">\"sensor_data\"<\/span>\n<\/code><\/pre>\n<\/div>\n<h3>Enhancing Query Performance at the Edge<\/h3>\n<p>To enhance query performance at the edge, it&#8217;s crucial to optimize indexes and queries. Using <a href=\"https:\/\/docs.pingcap.com\/tidb\/stable\/tiflash-overview\">TiFlash<\/a> can offload analytical queries, reducing the load on the TiKV nodes. Furthermore, employing proper indexing strategies can significantly speed up data retrieval.<\/p>\n<p>Example of creating a composite index for better query performance:<\/p>\n<div class=\"codehilite\">\n<pre><code><span class=\"k\">CREATE<\/span> <span class=\"k\">INDEX<\/span> <span class=\"n\">idx_device_timestamp<\/span> <span class=\"k\">ON<\/span> <span class=\"n\">sensor_data<\/span> <span class=\"p\">(<\/span><span class=\"n\">device_id<\/span><span class=\"p\">,<\/span> <span class=\"n\">time_stamp<\/span><span class=\"p\">);<\/span>\n<\/code><\/pre>\n<\/div>\n<h2><span class=\"ez-toc-section\" id=\"Case_Studies_and_Real-world_Applications\"><\/span>Case Studies and Real-world Applications<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<h3>IoT Use Cases Across Different Industries<\/h3>\n<p>IoT applications span across numerous industries, each with unique requirements and challenges:<\/p>\n<ol>\n<li><strong>Healthcare<\/strong>: Remote patient monitoring systems generate continuous streams of health data that need immediate analysis for timely interventions.<\/li>\n<li><strong>Manufacturing<\/strong>: Predictive maintenance systems rely on real-time sensor data to anticipate equipment failures and optimize maintenance schedules.<\/li>\n<li><strong>Smart Cities<\/strong>: Traffic management systems utilize data from various sensors to regulate traffic flow and reduce congestion.<\/li>\n<\/ol>\n<h3>Success Stories of TiDB Deployment in IoT Projects<\/h3>\n<p>Several organizations have successfully deployed TiDB in their IoT projects:<\/p>\n<ol>\n<li><strong>Smart Grid Management<\/strong>: A utility company uses TiDB for managing its smart grid data, ensuring uninterrupted power supply and optimizing grid efficiency.<\/li>\n<li><strong>Connected Vehicles<\/strong>: An automotive company employs TiDB to store and analyze data from connected vehicles, enhancing driving safety and improving vehicle performance.<\/li>\n<\/ol>\n<h3>Lessons Learned and Best Practices<\/h3>\n<p>From various TiDB IoT implementations, the following lessons have been learned:<\/p>\n<ol>\n<li><strong>Data Partitioning<\/strong>: Proper data partitioning and sharding strategies are crucial for balancing load and enhancing performance.<\/li>\n<li><strong>Monitoring and Alerts<\/strong>: Continuous monitoring and real-time alerts help in quickly identifying and resolving issues, ensuring high availability.<\/li>\n<li><strong>Resource Allocation<\/strong>: Dynamic allocation of resources based on workload demands ensures optimal performance without resource wastage.<\/li>\n<\/ol>\n<h2><span class=\"ez-toc-section\" id=\"Conclusion\"><\/span>Conclusion<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<p>TiDB offers a comprehensive solution for IoT and edge computing environments with its distributed architecture, real-time processing capabilities, and high availability, making it an ideal choice for modern IoT applications. Integrating TiDB into your IoT ecosystem can not only improve efficiency and reliability but also unlock new possibilities for real-time data analysis and decision-making.<\/p>\n<p>To explore more about TiDB and how it can revolutionize your IoT solutions, visit the <a href=\"https:\/\/docs.pingcap.com\/tidb\/stable\/overview\">official TiDB documentation<\/a>.<\/p>\n<p>Ready to get started? <a href=\"https:\/\/docs.pingcap.com\/tidb-in-kubernetes\/stable\/tidb-operator-overview\">Deploy TiDB on Kubernetes<\/a> today and experience the power of a truly distributed SQL database tailored for your IoT needs.<\/p>","protected":false},"excerpt":{"rendered":"<p>Discover how TiDB enhances IoT applications with real-time data processing, scalability, and high availability.<\/p>","protected":false},"author":8,"featured_media":0,"template":"","class_list":["post-19422","article","type-article","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Integrating TiDB for Efficient IoT Solutions | TiDB<\/title>\n<meta name=\"description\" content=\"Discover how TiDB enhances IoT applications with real-time data processing, scalability, and high availability.\" \/>\n<meta name=\"robots\" content=\"noindex, follow\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Integrating TiDB for Efficient IoT Solutions | TiDB\" \/>\n<meta property=\"og:description\" content=\"Discover how TiDB enhances IoT applications with real-time data processing, scalability, and high availability.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.pingcap.com\/ko\/article\/integrating-tidb-for-efficient-iot-solutions\/\" \/>\n<meta property=\"og:site_name\" content=\"TiDB\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/facebook.com\/pingcap2015\" \/>\n<meta property=\"article:modified_time\" content=\"2024-09-03T09:34:12+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/static.pingcap.com\/files\/2024\/08\/30053012\/picturesimg-gIqEq1UH3VJfRRMQp5AVh3Qq.jpg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@PingCAP\" \/>\n<meta name=\"twitter:label1\" content=\"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04\" \/>\n\t<meta name=\"twitter:data1\" content=\"5\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.pingcap.com\/article\/integrating-tidb-for-efficient-iot-solutions\/\",\"url\":\"https:\/\/www.pingcap.com\/article\/integrating-tidb-for-efficient-iot-solutions\/\",\"name\":\"Integrating TiDB for Efficient IoT Solutions | TiDB\",\"isPartOf\":{\"@id\":\"https:\/\/www.pingcap.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.pingcap.com\/article\/integrating-tidb-for-efficient-iot-solutions\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.pingcap.com\/article\/integrating-tidb-for-efficient-iot-solutions\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/static.pingcap.com\/files\/2024\/08\/30053012\/picturesimg-gIqEq1UH3VJfRRMQp5AVh3Qq.jpg\",\"datePublished\":\"2024-08-30T12:30:28+00:00\",\"dateModified\":\"2024-09-03T09:34:12+00:00\",\"description\":\"Discover how TiDB enhances IoT applications with real-time data processing, scalability, and high availability.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.pingcap.com\/article\/integrating-tidb-for-efficient-iot-solutions\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.pingcap.com\/article\/integrating-tidb-for-efficient-iot-solutions\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/www.pingcap.com\/article\/integrating-tidb-for-efficient-iot-solutions\/#primaryimage\",\"url\":\"https:\/\/static.pingcap.com\/files\/2024\/08\/30053012\/picturesimg-gIqEq1UH3VJfRRMQp5AVh3Qq.jpg\",\"contentUrl\":\"https:\/\/static.pingcap.com\/files\/2024\/08\/30053012\/picturesimg-gIqEq1UH3VJfRRMQp5AVh3Qq.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.pingcap.com\/article\/integrating-tidb-for-efficient-iot-solutions\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.pingcap.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Articles\",\"item\":\"https:\/\/www.pingcap.com\/article\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Integrating TiDB for Efficient IoT Solutions\"}]},{\"@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\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Integrating TiDB for Efficient IoT Solutions | TiDB","description":"Discover how TiDB enhances IoT applications with real-time data processing, scalability, and high availability.","robots":{"index":"noindex","follow":"follow"},"og_locale":"ko_KR","og_type":"article","og_title":"Integrating TiDB for Efficient IoT Solutions | TiDB","og_description":"Discover how TiDB enhances IoT applications with real-time data processing, scalability, and high availability.","og_url":"https:\/\/www.pingcap.com\/ko\/article\/integrating-tidb-for-efficient-iot-solutions\/","og_site_name":"TiDB","article_publisher":"https:\/\/facebook.com\/pingcap2015","article_modified_time":"2024-09-03T09:34:12+00:00","og_image":[{"url":"https:\/\/static.pingcap.com\/files\/2024\/08\/30053012\/picturesimg-gIqEq1UH3VJfRRMQp5AVh3Qq.jpg","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_site":"@PingCAP","twitter_misc":{"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"5\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.pingcap.com\/article\/integrating-tidb-for-efficient-iot-solutions\/","url":"https:\/\/www.pingcap.com\/article\/integrating-tidb-for-efficient-iot-solutions\/","name":"Integrating TiDB for Efficient IoT Solutions | TiDB","isPartOf":{"@id":"https:\/\/www.pingcap.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.pingcap.com\/article\/integrating-tidb-for-efficient-iot-solutions\/#primaryimage"},"image":{"@id":"https:\/\/www.pingcap.com\/article\/integrating-tidb-for-efficient-iot-solutions\/#primaryimage"},"thumbnailUrl":"https:\/\/static.pingcap.com\/files\/2024\/08\/30053012\/picturesimg-gIqEq1UH3VJfRRMQp5AVh3Qq.jpg","datePublished":"2024-08-30T12:30:28+00:00","dateModified":"2024-09-03T09:34:12+00:00","description":"Discover how TiDB enhances IoT applications with real-time data processing, scalability, and high availability.","breadcrumb":{"@id":"https:\/\/www.pingcap.com\/article\/integrating-tidb-for-efficient-iot-solutions\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.pingcap.com\/article\/integrating-tidb-for-efficient-iot-solutions\/"]}]},{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/www.pingcap.com\/article\/integrating-tidb-for-efficient-iot-solutions\/#primaryimage","url":"https:\/\/static.pingcap.com\/files\/2024\/08\/30053012\/picturesimg-gIqEq1UH3VJfRRMQp5AVh3Qq.jpg","contentUrl":"https:\/\/static.pingcap.com\/files\/2024\/08\/30053012\/picturesimg-gIqEq1UH3VJfRRMQp5AVh3Qq.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/www.pingcap.com\/article\/integrating-tidb-for-efficient-iot-solutions\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.pingcap.com\/"},{"@type":"ListItem","position":2,"name":"Articles","item":"https:\/\/www.pingcap.com\/article\/"},{"@type":"ListItem","position":3,"name":"Integrating TiDB for Efficient IoT Solutions"}]},{"@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"]}]}},"card_markup":"        <a class=\"card-article\" href=\"https:\/\/www.pingcap.com\/ko\/article\/integrating-tidb-for-efficient-iot-solutions\/\">            <h3>Integrating TiDB for Efficient IoT Solutions<\/h3>            <p>Discover how TiDB enhances IoT applications with real-time data processing, scalability, and high availability.<\/p>        <\/a>","_links":{"self":[{"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/article\/19422","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/article"}],"about":[{"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/types\/article"}],"author":[{"embeddable":true,"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/users\/8"}],"wp:attachment":[{"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/media?parent=19422"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}