PlanetScale - the world’s fastest and most scalable cloud hosting for Vitess and Postgres

3 min read Original article ↗

Vitess allows MySQL databases to scale horizontally through explicit sharding — enabling a shared nothing architecture distributing data across thousands of nodes, all routed through a single database connection.

Vitess was developed at YouTube by the founders of PlanetScale to scale their main MySQL database to petabytes of data on 70,000 nodes across 20 data centers. Now maintained and managed by PlanetScale, Vitess powers the databases of some of the web's largest properties: Slack, HubSpot, Blizzard, Etsy, GitHub, Block, Bloomberg, Yelp, and more.

   ┌────────────────────────────────┐   
   │░░░░░░░░░░░░░VTGate░░░░░░░░░░░░░│   
   └────────────────────────────────┘   
                    │                   
                                        
          ─ ─ ─ ─ ─ ┴ ─ ─ ─ ─ ┐         
         │                              
                              │         
         ▼                    ▼         
   ╔═══════════╗        ╔═══════════╗   
   ║           ║        ║           ║   
   ║  Primary  ║        ║  Primary  ║   
   ║           ║        ║           ║   
   ╚═══════════╝        ╚═══════════╝   
         │                    │         
                                        
     ─ ─ ┴ ─ ─            ─ ─ ┴ ─ ─     
    │         │          │         │    
    ▼         ▼          ▼         ▼    
┌───────┐ ┌───────┐  ┌───────┐ ┌───────┐
│Replica│ │Replica│  │Replica│ │Replica│
└───────┘ └───────┘  └───────┘ └───────┘
           ┌──────────────────────────────────┐            
           │░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░│            
           │░░░░░░░░░░░░░░VTGate░░░░░░░░░░░░░░│            
           │░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░│            
           └──────────────────────────────────┘            
                             │                             
                                                           
         ┌ ─ ─ ─ ─ ─ ─ ─ ─ ─ ┼ ─ ─ ─ ─ ─ ─ ─ ─ ─ ┐         
                                                           
         │                   │                   │         
         ▼                   ▼                   ▼         
   ╔═══════════╗       ╔═══════════╗       ╔═══════════╗   
   ║           ║       ║           ║       ║           ║   
   ║  Primary  ║       ║  Primary  ║       ║  Primary  ║   
   ║           ║       ║           ║       ║           ║   
   ╚═══════════╝       ╚═══════════╝       ╚═══════════╝   
         │                   │                   │         
                                                           
     ─ ─ ┴ ─ ─           ─ ─ ┴ ─ ─           ─ ─ ┴ ─ ─     
    │         │         │         │         │         │    
    ▼         ▼         ▼         ▼         ▼         ▼    
┌───────┐ ┌───────┐ ┌───────┐ ┌───────┐ ┌───────┐ ┌───────┐
│Replica│ │Replica│ │Replica│ │Replica│ │Replica│ │Replica│
└───────┘ └───────┘ └───────┘ └───────┘ └───────┘ └───────┘
               ┌─────────────────────────────────────────────────────────┐               
               │░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░│               
               │░░░░░░░░░░░░░░░░░░░░░░░░░VTGate░░░░░░░░░░░░░░░░░░░░░░░░░░│               
               │░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░│               
               └─────────────────────────────────────────────────────────┘               
                                            │                                            
                                                                                         
              ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ┼ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─              
             │                                                             │             
             ▼                              ▼                              ▼             
   ╔═══════════════════╗          ╔═══════════════════╗          ╔═══════════════════╗   
   ║                   ║          ║                   ║          ║                   ║   
   ║                   ║          ║                   ║          ║                   ║   
   ║      Primary      ║          ║      Primary      ║          ║      Primary      ║   
   ║                   ║          ║                   ║          ║                   ║   
   ║                   ║          ║                   ║          ║                   ║   
   ╚═══════════════════╝          ╚═══════════════════╝          ╚═══════════════════╝   
             │                              │                              │             
      ┌ ─ ─ ─ ─ ─ ─ ┐                ┌ ─ ─ ─ ─ ─ ─ ┐                ┌ ─ ─ ─ ─ ─ ─ ┐      
      ▼             ▼                ▼             ▼                ▼             ▼      
┌───────────┐ ┌───────────┐    ┌───────────┐ ┌───────────┐    ┌───────────┐ ┌───────────┐
│           │ │           │    │           │ │           │    │           │ │           │
│  Replica  │ │  Replica  │    │  Replica  │ │  Replica  │    │  Replica  │ │  Replica  │
│           │ │           │    │           │ │           │    │           │ │           │
└───────────┘ └───────────┘    └───────────┘ └───────────┘    └───────────┘ └───────────┘