{"id":717,"date":"2020-10-08T00:00:00","date_gmt":"2020-10-08T00:00:00","guid":{"rendered":"https:\/\/en.pingcap.com\/case-study\/how-we-use-a-distributed-database-to-achieve-horizontal-scaling-without-downtime\/"},"modified":"2024-12-03T00:58:05","modified_gmt":"2024-12-03T08:58:05","slug":"how-bank-of-beijing-achieves-database-scaling-without-downtime","status":"publish","type":"case-study","link":"https:\/\/www.pingcap.com\/ko\/case-study\/how-bank-of-beijing-achieves-database-scaling-without-downtime\/","title":{"rendered":"How Bank of Beijing Achieves Database Scaling Without Downtime"},"content":{"rendered":"<p><strong>Author:<\/strong> Zhendong Chen (Software Development Engineer at Bank of Beijing)<\/p>\n\n\n\n<p>Bank of Beijing (BOB) is an urban commercial bank based in Beijing, China. As of June 30, 2020, our total assets amounted to 2.88 trillion Yuan, and we hold a brand value of 59.7 billion Yuan. On the World Top 1000 Banks list, we rank No. 62 in terms of Tier-1 capital and have been in the World Top 100 for seven years in a row.<\/p>\n\n\n\n<p>As our emerging businesses rapidly grew and data size increased, we sought a <strong>horizontally scalable database<\/strong> with the ability to handle <strong>highly concurrent requests<\/strong>. We preferred an <strong>open-source database<\/strong> because we wanted the expertise and support of a large community. After our investigation, we found <a href=\"\/ko\/tidb\/\">\ud2f0DB<\/a>, an open-source, distributed, Hybrid Transactional\/Analytical Processing (HTAP) database, was a good solution.<\/p>\n\n\n\n<p>In this post, I&#8217;ll share with you why we chose TiDB and how we use it to <strong>achieve horizontally scalable, always-on infrastructure<\/strong>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"Why_we_chose_TiDB_a_distributed_SQL_database\"><\/span>Why we chose TiDB, a distributed SQL database<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>In the age of a fast-developing industrial technology revolution, we faced these challenges:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>To tackle our rapidly developing businesses and highly concurrent requests, our system <strong>required higher performance<\/strong>.<\/li>\n\n\n\n<li>To deal with rapidly changing financial markets, we needed to quickly deliver information products.<\/li>\n\n\n\n<li>It was difficult to control the costs of old-fashioned architecture.<\/li>\n\n\n\n<li>We needed to <strong>avoid risks involved in using software from a single company<\/strong>.<\/li>\n<\/ul>\n\n\n\n<p>Therefore, we looked for a database solution with the following characteristics:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Excellent horizontal scalability<\/li>\n\n\n\n<li>The ability to handle highly concurrent requests<\/li>\n\n\n\n<li>The ability to quickly iterate<\/li>\n\n\n\n<li>Cost-effective<\/li>\n\n\n\n<li>Open source<\/li>\n<\/ul>\n\n\n\n<p>TiDB is an open-source, distributed SQL database built by <a href=\"https:\/\/www.pingcap.com\/ko\/\">PingCAP<\/a> and its open-source community. It is MySQL compatible and features horizontal scalability, strong consistency, and high availability. It&#8217;s a one-stop solution for both Online Transactional Processing (OLTP) and Online Analytical Processing (OLAP) workloads.<\/p>\n\n\n\n<p>We found that TiDB fulfilled our database requirements, so we adopted it.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"How_were_using_TiDB\"><\/span>How we&#8217;re using TiDB<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>In 2018, we deployed TiDB to production. Based on the bank&#8217;s security regulations, we built three data centers (DCs) in two cities.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"420\" src=\"https:\/\/www.pingcap.com\/core\/uploads\/2021\/11\/highly-available-cluster-1024x420.jpeg\" alt=\"\" class=\"wp-image-2717\" srcset=\"https:\/\/static.pingcap.com\/files\/2021\/11\/highly-available-cluster-1024x420.jpeg 1024w, https:\/\/static.pingcap.com\/files\/2021\/11\/highly-available-cluster-300x123.jpeg 300w, https:\/\/static.pingcap.com\/files\/2021\/11\/highly-available-cluster-768x315.jpeg 768w, https:\/\/static.pingcap.com\/files\/2021\/11\/highly-available-cluster-1536x631.jpeg 1536w, https:\/\/static.pingcap.com\/files\/2021\/11\/highly-available-cluster-1440x591.jpeg 1440w, https:\/\/static.pingcap.com\/files\/2021\/11\/highly-available-cluster.jpeg 2000w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><figcaption class=\"wp-element-caption\">Cluster deployment for high availability<\/figcaption><\/figure>\n\n\n\n<p>We use a primary-secondary, multi-active architecture:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The primary cluster works in the production environment of Beijing and Xi&#8217;an and undertakes daily production services.<\/li>\n\n\n\n<li>The secondary cluster is a remote disaster recovery DC built in Xi&#8217;an.<\/li>\n\n\n\n<li>We use Kafka to replicate the binlog between the primary and secondary clusters.<\/li>\n<\/ul>\n\n\n\n<p>In the past two years, we have cooperated with PingCAP on several important issues:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Network latency between DCs:<\/strong> In the deployment of three DCs in two cities, network latency between two DCs in different cities can greatly impact the cluster performance. We compress the gRPC message format and use <a href=\"https:\/\/www.pingcap.com\/ko\/blog\/2017-08-15-multi-raft\/\">Multi-Raft<\/a> to ensure that the <a href=\"https:\/\/docs.pingcap.com\/tidb\/stable\/glossary#leaderfollowerlearner\">leader<\/a> replicas are always in the Beijing DCs.<\/li>\n\n\n\n<li><strong>Incremental backup:<\/strong> Some systems require incremental backup. Along with PingCAP, we researched incremental backup and the data restore method for a specified time. We saved the binlog locally in the protobuf form and then used <a href=\"https:\/\/docs.pingcap.com\/tidb\/stable\/tidb-binlog-reparo\">Reparo<\/a> to restore data to the specified time.<\/li>\n\n\n\n<li><strong>Transactions:<\/strong> In the financial industry, database transaction issues, such as large transactions, Read Committed (RC) isolation, and pessimistic locking, are important issues. <a href=\"https:\/\/docs.pingcap.com\/tidb\/stable\/release-4.0-ga\">TiDB 4.0<\/a> supports all these features.<\/li>\n<\/ul>\n\n\n\n<p>Next, I&#8217;ll introduce TiDB&#8217;s application scenarios in BOB.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Electronics Payment Clearing Platform and UnionPay Cardless Quick Payment System<\/h3>\n\n\n\n<p>According to the requirements of China&#8217;s central bank, all payment transactions handled by third-party providers must connect to the Electronics Payment Clearing Platform. BOB has integrated its applications and systems to meet the challenges of large data volume and highly concurrent requests brought by Internet finance.<\/p>\n\n\n\n<p>After we deployed TiDB in the Electronics Payment Clearing Platform and the UnionPay Cardless Quick Payment System for production, the two systems successfully handled challenges on November 11, 2018 and November 11, 2019, the days of an annual Chinese shopping festival. On the festival day in 2019, the <strong>peak traffic reached 7,500 queries per second (QPS)<\/strong>, more than 10 times the usual QPS. Our IT team performed multiple online operations and maintenance tasks, including version upgrades and patching, and used TiDB&#8217;s multiple replicas to <strong>achieve zero downtime in operations and maintenance<\/strong>.<\/p>\n\n\n\n<p>When we upgraded the BOB system, we upgraded the applications in the business chain of the Electronics Payment Clearing Platform to the TiDB distributed architecture.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">The online lending application platform<\/h3>\n\n\n\n<p>The online lending platform is mainly engaged in application batch processing for loans and IOUs.<\/p>\n\n\n\n<p><strong>Thanks to TiDB&#8217;s horizontal scalability, we quickly built an online lending system database.<\/strong> At first, the project team planned to build a database cluster for the online lending platform by purchasing physical servers. However, procurement took a long time, so we finally decided to scale in databases for the Electronics Payment Clearing Platform and the UnionPay Cardless Quick Payment System. After scaling in, we use the five extra <a href=\"https:\/\/docs.pingcap.com\/tidb\/stable\/tidb-architecture#tikv-server\">TiKV<\/a> nodes and the two extra <a href=\"https:\/\/docs.pingcap.com\/tidb\/stable\/tidb-architecture#tidb-server\">\ud2f0DB<\/a> nodes for the online lending platform. And both the online lending system and the Electronics Payment Clearing Platform use <a href=\"https:\/\/docs.pingcap.com\/tidb\/stable\/tidb-architecture#placement-driver-pd-server\">Placement Driver<\/a> (PD) nodes.<\/p>\n\n\n\n<p>It took about an hour to process 30 million rows of data in batch. Later, if we upgrade the version and optimize the system, we may significantly improve performance.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Other application scenarios<\/h3>\n\n\n\n<p>Once we integrated TiDB into the two transaction systems described above, we applied it to all the financial scenarios including payment, accounting, and financial channels at BOB.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"2000\" height=\"907\" src=\"https:\/\/www.pingcap.com\/core\/uploads\/2020\/10\/horizontally-scalable-database-in-bob-financial-scenarios.jpg\" alt=\"A horizontally scalable database in financial scenarios\" class=\"wp-image-718\" srcset=\"https:\/\/static.pingcap.com\/files\/2020\/10\/horizontally-scalable-database-in-bob-financial-scenarios.jpg 2000w, https:\/\/static.pingcap.com\/files\/2020\/10\/horizontally-scalable-database-in-bob-financial-scenarios-300x136.jpg 300w, https:\/\/static.pingcap.com\/files\/2020\/10\/horizontally-scalable-database-in-bob-financial-scenarios-1024x464.jpg 1024w, https:\/\/static.pingcap.com\/files\/2020\/10\/horizontally-scalable-database-in-bob-financial-scenarios-768x348.jpg 768w, https:\/\/static.pingcap.com\/files\/2020\/10\/horizontally-scalable-database-in-bob-financial-scenarios-1536x697.jpg 1536w, https:\/\/static.pingcap.com\/files\/2020\/10\/horizontally-scalable-database-in-bob-financial-scenarios-1440x653.jpg 1440w\" sizes=\"auto, (max-width: 2000px) 100vw, 2000px\" \/><\/figure>\n\n\n\n<div class=\"caption-center\">TiDB&#8217;s financial scenarios in BOB<\/div>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"Lessons_learned_when_building_the_TiDB_distributed_architecture\"><\/span>Lessons learned when building the TiDB distributed architecture<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>Here, I&#8217;d like to share with you some lessons we learned when we built the TiDB distributed architecture.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Application transformation<\/h3>\n\n\n\n<p>Our bank&#8217;s survival depends on satisfied customers. For example, some customers like to snap products up in the middle of the night, so we need a flexible system that can handle a large amount of data traffic. TiDB was the clear choice.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Dynamic maintenance<\/h3>\n\n\n\n<p>Banks have very high requirements for application continuity. Now, by taking full advantage of TiDB&#8217;s distributed database architecture and dynamically adjusting our cluster nodes, we truly <strong>achieve zero downtime<\/strong>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Ecology in the industry<\/h3>\n\n\n\n<p>Within BOB, more and more projects are adopting TiDB&#8217;s distributed microservice architecture. We&#8217;re thinking about how to plan and design our applications under this distributed architecture and technology stack.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"Whats_next_for_distributed_databases_in_financial_scenarios\"><\/span>What&#8217;s next for distributed databases in financial scenarios<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>In the future, the BOB distributed database team will mainly work on two tasks:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Applying TiDB in more scenarios<\/strong>\n<ul class=\"wp-block-list\">\n<li>We&#8217;ll continue to explore the use of TiDB in core application scenarios like bank accounts and customer information.<\/li>\n\n\n\n<li>To continuously implement distributed databases in the financial field, we&#8217;ll combine the features of partitioned tables, pessimistic locking, and even HTAP with the banking system.<\/li>\n\n\n\n<li>We also face challenges from deploying two DCs in the same city.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>Making progress through cooperation<\/strong>\n<ul class=\"wp-block-list\">\n<li>As more and more projects in the industry begin to use TiDB to shift to microservices, our system developers need to think about how to design and develop code under a distributed architecture.<\/li>\n\n\n\n<li>Adopting TiDB&#8217;s distributed database has brought some challenges to managing and operating our architecture. Based on past experience, we need to form a mature banking system construction methodology.<\/li>\n\n\n\n<li>As part of building our distributed database, BOB helped formulate standards for the financial industry. In the future, we&#8217;ll continue to contribute to the industry.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n\n\n\n<p>In addition, we&#8217;ll study the pilot HTAP application. TiDB 4.0 introduced <a href=\"https:\/\/docs.pingcap.com\/tidb\/dev\/tiflash-overview\">TiFlash<\/a>, an extended analytical engine and columnar store for TiDB. A TiDB database that incorporates TiFlash lets users perform <strong>real-time HTAP analytics<\/strong>. We believe that HTAP is the future of databases.<\/p>\n\n\n\n<p>If you&#8217;d like to learn more about our experience with TiDB or if you have any questions, you can join the <a href=\"https:\/\/slack.tidb.io\/invite?team=tidb-community&amp;channel=everyone&amp;ref=pingcap-blog\">TiDB community on Slack<\/a>.<\/p>","protected":false},"excerpt":{"rendered":"<p>Bank of Beijing sought an open-source, horizontally scalable database to scale out their database. Learn how they use TiDB to achieve database scaling with zero downtime.<\/p>","protected":false},"author":82,"featured_media":719,"template":"","tags":[9],"customer":[74],"industry":[184],"class_list":["post-717","case-study","type-case-study","status-publish","has-post-thumbnail","hentry","tag-scalability","customer-bank-of-beijing","industry-fintech"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How Bank of Beijing Achieves Database Scaling Without Downtime | TiDB<\/title>\n<meta name=\"description\" content=\"Read success stories from businesses using TiDB and the TiDB Cloud solutions from PingCAP. Learn more in our latest case study &quot;How Bank of Beijing Achieves Database Scaling Without Downtime&quot; here.\" \/>\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\/case-study\/how-bank-of-beijing-achieves-database-scaling-without-downtime\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How Bank of Beijing Achieves Database Scaling Without Downtime | TiDB\" \/>\n<meta property=\"og:description\" content=\"Read success stories from businesses using TiDB and the TiDB Cloud solutions from PingCAP. Learn more in our latest case study &quot;How Bank of Beijing Achieves Database Scaling Without Downtime&quot; here.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.pingcap.com\/ko\/case-study\/how-bank-of-beijing-achieves-database-scaling-without-downtime\/\" \/>\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-12-03T08:58:05+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/static.pingcap.com\/files\/2020\/10\/horizontal-scaling-database-in-bob.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1600\" \/>\n\t<meta property=\"og:image:height\" content=\"534\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\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=\"6\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.pingcap.com\/case-study\/how-bank-of-beijing-achieves-database-scaling-without-downtime\/\",\"url\":\"https:\/\/www.pingcap.com\/case-study\/how-bank-of-beijing-achieves-database-scaling-without-downtime\/\",\"name\":\"How Bank of Beijing Achieves Database Scaling Without Downtime | TiDB\",\"isPartOf\":{\"@id\":\"https:\/\/www.pingcap.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.pingcap.com\/case-study\/how-bank-of-beijing-achieves-database-scaling-without-downtime\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.pingcap.com\/case-study\/how-bank-of-beijing-achieves-database-scaling-without-downtime\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/static.pingcap.com\/files\/2020\/10\/horizontal-scaling-database-in-bob.jpg\",\"datePublished\":\"2020-10-08T00:00:00+00:00\",\"dateModified\":\"2024-12-03T08:58:05+00:00\",\"description\":\"Read success stories from businesses using TiDB and the TiDB Cloud solutions from PingCAP. Learn more in our latest case study \\\"How Bank of Beijing Achieves Database Scaling Without Downtime\\\" here.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.pingcap.com\/case-study\/how-bank-of-beijing-achieves-database-scaling-without-downtime\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.pingcap.com\/case-study\/how-bank-of-beijing-achieves-database-scaling-without-downtime\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/www.pingcap.com\/case-study\/how-bank-of-beijing-achieves-database-scaling-without-downtime\/#primaryimage\",\"url\":\"https:\/\/static.pingcap.com\/files\/2020\/10\/horizontal-scaling-database-in-bob.jpg\",\"contentUrl\":\"https:\/\/static.pingcap.com\/files\/2020\/10\/horizontal-scaling-database-in-bob.jpg\",\"width\":1600,\"height\":534},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.pingcap.com\/case-study\/how-bank-of-beijing-achieves-database-scaling-without-downtime\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.pingcap.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Case Studies\",\"item\":\"https:\/\/www.pingcap.com\/customers\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How Bank of Beijing Achieves Database Scaling Without Downtime\"}]},{\"@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":"How Bank of Beijing Achieves Database Scaling Without Downtime | TiDB","description":"Read success stories from businesses using TiDB and the TiDB Cloud solutions from PingCAP. Learn more in our latest case study \"How Bank of Beijing Achieves Database Scaling Without Downtime\" here.","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\/case-study\/how-bank-of-beijing-achieves-database-scaling-without-downtime\/","og_locale":"ko_KR","og_type":"article","og_title":"How Bank of Beijing Achieves Database Scaling Without Downtime | TiDB","og_description":"Read success stories from businesses using TiDB and the TiDB Cloud solutions from PingCAP. Learn more in our latest case study \"How Bank of Beijing Achieves Database Scaling Without Downtime\" here.","og_url":"https:\/\/www.pingcap.com\/ko\/case-study\/how-bank-of-beijing-achieves-database-scaling-without-downtime\/","og_site_name":"TiDB","article_publisher":"https:\/\/facebook.com\/pingcap2015","article_modified_time":"2024-12-03T08:58:05+00:00","og_image":[{"width":1600,"height":534,"url":"https:\/\/static.pingcap.com\/files\/2020\/10\/horizontal-scaling-database-in-bob.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_site":"@PingCAP","twitter_misc":{"Est. reading time":"6\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.pingcap.com\/case-study\/how-bank-of-beijing-achieves-database-scaling-without-downtime\/","url":"https:\/\/www.pingcap.com\/case-study\/how-bank-of-beijing-achieves-database-scaling-without-downtime\/","name":"How Bank of Beijing Achieves Database Scaling Without Downtime | TiDB","isPartOf":{"@id":"https:\/\/www.pingcap.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.pingcap.com\/case-study\/how-bank-of-beijing-achieves-database-scaling-without-downtime\/#primaryimage"},"image":{"@id":"https:\/\/www.pingcap.com\/case-study\/how-bank-of-beijing-achieves-database-scaling-without-downtime\/#primaryimage"},"thumbnailUrl":"https:\/\/static.pingcap.com\/files\/2020\/10\/horizontal-scaling-database-in-bob.jpg","datePublished":"2020-10-08T00:00:00+00:00","dateModified":"2024-12-03T08:58:05+00:00","description":"Read success stories from businesses using TiDB and the TiDB Cloud solutions from PingCAP. Learn more in our latest case study \"How Bank of Beijing Achieves Database Scaling Without Downtime\" here.","breadcrumb":{"@id":"https:\/\/www.pingcap.com\/case-study\/how-bank-of-beijing-achieves-database-scaling-without-downtime\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.pingcap.com\/case-study\/how-bank-of-beijing-achieves-database-scaling-without-downtime\/"]}]},{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/www.pingcap.com\/case-study\/how-bank-of-beijing-achieves-database-scaling-without-downtime\/#primaryimage","url":"https:\/\/static.pingcap.com\/files\/2020\/10\/horizontal-scaling-database-in-bob.jpg","contentUrl":"https:\/\/static.pingcap.com\/files\/2020\/10\/horizontal-scaling-database-in-bob.jpg","width":1600,"height":534},{"@type":"BreadcrumbList","@id":"https:\/\/www.pingcap.com\/case-study\/how-bank-of-beijing-achieves-database-scaling-without-downtime\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.pingcap.com\/"},{"@type":"ListItem","position":2,"name":"Case Studies","item":"https:\/\/www.pingcap.com\/customers\/"},{"@type":"ListItem","position":3,"name":"How Bank of Beijing Achieves Database Scaling Without Downtime"}]},{"@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":"<div class=\"card-case-study\"><div class=\"card-case-study__image-container\"><img class=\"card-case-study__image\" alt=\"Bank of Beijing\" src=\"https:\/\/static.pingcap.com\/files\/2021\/11\/Bank-of-Beijing.jpg\" loading=\"lazy\" width=600 height=400 \/><\/div><span class=\"card-case-study__title\">How Bank of Beijing Achieves Database Scaling Without Downtime<\/span><div class=\"card-case-study__button\"><a class=\"button--secondary\" href=\"https:\/\/www.pingcap.com\/ko\/case-study\/how-bank-of-beijing-achieves-database-scaling-without-downtime\/\" target=\"_blank\">View Case Study<\/a><\/div><\/div>","_links":{"self":[{"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/case-study\/717","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/case-study"}],"about":[{"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/types\/case-study"}],"author":[{"embeddable":true,"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/users\/82"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/media\/719"}],"wp:attachment":[{"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/media?parent=717"}],"wp:term":[{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/tags?post=717"},{"taxonomy":"customer","embeddable":true,"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/customer?post=717"},{"taxonomy":"industry","embeddable":true,"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/industry?post=717"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}