{"id":19269,"date":"2024-08-28T20:11:18","date_gmt":"2024-08-29T03:11:18","guid":{"rendered":"https:\/\/www.pingcap.com\/article\/scalability-in-tidb-meeting-big-tech-challenges\/"},"modified":"2024-11-13T19:02:29","modified_gmt":"2024-11-14T03:02:29","slug":"scalability-in-tidb-meeting-big-tech-challenges","status":"publish","type":"article","link":"https:\/\/www.pingcap.com\/ko\/article\/scalability-in-tidb-meeting-big-tech-challenges\/","title":{"rendered":"Scalability in TiDB: Meeting Big Tech Challenges"},"content":{"rendered":"<h2><span class=\"ez-toc-section\" id=\"Why_Scaling_Matters_for_TiDB\"><\/span>Why Scaling Matters for TiDB?<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<p>Scaling is a paramount consideration for any modern database solution, and TiDB is no exception. In today&#8217;s ever-evolving digital landscape, the stakes are tremendously high, making scalability a crucial element for success. Let&#8217;s break down why scaling matters for TiDB by examining the challenges big tech faces, the benefits of horizontal scalability, and the real-world scenarios requiring massive scalability.<\/p>\n<h3>The Challenges Big Tech Faces<\/h3>\n<p>As technology advances at a breakneck speed, companies must deal with exponential data growth. Today&#8217;s businesses generate and consume data at rates unprecedented in history. From social media interactions to financial transactions, the volume of data is overwhelming.<\/p>\n<p>Tech giants face several common challenges:<\/p>\n<ol>\n<li><strong>Data Explosion<\/strong>: The sheer volume of data produced can be overwhelming. Traditional databases often struggle to manage this data influx efficiently.<\/li>\n<li><strong>High Concurrent Access<\/strong>: Millions of users accessing services simultaneously can lead to a bottleneck, slowing down the system&#8217;s performance.<\/li>\n<li><strong>Data Variety<\/strong>: The types of data being generated are becoming increasingly varied, requiring a versatile database to manage structured, semi-structured, and unstructured data.<\/li>\n<li><strong>Fault Tolerance and Availability<\/strong>: Ensuring that services remain available 24\/7 without interruption is crucial, especially for companies offering global services.<\/li>\n<\/ol>\n<p>To address these challenges, a readjustment of database scaling strategies is imperative, bringing us to the benefits of horizontal scalability.<\/p>\n<h3>The Benefits of Horizontal Scalability<\/h3>\n<p>Horizontal scalability, also known as scale-out, involves adding more nodes to a system to handle a higher load. This contrasts with vertical scaling (scale-up), which involves upgrading the resources (CPU, RAM) of a single server. Horizontal scalability offers several advantages:<\/p>\n<ol>\n<li><strong>Cost Efficiency<\/strong>: Adding more commodity hardware is generally more cost-effective than upgrading high-end servers.<\/li>\n<li><strong>Elasticity<\/strong>: Horizontal scalability allows for elastic scaling; you can add or remove nodes as demand fluctuates.<\/li>\n<li><strong>\uace0\uac00\uc6a9\uc131<\/strong>: With data distributed across multiple nodes, the failure of one node does not result in data loss, enhancing fault tolerance.<\/li>\n<li><strong>Performance Enhancement<\/strong>: Distributing the workload across several nodes can significantly improve read\/write performance and reduce latency.<\/li>\n<\/ol>\n<p>By leveraging horizontal scalability, TiDB can provide a robust infrastructure to meet the high demands of modern applications.<\/p>\n<h3>Real-world Scenarios Requiring Massive Scalability<\/h3>\n<p>Various industries are already dealing with data at such a massive scale that horizontal scalability is not just a choice but a necessity:<\/p>\n<ol>\n<li><strong>Social Media and Networking Services<\/strong>: Platforms like Facebook, Twitter, and LinkedIn handle millions of user interactions per second. From posting updates to liking and sharing content, the need for scalable databases cannot be overemphasized.<\/li>\n<li><strong>E-commerce<\/strong>: Online shopping giants like Amazon and Alibaba face enormous traffic, especially during sales events. Their databases must handle millions of transactions with near-instantaneous response times.<\/li>\n<li><strong>Financial Services<\/strong>: Banks and fintech companies need to ensure that every transaction is processed accurately and swiftly, even during peak hours or unforeseen events like stock market fluctuations.<\/li>\n<li><strong>IoT and Big Data Analytics<\/strong>: Smart devices generate vast amounts of data that need to be processed and analyzed in real time. Scalability ensures that insights derived from this data are timely and accurate.<\/li>\n<\/ol>\n<p>These real-world scenarios underscore the urgency for TiDB to excel in scalability, laying the foundation for the next section, which delves into TiDB&#8217;s architecture and scalability features.<\/p>\n<h2><span class=\"ez-toc-section\" id=\"TiDBs_Architecture_and_Scalability_Features\"><\/span>TiDB&#8217;s Architecture and Scalability Features<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<p>TiDB&#8217;s architecture is specifically designed to handle modern-day scalability requirements. At the core of its architecture are three primary components: Placement Driver (PD), TiKV, and TiDB. These components work together to achieve automatic data sharding, distribution, and elastic scaling.<\/p>\n<h3>Key Components: PD, TiKV, TiDB<\/h3>\n<ol>\n<li><strong>Placement Driver (PD)<\/strong>: The PD server is the brain of the TiDB cluster. It manages metadata, keeps track of real-time data distribution, and is responsible for dispatching data scheduling commands to TiKV nodes. It also allocates transaction IDs for distributed transactions. In a sense, PD is the control center, ensuring that the cluster runs smoothly.<br \/>\n<img decoding=\"async\" src=\"https:\/\/docs.pingcap.com\/tidb\/v7.5\/tidb-architecture\" alt=\"PD Server\" \/><\/li>\n<li><strong>TiKV<\/strong>: The TiKV server is a key-value storage engine responsible for data storage. Being a distributed transactional key-value storage engine, it provides native support for distributed transactions at the key-value pair level. TiKV uses the Region abstraction to store data, where each Region stores data for a particular key range.\n<div class=\"codehilite\">\n<pre><code><span class=\"k\">CREATE<\/span> <span class=\"k\">TABLE<\/span> <span class=\"n\">users<\/span><span class=\"p\">(<\/span>\n    <span class=\"n\">id<\/span> <span class=\"nb\">BIGINT<\/span> <span class=\"k\">PRIMARY<\/span> <span class=\"k\">KEY<\/span><span class=\"p\">,<\/span>\n    <span class=\"n\">name<\/span> <span class=\"nb\">VARCHAR<\/span><span class=\"p\">(<\/span><span class=\"mi\">100<\/span><span class=\"p\">),<\/span>\n    <span class=\"n\">age<\/span> <span class=\"nb\">INT<\/span>\n<span class=\"p\">);<\/span>\n<\/code><\/pre>\n<\/div>\n<p>TiKV automatically maintains data in multiple replicas (three replicas by default), ensuring high availability and automatic failover. The storage model also supports ACID transactions, making TiKV suitable for scenarios requiring strong consistency.<br \/>\n<img decoding=\"async\" src=\"https:\/\/docs.pingcap.com\/tidb\/v7.5\/tidb-architecture\" alt=\"TiKV Server\" \/><\/li>\n<li><strong>TiDB Server<\/strong>: The TiDB server is a stateless SQL layer that handles SQL requests from users. It performs SQL parsing, optimization, and ultimately generates a distributed execution plan. The TiDB server is horizontally scalable and does not store data. Instead, it handles the computation and SQL parsing while transmitting data read requests to TiKV or TiFlash nodes.<br \/>\n<img decoding=\"async\" src=\"https:\/\/docs.pingcap.com\/tidb\/v7.5\/tidb-architecture\" alt=\"TiDB Server\" \/><\/li>\n<\/ol>\n<h3>Automatic Data Sharding and Distribution<\/h3>\n<p>One of TiDB&#8217;s standout features is its ability to automatically shard and distribute data across multiple nodes. This is primarily managed by the PD server with input from TiKV nodes.<\/p>\n<ol>\n<li><strong>Regions and Raft Groups<\/strong>: Data in TiDB is split into Regions, each representing a range of data. Each Region has multiple replicas managed through the Raft consensus algorithm. The leader of a Raft Group executes read and write tasks, while the followers replicate the data.\n<div class=\"codehilite\">\n<pre><code><span class=\"p\">{<\/span>\n    <span class=\"nt\">\"Region\"<\/span><span class=\"p\">:<\/span> <span class=\"p\">{<\/span>\n        <span class=\"nt\">\"StartKey\"<\/span><span class=\"p\">:<\/span> <span class=\"s2\">\"key1\"<\/span><span class=\"p\">,<\/span>\n        <span class=\"nt\">\"EndKey\"<\/span><span class=\"p\">:<\/span> <span class=\"s2\">\"key2\"<\/span><span class=\"p\">,<\/span>\n        <span class=\"nt\">\"Replicas\"<\/span><span class=\"p\">:<\/span> <span class=\"mi\">3<\/span>\n    <span class=\"p\">}<\/span>\n<span class=\"p\">}<\/span>\n<\/code><\/pre>\n<\/div>\n<p>The PD server schedules these Regions across various TiKV nodes to ensure an even distribution of read and write loads. This dynamic scheduling prevents any single node from becoming a bottleneck.<\/li>\n<li><strong>Load Balancing<\/strong>: The PD server continually monitors the status of the TiKV nodes and rebalances Regions as necessary. If one node becomes overloaded, PD will move some of its Regions to less busy nodes. This helps to maintain high performance and avoids hotspots.\n<p><img decoding=\"async\" src=\"https:\/\/docs.pingcap.com\/tidb\/v6.1\/tidb-architecture\" alt=\"Data Distribution\" \/><\/li>\n<\/ol>\n<h3>Elastic Scaling: Adding\/Removing Nodes<\/h3>\n<p>Elastic scaling is another critical feature of TiDB. The system is designed to allow the addition or removal of nodes with minimal disruption.<\/p>\n<ol>\n<li><strong>Adding Nodes<\/strong>: When a new node is added to the TiDB cluster, the PD server automatically redistributes Regions to make use of the new node. This redistribution is done seamlessly, without requiring manual intervention.\n<div class=\"codehilite\">\n<pre><code>tiup cluster scale-out tidb-cluster --nodes <span class=\"m\">1<\/span>\n<\/code><\/pre>\n<\/div>\n<\/li>\n<li><strong>Removing Nodes<\/strong>: If a node needs to be removed for maintenance or scaling down, the PD server will redistribute the data from that node to other nodes in the cluster before safely removing it.\n<div class=\"codehilite\">\n<pre><code>tiup cluster scale-in tidb-cluster --nodes <span class=\"m\">1<\/span>\n<\/code><\/pre>\n<\/div>\n<\/li>\n<\/ol>\n<p>The elastic scaling capabilities of TiDB make it an incredibly flexible solution, allowing businesses to adapt quickly to changing demands.<\/p>\n<h2><span class=\"ez-toc-section\" id=\"Lessons_from_Tech_Giants_Using_TiDB\"><\/span>Lessons from Tech Giants Using TiDB<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<p>The real test of any database system is how well it performs in live environments with real-world challenges. Various tech giants have turned to TiDB to manage their scaling needs. By examining their experiences, we can glean valuable lessons and insights.<\/p>\n<h3>Case Study: How Company X Scaled to Millions of Users<\/h3>\n<p>Consider the case of a major social media platform, dubbed here as Company X, which needed to manage millions of concurrent users while ensuring low latency and high availability. Before switching to TiDB, the company faced significant hurdles with their traditional relational database, which struggled to scale horizontally.<\/p>\n<h4>Problem Statement<\/h4>\n<ul>\n<li><strong>High Concurrent User Load<\/strong>: The platform experienced millions of users posting, liking, and sharing content simultaneously.<\/li>\n<li><strong>Data Volume<\/strong>: Daily data generation exceeded terabytes, making it difficult to manage and query efficiently.<\/li>\n<li><strong>Availability<\/strong>: Downtime was not an option; the platform needed to maintain a 99.999% uptime.<\/li>\n<\/ul>\n<h4>Solution<\/h4>\n<p>Company X decided to migrate to TiDB due to its horizontal scalability, built-in high availability, and compatibility with MySQL. Here\u2019s how TiDB made a difference:<\/p>\n<ol>\n<li><strong>Seamless Migration<\/strong>: TiDB\u2019s MySQL compatibility allowed Company X to migrate without altering much of their existing application code.<\/li>\n<li><strong>Horizontal Scalability<\/strong>: By leveraging TiDB\u2019s horizontal scaling, Company X was able to add more nodes to the database cluster seamlessly. This solved their throughput issues.<\/li>\n<li><strong>Fault Tolerance<\/strong>: With TiDB\u2019s automatic failover capabilities, the company was able to provide a robust and reliable service, even if some nodes failed.<\/li>\n<\/ol>\n<p>The migration to TiDB transformed their database infrastructure, enabling them to scale efficiently and perform real-time data processing tasks.<\/p>\n<h3>Performance Optimization Techniques<\/h3>\n<p>Companies using TiDB have employed several performance optimization techniques to maximize their benefits:<\/p>\n<ol>\n<li><strong>Pre-Splitting Regions<\/strong>: To avoid initial write hotspots, companies can pre-split Regions according to their data distribution. This minimizes the need for dynamic splitting under heavy load.\n<div class=\"codehilite\">\n<pre><code><span class=\"n\">SPLIT<\/span> <span class=\"k\">TABLE<\/span> <span class=\"n\">users<\/span> <span class=\"k\">BETWEEN<\/span> <span class=\"p\">(<\/span><span class=\"mi\">0<\/span><span class=\"p\">)<\/span> <span class=\"k\">AND<\/span> <span class=\"p\">(<\/span><span class=\"mi\">9223372036854775807<\/span><span class=\"p\">)<\/span> <span class=\"n\">REGIONS<\/span> <span class=\"mi\">128<\/span><span class=\"p\">;<\/span>\n<\/code><\/pre>\n<\/div>\n<\/li>\n<li><strong>Using TiFlash for OLAP<\/strong>: For analytical workloads, companies have turned to TiFlash, TiDB\u2019s columnar storage engine, to offload heavy read queries from the main transactional database.\n<div class=\"codehilite\">\n<pre><code><span class=\"k\">ALTER<\/span> <span class=\"k\">TABLE<\/span> <span class=\"n\">users<\/span> <span class=\"k\">SET<\/span> <span class=\"n\">TIFLASH<\/span> <span class=\"n\">REPLICA<\/span> <span class=\"mi\">2<\/span><span class=\"p\">;<\/span>\n<\/code><\/pre>\n<\/div>\n<\/li>\n<li><strong>Load Balancing<\/strong>: Continuous monitoring and tuning of the PD\u2019s load balancing algorithm help in evenly distributing the workload and avoiding performance bottlenecks.<\/li>\n<\/ol>\n<h3>Handling Failures and Ensuring Availability<\/h3>\n<p>One of the standout features of TiDB is its high availability and fault tolerance, which are critical for tech giants:<\/p>\n<ol>\n<li><strong>Built-In High Availability<\/strong>: TiDB\u2019s default configuration includes three replicas for each Region, ensuring that data is available even if one or two nodes fail.\n<div class=\"codehilite\">\n<pre><code><span class=\"nt\">tikv<\/span><span class=\"p\">:<\/span>\n  <span class=\"nt\">replication<\/span><span class=\"p\">:<\/span>\n    <span class=\"nt\">max-replicas<\/span><span class=\"p\">:<\/span> <span class=\"l l-Scalar l-Scalar-Plain\">3<\/span>\n<\/code><\/pre>\n<\/div>\n<\/li>\n<li><strong>Automatic Failover<\/strong>: The PD server continuously monitors the health of TiKV nodes. If it detects a node failure, it automatically redirects traffic to the remaining nodes and initiates the recovery process for the failed node.<\/li>\n<li><strong>Backup and Disaster Recovery<\/strong>: Companies employ TiDB\u2019s backup tools to take consistent snapshots of their databases, enabling them to restore data quickly in case of catastrophic failures.\n<div class=\"codehilite\">\n<pre><code>tiup cluster-backup full --cluster tidb-cluster --storage s3:\/\/backup-bucket\/full\n<\/code><\/pre>\n<\/div>\n<\/li>\n<\/ol>\n<p>By learning from these real-world applications, we can see TiDB&#8217;s effectiveness in providing scalable, high-performing, and reliable database solutions.<\/p>\n<h2><span class=\"ez-toc-section\" id=\"Conclusion\"><\/span>Conclusion<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<p>Scaling is not merely a technical challenge but a transformative force that can make or break a company\u2019s ability to compete and grow in today\u2019s data-driven world. TiDB stands out as a robust, scalable, and highly available database solution capable of meeting the challenges faced by modern applications.<\/p>\n<p>In this article, we explored the critical reasons why scaling matters for TiDB, the architectural features enabling its scalability, and valuable lessons from tech giants successfully using TiDB to manage massive data loads and high concurrency.<\/p>\n<p>Whether you are part of a tech giant dealing with millions of users or a growing startup looking for scalable database solutions, TiDB offers an innovative, practical approach to meet your needs.<\/p>\n<p>If you are interested in leveraging the power of TiDB for your own applications, explore further by visiting the <a href=\"https:\/\/docs.pingcap.com\/tidb\/stable\/overview\">PingCAP documentation<\/a> or following comprehensive TiDB <a href=\"https:\/\/docs.pingcap.com\/tidb\/v7.1\/tidb-best-practices\">best practices<\/a>.<\/p>","protected":false},"excerpt":{"rendered":"<p>Discover how TiDB&#8217;s horizontal scalability tackles big tech challenges like data explosion, high access, and fault tolerance.<\/p>","protected":false},"author":8,"featured_media":0,"template":"","class_list":["post-19269","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>Scalability in TiDB: Meeting Big Tech Challenges | TiDB<\/title>\n<meta name=\"description\" content=\"Discover how TiDB&#039;s horizontal scalability tackles big tech challenges like data explosion, high access, and fault tolerance.\" \/>\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=\"Scalability in TiDB: Meeting Big Tech Challenges | TiDB\" \/>\n<meta property=\"og:description\" content=\"Discover how TiDB&#039;s horizontal scalability tackles big tech challenges like data explosion, high access, and fault tolerance.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.pingcap.com\/ko\/article\/scalability-in-tidb-meeting-big-tech-challenges\/\" \/>\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-11-14T03:02:29+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/docs.pingcap.com\/tidb\/v7.5\/tidb-architecture\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@PingCAP\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"9\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.pingcap.com\/article\/scalability-in-tidb-meeting-big-tech-challenges\/\",\"url\":\"https:\/\/www.pingcap.com\/article\/scalability-in-tidb-meeting-big-tech-challenges\/\",\"name\":\"Scalability in TiDB: Meeting Big Tech Challenges | TiDB\",\"isPartOf\":{\"@id\":\"https:\/\/www.pingcap.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.pingcap.com\/article\/scalability-in-tidb-meeting-big-tech-challenges\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.pingcap.com\/article\/scalability-in-tidb-meeting-big-tech-challenges\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/docs.pingcap.com\/tidb\/v7.5\/tidb-architecture\",\"datePublished\":\"2024-08-29T03:11:18+00:00\",\"dateModified\":\"2024-11-14T03:02:29+00:00\",\"description\":\"Discover how TiDB's horizontal scalability tackles big tech challenges like data explosion, high access, and fault tolerance.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.pingcap.com\/article\/scalability-in-tidb-meeting-big-tech-challenges\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.pingcap.com\/article\/scalability-in-tidb-meeting-big-tech-challenges\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/www.pingcap.com\/article\/scalability-in-tidb-meeting-big-tech-challenges\/#primaryimage\",\"url\":\"https:\/\/docs.pingcap.com\/tidb\/v7.5\/tidb-architecture\",\"contentUrl\":\"https:\/\/docs.pingcap.com\/tidb\/v7.5\/tidb-architecture\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.pingcap.com\/article\/scalability-in-tidb-meeting-big-tech-challenges\/#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\":\"Scalability in TiDB: Meeting Big Tech Challenges\"}]},{\"@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":"Scalability in TiDB: Meeting Big Tech Challenges | TiDB","description":"Discover how TiDB's horizontal scalability tackles big tech challenges like data explosion, high access, and fault tolerance.","robots":{"index":"noindex","follow":"follow"},"og_locale":"ko_KR","og_type":"article","og_title":"Scalability in TiDB: Meeting Big Tech Challenges | TiDB","og_description":"Discover how TiDB's horizontal scalability tackles big tech challenges like data explosion, high access, and fault tolerance.","og_url":"https:\/\/www.pingcap.com\/ko\/article\/scalability-in-tidb-meeting-big-tech-challenges\/","og_site_name":"TiDB","article_publisher":"https:\/\/facebook.com\/pingcap2015","article_modified_time":"2024-11-14T03:02:29+00:00","og_image":[{"url":"https:\/\/docs.pingcap.com\/tidb\/v7.5\/tidb-architecture","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_site":"@PingCAP","twitter_misc":{"Est. reading time":"9\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.pingcap.com\/article\/scalability-in-tidb-meeting-big-tech-challenges\/","url":"https:\/\/www.pingcap.com\/article\/scalability-in-tidb-meeting-big-tech-challenges\/","name":"Scalability in TiDB: Meeting Big Tech Challenges | TiDB","isPartOf":{"@id":"https:\/\/www.pingcap.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.pingcap.com\/article\/scalability-in-tidb-meeting-big-tech-challenges\/#primaryimage"},"image":{"@id":"https:\/\/www.pingcap.com\/article\/scalability-in-tidb-meeting-big-tech-challenges\/#primaryimage"},"thumbnailUrl":"https:\/\/docs.pingcap.com\/tidb\/v7.5\/tidb-architecture","datePublished":"2024-08-29T03:11:18+00:00","dateModified":"2024-11-14T03:02:29+00:00","description":"Discover how TiDB's horizontal scalability tackles big tech challenges like data explosion, high access, and fault tolerance.","breadcrumb":{"@id":"https:\/\/www.pingcap.com\/article\/scalability-in-tidb-meeting-big-tech-challenges\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.pingcap.com\/article\/scalability-in-tidb-meeting-big-tech-challenges\/"]}]},{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/www.pingcap.com\/article\/scalability-in-tidb-meeting-big-tech-challenges\/#primaryimage","url":"https:\/\/docs.pingcap.com\/tidb\/v7.5\/tidb-architecture","contentUrl":"https:\/\/docs.pingcap.com\/tidb\/v7.5\/tidb-architecture"},{"@type":"BreadcrumbList","@id":"https:\/\/www.pingcap.com\/article\/scalability-in-tidb-meeting-big-tech-challenges\/#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":"Scalability in TiDB: Meeting Big Tech Challenges"}]},{"@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\/scalability-in-tidb-meeting-big-tech-challenges\/\">            <h3>Scalability in TiDB: Meeting Big Tech Challenges<\/h3>            <p>Discover how TiDB's horizontal scalability tackles big tech challenges like data explosion, high access, and fault tolerance.<\/p>        <\/a>","_links":{"self":[{"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/article\/19269","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=19269"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}