The Engineer Who Refused to Accept 'Database Scaling is Hard'
Before PingCAP existed, Max Liu was an infrastructure engineer at JD.com - China's largest B2C retailer, handling hundreds of millions of transactions. The database kept breaking. Not because of bad engineers, but because no database was built for the internet's actual scale. He watched teams burn months sharding MySQL, building brittle workarounds, praying nothing would go wrong during peak traffic. Liu decided to solve it at the source.
In 2015, he co-founded PingCAP with Edward Huang (CTO) and Cui Qiu, two engineers who shared the same frustration. The founding premise was stark: the world's most critical infrastructure - databases - had not kept pace with distributed systems. MySQL was 30 years old. NoSQL sacrificed SQL semantics. NewSQL attempts were either proprietary or not cloud-native. Liu and his co-founders sat down and wrote TiDB from scratch.
TiDB stands for "Ti Database" - a distributed SQL database that combines MySQL compatibility with horizontal scalability. It handles both transactions and analytics in a single system, a property the industry calls HTAP (Hybrid Transactional and Analytical Processing). The promise: your engineers never have to choose between consistency and scale again. Run your OLTP on the same cluster as your OLAP. Stop running double infrastructure.
"We are fundamentally an open source believer. TiDB, TiKV, and Chaos Mesh are collaborative achievements of developers and users, not solely PingCAP's products."- Max Liu, PingCAP
This wasn't the first time Liu had bet on open source. Before founding PingCAP, he co-authored Codis - a Redis clustering solution that became one of the most widely deployed Redis management tools in China. The pattern had already set: identify a painful infrastructure problem, solve it in the open, let adoption prove the value. With TiDB, he scaled that playbook globally.
Building the Stack from the Ground Up
What makes TiDB structurally different from most database projects is that Liu's team didn't just build a query engine. They built the entire stack. TiKV - the underlying key-value storage layer - is a separate open-source project that graduated as a CNCF project alongside Kubernetes, Prometheus, and Envoy. Chaos Mesh, PingCAP's chaos engineering platform for testing distributed system resilience, also became a CNCF project. Three distinct open-source contributions to the cloud-native ecosystem, all originating from the same founding team in Sunnyvale.
The decision to open-source everything was philosophical, not tactical. Liu's operating theory holds that databases are infrastructure for the world's builders - and infrastructure becomes stronger when more people can break it, test it, and improve it. He specifically refuses to treat TiDB as "PingCAP's product." In his framing, TiDB belongs to the developers who use it and contribute to it. PingCAP just stewards it.
PingCAP's name is itself a distributed systems pun: "ping" from the network diagnostic command + "CAP" from the famous CAP theorem in distributed computing. It signals exactly who these founders are - engineers naming their company after a theorem most founders have never read.