{"id":4072,"date":"2022-01-11T11:57:03","date_gmt":"2022-01-11T11:57:03","guid":{"rendered":"https:\/\/en.pingcap.com\/?p=4072"},"modified":"2025-11-14T02:08:57","modified_gmt":"2025-11-14T10:08:57","slug":"journey-from-traditional-monolithic-architecture-to-distributed-sql","status":"publish","type":"post","link":"https:\/\/www.pingcap.com\/ko\/blog\/journey-from-traditional-monolithic-architecture-to-distributed-sql\/","title":{"rendered":"My Journey from Traditional Monolithic Architecture to Distributed SQL"},"content":{"rendered":"<p>Like many Data Management Engineers, I began my career many years ago focused on the Oracle database. At the time, it was a very pragmatic decision. Oracle was very mature, reliable, and feature-rich. I could build very fast and very large vertically scalable architectures. If I needed more resources for the database, I simply scaled up, deploying a larger machine, all the way up to Oracle&#8217;s flagship engineered system, Oracle Exadata.<\/p>\n\n\n\n<p>But then everything changed with the advent of the cloud and I found myself faced with moving very large on-premise applications and databases to various types of cloud infrastructure. Moving the applications to the cloud was relatively trivial, I could distribute them geographically where they were needed, and by that point, most of my clients were moving to microservices architectures that were designed to be cloud-native and horizontally distributed.<\/p>\n\n\n\n<p>The Oracle database, as it turns out, was far more difficult to transition to the cloud. It was designed from the beginning to be vertically scalable. I could scale up but not out to where I needed it in the cloud, and I resigned myself to the fact that Oracle, as well as their traditional RDBMS systems, were not my choice for <a href=\"https:\/\/www.pingcap.com\/ko\/tidb\/cloud\/\">cloud-native architectures<\/a>. There is a requirement for a database that can horizontally scale out and be accessed quickly by applications that are geographically dispersed to service users no matter where they reside. Traditional databases were becoming the ultimate bottleneck for mission-critical applications in the cloud. I needed something radically different, so I pivoted in a big way.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"the-advent-of-distributed-sql\"><span class=\"ez-toc-section\" id=\"The_advent_of_Distributed_SQL\"><\/span>The advent of Distributed SQL<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>As it turned out, many of us were facing the same challenges, and it sparked an effort to build a next-generation cloud-native database that solved these key challenges. In the beginning of 2014, I was sent a newly released paper published by Google Research called Spanner: Google<meta charset=\"utf-8\"><\/meta>\u2019s Globally-Distributed Database. This article is a very detailed description of a clustered distributed database architecture that can span a single data center or multiple data centers. Data is automatically sharded and multiple copies of the data are distributed and balanced across the cluster. Applications can connect to any node in the cluster and access any data residing in the <a href=\"https:\/\/www.pingcap.com\/ko\/tidb\/self-managed\/\">distributed database<\/a>. In addition, additional nodes can be added to easily allow a cluster to scale up and nodes can be removed to scale down.<\/p>\n\n\n\n<p>Here at PingCAP, we took the core concept of Distributed SQL\u2019s multi-node auto-sharding architecture and extended the architecture to allow for greater flexibility and functionality beyond Spanner and other Distributed SQL databases. We call this next-generation database <a href=\"https:\/\/www.pingcap.com\/ko\/\">\ud2f0DB<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"tidb-design-tenets\"><span class=\"ez-toc-section\" id=\"TiDB_design_tenets\"><\/span>TiDB design tenets<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>In 2015, we built TiDB from scratch, leveraging a very large and active <a href=\"https:\/\/research.google\/pubs\/pub39966\/\">GitHub<\/a> open source community. Working with the collaboration of the community, our founders focused on a set of design tenets that would allow for the creation of the next generation, cloud-native, Distributed SQL&nbsp;architecture. These are our core tenets:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Scale without complexity<\/strong><br>We built our database to scale horizontally without complexity. Nodes can easily be added to the cluster and the database will automatically rebalance the data across the new node(s). Scaling in is just as easy.<\/li>\n\n\n\n<li><strong>Resiliency always on<\/strong><br>Our users require a database that is highly resilient and always on. We built TiDB to survive node failures while allowing applications to continue processing transactions on the surviving nodes. This drives the time to recovery to zero.<br><\/li>\n\n\n\n<li><strong>Consistency ACID transactions<\/strong><br>For transactional databases, it is critical that you always retrieve the most recent and correct copy of the data. This is especially true for financial services and inventory systems. TiDB provides this through guaranteeing high levels of isolation at the transactional level to ensure consistency.<\/li>\n\n\n\n<li><strong>Support for both OLTP and OLAP transactions<\/strong><br>Traditional Distributed SQL databases can only support OLTP (transactional) workloads. At PingCAP we developed capabilities in the TiDB database to handle OLTP (transactional), OLAP (analytical), and mixed workloads. We accomplished this by creating a unique column store in addition to the row store to handle massive aggregations&nbsp;and OLAP functions. This functionality is called TiFlash and leverages the concept of Hybrid Transactional and Analytical Processing (HTAP). This is all controlled by our cost based optimizer.&nbsp;<\/li>\n\n\n\n<li><strong>Common API interface<\/strong><br>Here at PingCAP, our TiDB database was built by developers, for developers. So that required making the database easy to access through a common SQL based interface. We decided to go with a robust wire compatible MySQL interface. This allows application developers and DBAs to access the database leveraging one of the most common and well established SQL protocols currently used.<\/li>\n\n\n\n<li><strong>Install and run anywhere<\/strong><br>For the database to be flexible, it needs to be able to be deployed and run anywhere. On premise, in a cloud provider, or in a multi-cloud environment. You can choose between VMs, or even containerize with Kubernetes. This allows you to easily change your deployment architecture to meet the ever changing needs of your organization.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"tidb-operational-features\"><span class=\"ez-toc-section\" id=\"TiDB_operational_features\"><\/span>TiDB operational features<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>All of the tenets above make for a robust database, however, operational features are critical to complete the offering. TiDB provides rich metrics and monitoring, leveraging Prometheus and Grafana with an additional built-in TiDB dashboard. Role-based security and TLS encryption are provided to keep information secure in-flight and at rest. Lastly, we provide built-in asynchronous CDC replication to easily move data into, and out of, the cluster databases.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"putting-it-all-together\"><span class=\"ez-toc-section\" id=\"Putting_it_all_together\"><\/span>Putting it all together<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>After being involved in Oracle for over twenty years, I can tell you Distributed SQL has changed everything. I now have opportunities to build solutions for organizations that were simply not possible before Distributed SQL. I have seen a burst of creativity in the community and watched teams build solutions that not only solve critical business problems, but also give organizations the opportunity to be more competitive, agile, and create new revenue streams. For those of you that are still struggling with the pains of traditional database architectures, I invite you to explore TiDB. <\/p>\n\n\n\n<p>Full documentation can be found on our <a href=\"https:\/\/docs.pingcap.com\/tidb\/stable?_ga=2.76189213.926131952.1641801631-1375490924.1637196828\" target=\"_blank\" rel=\"noreferrer noopener\">docs<\/a> page for a quick setup and install of your own TiDB cluster. Please feel free to join <a href=\"https:\/\/slack.tidb.io\/invite?team=tidb-community&amp;channel=everyone&amp;ref=pingcap-blog\" target=\"_blank\" rel=\"noreferrer noopener\">our community Slack channel <\/a>to see how others are using TiDB and to get any questions you have answered. For those looking to develop data-intensive applications, developers can open a TiDB Cloud account <a href=\"http:\/\/tidbcloud.com\/free-trial\/\">\uc5ec\uae30<\/a> and use our Developer Tier free trial for 1 year, or apply for a Proof of Concept (POC).<\/p>","protected":false},"excerpt":{"rendered":"<p>As a database veteran, I found traditional monolithic databases (such as Oracle) to have bottlenecks for mission critical applications in the cloud, which called for a next generation cloud native database to solve these challenges. This is what excited me about joining the PingCAP team, where we took the core concept of Distributed SQL\u2019s multi-node auto-sharding architecture and extended it to allow for greater flexibility and functionality beyond Spanner and other Distributed SQL databases. It is also open source and has helped to change the landscape for developers.<\/p>","protected":false},"author":166,"featured_media":4077,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"ub_ctt_via":"","footnotes":""},"categories":[145],"tags":[85,16,45,59],"class_list":["post-4072","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-thought-leadership","tag-cloud-native","tag-distributed-system","tag-newsql","tag-open-source"],"acf":[],"featured_image_src":"https:\/\/static.pingcap.com\/files\/2022\/01\/my-journey-from-traditional-monolithic-architecture-to-distributed-sql.png","author_info":{"display_name":"Bill Kendall","author_link":"https:\/\/www.pingcap.com\/ko\/blog\/author\/bill-kendall\/"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Journey from Traditional Monolithic Architecture to Distributed SQL<\/title>\n<meta name=\"description\" content=\"Explore a transformative journey from traditional monolithic architecture to Distributed SQL, overcoming database bottlenecks in the cloud.\" \/>\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\/journey-from-traditional-monolithic-architecture-to-distributed-sql\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"My Journey from Traditional Monolithic Architecture to Distributed SQL\" \/>\n<meta property=\"og:description\" content=\"As a database veteran, I found traditional monolithic databases (such as Oracle) to have bottlenecks for mission-critical applications in the cloud, which called for a next-generation cloud-native database to solve these challenges.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.pingcap.com\/ko\/blog\/journey-from-traditional-monolithic-architecture-to-distributed-sql\/\" \/>\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-01-11T11:57:03+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-11-14T10:08:57+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/static.pingcap.com\/files\/2022\/01\/journey-social.png\" \/>\n\t<meta property=\"og:image:width\" content=\"995\" \/>\n\t<meta property=\"og:image:height\" content=\"598\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Bill Kendall\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:title\" content=\"My Journey from Traditional Monolithic Architecture to Distributed SQL\" \/>\n<meta name=\"twitter:description\" content=\"As a database veteran, I found traditional monolithic databases (such as Oracle) to have bottlenecks for mission-critical applications in the cloud, which called for a next-generation cloud-native database to solve these challenges.\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/static.pingcap.com\/files\/2022\/01\/journey-social.png\" \/>\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=\"Bill Kendall\" \/>\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\/journey-from-traditional-monolithic-architecture-to-distributed-sql\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.pingcap.com\/blog\/journey-from-traditional-monolithic-architecture-to-distributed-sql\/\"},\"author\":{\"name\":\"Bill Kendall\",\"@id\":\"https:\/\/www.pingcap.com\/#\/schema\/person\/76ab8199f557a48e912165b5b6161f50\"},\"headline\":\"My Journey from Traditional Monolithic Architecture to Distributed SQL\",\"datePublished\":\"2022-01-11T11:57:03+00:00\",\"dateModified\":\"2025-11-14T10:08:57+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.pingcap.com\/blog\/journey-from-traditional-monolithic-architecture-to-distributed-sql\/\"},\"wordCount\":1080,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.pingcap.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.pingcap.com\/blog\/journey-from-traditional-monolithic-architecture-to-distributed-sql\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/static.pingcap.com\/files\/2022\/01\/my-journey-from-traditional-monolithic-architecture-to-distributed-sql.png\",\"keywords\":[\"Cloud-native\",\"Distributed system\",\"NewSQL\",\"Open source\"],\"articleSection\":[\"Thought Leadership\"],\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.pingcap.com\/blog\/journey-from-traditional-monolithic-architecture-to-distributed-sql\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.pingcap.com\/blog\/journey-from-traditional-monolithic-architecture-to-distributed-sql\/\",\"url\":\"https:\/\/www.pingcap.com\/blog\/journey-from-traditional-monolithic-architecture-to-distributed-sql\/\",\"name\":\"Journey from Traditional Monolithic Architecture to Distributed SQL\",\"isPartOf\":{\"@id\":\"https:\/\/www.pingcap.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.pingcap.com\/blog\/journey-from-traditional-monolithic-architecture-to-distributed-sql\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.pingcap.com\/blog\/journey-from-traditional-monolithic-architecture-to-distributed-sql\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/static.pingcap.com\/files\/2022\/01\/my-journey-from-traditional-monolithic-architecture-to-distributed-sql.png\",\"datePublished\":\"2022-01-11T11:57:03+00:00\",\"dateModified\":\"2025-11-14T10:08:57+00:00\",\"description\":\"Explore a transformative journey from traditional monolithic architecture to Distributed SQL, overcoming database bottlenecks in the cloud.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.pingcap.com\/blog\/journey-from-traditional-monolithic-architecture-to-distributed-sql\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.pingcap.com\/blog\/journey-from-traditional-monolithic-architecture-to-distributed-sql\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/www.pingcap.com\/blog\/journey-from-traditional-monolithic-architecture-to-distributed-sql\/#primaryimage\",\"url\":\"https:\/\/static.pingcap.com\/files\/2022\/01\/my-journey-from-traditional-monolithic-architecture-to-distributed-sql.png\",\"contentUrl\":\"https:\/\/static.pingcap.com\/files\/2022\/01\/my-journey-from-traditional-monolithic-architecture-to-distributed-sql.png\",\"width\":1806,\"height\":598,\"caption\":\"My Journey from Traditional Monolithic Architecture to Distributed SQL\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.pingcap.com\/blog\/journey-from-traditional-monolithic-architecture-to-distributed-sql\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.pingcap.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"My Journey from Traditional Monolithic Architecture to Distributed SQL\"}]},{\"@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\/76ab8199f557a48e912165b5b6161f50\",\"name\":\"Bill Kendall\",\"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\":\"Bill Kendall\"},\"sameAs\":[\"https:\/\/www.linkedin.com\/in\/wbkendall\/\"],\"url\":\"https:\/\/www.pingcap.com\/ko\/blog\/author\/bill-kendall\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Journey from Traditional Monolithic Architecture to Distributed SQL","description":"Explore a transformative journey from traditional monolithic architecture to Distributed SQL, overcoming database bottlenecks in the cloud.","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\/journey-from-traditional-monolithic-architecture-to-distributed-sql\/","og_locale":"ko_KR","og_type":"article","og_title":"My Journey from Traditional Monolithic Architecture to Distributed SQL","og_description":"As a database veteran, I found traditional monolithic databases (such as Oracle) to have bottlenecks for mission-critical applications in the cloud, which called for a next-generation cloud-native database to solve these challenges.","og_url":"https:\/\/www.pingcap.com\/ko\/blog\/journey-from-traditional-monolithic-architecture-to-distributed-sql\/","og_site_name":"TiDB","article_publisher":"https:\/\/facebook.com\/pingcap2015","article_published_time":"2022-01-11T11:57:03+00:00","article_modified_time":"2025-11-14T10:08:57+00:00","og_image":[{"width":995,"height":598,"url":"https:\/\/static.pingcap.com\/files\/2022\/01\/journey-social.png","type":"image\/png"}],"author":"Bill Kendall","twitter_card":"summary_large_image","twitter_title":"My Journey from Traditional Monolithic Architecture to Distributed SQL","twitter_description":"As a database veteran, I found traditional monolithic databases (such as Oracle) to have bottlenecks for mission-critical applications in the cloud, which called for a next-generation cloud-native database to solve these challenges.","twitter_image":"https:\/\/static.pingcap.com\/files\/2022\/01\/journey-social.png","twitter_creator":"@PingCAP","twitter_site":"@PingCAP","twitter_misc":{"Written by":"Bill Kendall","Est. reading time":"5\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.pingcap.com\/blog\/journey-from-traditional-monolithic-architecture-to-distributed-sql\/#article","isPartOf":{"@id":"https:\/\/www.pingcap.com\/blog\/journey-from-traditional-monolithic-architecture-to-distributed-sql\/"},"author":{"name":"Bill Kendall","@id":"https:\/\/www.pingcap.com\/#\/schema\/person\/76ab8199f557a48e912165b5b6161f50"},"headline":"My Journey from Traditional Monolithic Architecture to Distributed SQL","datePublished":"2022-01-11T11:57:03+00:00","dateModified":"2025-11-14T10:08:57+00:00","mainEntityOfPage":{"@id":"https:\/\/www.pingcap.com\/blog\/journey-from-traditional-monolithic-architecture-to-distributed-sql\/"},"wordCount":1080,"commentCount":0,"publisher":{"@id":"https:\/\/www.pingcap.com\/#organization"},"image":{"@id":"https:\/\/www.pingcap.com\/blog\/journey-from-traditional-monolithic-architecture-to-distributed-sql\/#primaryimage"},"thumbnailUrl":"https:\/\/static.pingcap.com\/files\/2022\/01\/my-journey-from-traditional-monolithic-architecture-to-distributed-sql.png","keywords":["Cloud-native","Distributed system","NewSQL","Open source"],"articleSection":["Thought Leadership"],"inLanguage":"ko-KR","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.pingcap.com\/blog\/journey-from-traditional-monolithic-architecture-to-distributed-sql\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.pingcap.com\/blog\/journey-from-traditional-monolithic-architecture-to-distributed-sql\/","url":"https:\/\/www.pingcap.com\/blog\/journey-from-traditional-monolithic-architecture-to-distributed-sql\/","name":"Journey from Traditional Monolithic Architecture to Distributed SQL","isPartOf":{"@id":"https:\/\/www.pingcap.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.pingcap.com\/blog\/journey-from-traditional-monolithic-architecture-to-distributed-sql\/#primaryimage"},"image":{"@id":"https:\/\/www.pingcap.com\/blog\/journey-from-traditional-monolithic-architecture-to-distributed-sql\/#primaryimage"},"thumbnailUrl":"https:\/\/static.pingcap.com\/files\/2022\/01\/my-journey-from-traditional-monolithic-architecture-to-distributed-sql.png","datePublished":"2022-01-11T11:57:03+00:00","dateModified":"2025-11-14T10:08:57+00:00","description":"Explore a transformative journey from traditional monolithic architecture to Distributed SQL, overcoming database bottlenecks in the cloud.","breadcrumb":{"@id":"https:\/\/www.pingcap.com\/blog\/journey-from-traditional-monolithic-architecture-to-distributed-sql\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.pingcap.com\/blog\/journey-from-traditional-monolithic-architecture-to-distributed-sql\/"]}]},{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/www.pingcap.com\/blog\/journey-from-traditional-monolithic-architecture-to-distributed-sql\/#primaryimage","url":"https:\/\/static.pingcap.com\/files\/2022\/01\/my-journey-from-traditional-monolithic-architecture-to-distributed-sql.png","contentUrl":"https:\/\/static.pingcap.com\/files\/2022\/01\/my-journey-from-traditional-monolithic-architecture-to-distributed-sql.png","width":1806,"height":598,"caption":"My Journey from Traditional Monolithic Architecture to Distributed SQL"},{"@type":"BreadcrumbList","@id":"https:\/\/www.pingcap.com\/blog\/journey-from-traditional-monolithic-architecture-to-distributed-sql\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.pingcap.com\/"},{"@type":"ListItem","position":2,"name":"My Journey from Traditional Monolithic Architecture to Distributed SQL"}]},{"@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\/76ab8199f557a48e912165b5b6161f50","name":"Bill Kendall","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":"Bill Kendall"},"sameAs":["https:\/\/www.linkedin.com\/in\/wbkendall\/"],"url":"https:\/\/www.pingcap.com\/ko\/blog\/author\/bill-kendall\/"}]}},"grav_blocks":false,"card_markup":"<a class=\"card-resource bg-white\" href=\"https:\/\/www.pingcap.com\/ko\/blog\/journey-from-traditional-monolithic-architecture-to-distributed-sql\/\"><div class=\"card-resource__image-container\"><img class=\"card-resource__image\" alt=\"My Journey from Traditional Monolithic Architecture to Distributed SQL\" src=\"https:\/\/static.pingcap.com\/files\/2022\/01\/my-journey-from-traditional-monolithic-architecture-to-distributed-sql.png\" loading=\"lazy\" width=1806 height=598 \/><\/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\">My Journey from Traditional Monolithic Architecture to Distributed SQL<\/h5><\/div><\/a>","_links":{"self":[{"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/posts\/4072","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\/166"}],"replies":[{"embeddable":true,"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/comments?post=4072"}],"version-history":[{"count":11,"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/posts\/4072\/revisions"}],"predecessor-version":[{"id":30495,"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/posts\/4072\/revisions\/30495"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/media\/4077"}],"wp:attachment":[{"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/media?parent=4072"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/categories?post=4072"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/tags?post=4072"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}