惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

美团技术团队
N
Netflix TechBlog - Medium
WordPress大学
WordPress大学
云风的 BLOG
云风的 BLOG
J
Java Code Geeks
V
Visual Studio Blog
H
Help Net Security
Engineering at Meta
Engineering at Meta
Hugging Face - Blog
Hugging Face - Blog
Microsoft Security Blog
Microsoft Security Blog
腾讯CDC
博客园 - 【当耐特】
B
Blog
Stack Overflow Blog
Stack Overflow Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
大猫的无限游戏
大猫的无限游戏
GbyAI
GbyAI
博客园 - 司徒正美
博客园 - 叶小钗
Y
Y Combinator Blog
MyScale Blog
MyScale Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
G
Google Developers Blog
酷 壳 – CoolShell
酷 壳 – CoolShell

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Database Sharding Explained With Real Examples: How Apps ...
Abdullah al Mubin · 2026-06-16 · via DEV Community

Everything is going great.

Your application launches.

You have:

10,000 users

Then:

100,000 users

Then:

1,000,000 users

Life is good.

Until one day your database becomes the bottleneck.

Queries slow down.

CPU usage spikes.

Storage fills up.

And your single database server starts crying for help.

At this point, many engineers discover a concept called:

Database Sharding

A technique used by some of the largest systems on the internet.

Index

  1. The Day One Database Stops Scaling
  2. What Is Database Sharding?
  3. A Real-World Analogy
  4. Why Bigger Servers Eventually Fail
  5. The Basic Idea Behind Sharding
  6. Horizontal vs Vertical Scaling
  7. Common Sharding Strategies
  8. User-Based Sharding Example
  9. How Instagram-Like Systems Use Sharding
  10. The Biggest Challenges of Sharding
  11. Rebalancing and Resharding
  12. When You Should NOT Shard
  13. Real Companies Using Sharding
  14. Final Thought

1. The Day One Database Stops Scaling

Most applications start with:

Application
     │
     ▼
PostgreSQL

  • Simple.
  • Easy.
  • Reliable.

But eventually:

  • data grows
  • traffic grows
  • queries grow
  • users grow

And one machine becomes insufficient.


2. What Is Database Sharding?

Database sharding means:

Splitting data across multiple databases instead of storing everything in one database.

Instead of:

All Users
     │
     ▼
Database A

You get:

Users 1-1M     → Database A
Users 1M-2M    → Database B
Users 2M-3M    → Database C

Now the workload is distributed.


3. A Real-World Analogy

Imagine a library.

At first:

One room
All books

Works fine.

Then the library grows to:

50 million books

Finding books becomes painful.

So the library splits into:

Building A → A-F
Building B → G-M
Building C → N-Z

Each building handles a subset.

That's essentially sharding.


4. Why Bigger Servers Eventually Fail

Many teams first try:

Just buy a bigger server.

This is called vertical scaling.

Example:

8 CPU → 16 CPU → 32 CPU → 64 CPU

Eventually:

  • costs explode
  • hardware limits appear
  • upgrades become difficult

You can't scale infinitely upward.


5. The Basic Idea Behind Sharding

Instead of one huge database:

100 Million Users
        │
        ▼
Single Database

You split the load:

Shard A → 25M Users
Shard B → 25M Users
Shard C → 25M Users
Shard D → 25M Users

Now:

  • less data per database
  • fewer rows to scan
  • better performance
  • more scalability

6. Horizontal vs Vertical Scaling

Vertical Scaling

Bigger Server

Example:

16 GB RAM → 64 GB RAM


Horizontal Scaling

More Servers

Example:

Database A
Database B
Database C
Database D

Sharding is horizontal scaling.


7. Common Sharding Strategies

Several approaches exist.


Strategy 1: Range-Based Sharding

Example:

Users 1-1M     → Shard A
Users 1M-2M    → Shard B
Users 2M-3M    → Shard C

Simple.

But can create uneven traffic.


Strategy 2: Geographic Sharding

Example:

US Users       → US Database
EU Users       → EU Database
Asia Users     → Asia Database

Popular for global systems.


Strategy 3: Hash-Based Sharding

Example:

hash(userId) % 4

Results:

0 → Shard A
1 → Shard B
2 → Shard C
3 → Shard D

Provides better distribution.


8. User-Based Sharding Example

Suppose:

20 Million Users

Sharding rule:

userId % 4

Examples:

User 101 → Shard B
User 202 → Shard C
User 303 → Shard D
User 404 → Shard A

Every request can quickly determine:

Which database owns this user?


9. How Instagram-Like Systems Use Sharding

Imagine:

500 Million Users

Storing everything in one database becomes unrealistic.

Instead:

Users      → Multiple Shards
Posts      → Multiple Shards
Comments   → Multiple Shards
Messages   → Multiple Shards

Each shard owns a subset of data.

This allows the platform to grow far beyond a single machine.


10. The Biggest Challenges of Sharding

Sharding sounds amazing.

But it creates new problems.


Cross-Shard Queries

Suppose:

User A → Shard A
User B → Shard C

Now you need data from both.

The application must query multiple databases.


Joins Become Difficult

Traditional SQL joins work best within one database.

Across shards:

JOINs become expensive

Many systems avoid them entirely.


Operational Complexity

Now instead of managing:

1 Database

you manage:

10 Databases

or

100 Databases


11. Rebalancing and Resharding

What happens when:

Shard A = 90% full
Shard B = 20% full

You need to move data.

This process is called:

Resharding

And it can be one of the hardest parts of operating large systems.


12. When You Should NOT Shard

Many developers discover sharding and immediately want it.

Don't.

Avoid sharding if:

  • database is still small
  • indexing solves performance issues
  • read replicas solve scaling
  • traffic is moderate

Sharding introduces significant complexity.


13. Real Companies Using Sharding

Large-scale systems often rely on sharding:

  • Instagram
  • Uber
  • Netflix
  • Pinterest
  • Discord

At massive scale, a single database rarely remains enough.


14. Final Thought

Database sharding is one of the most powerful scaling techniques in software engineering.

It allows systems to grow from:

Thousands of users

to:

Millions or even billions of users

But it comes with trade-offs:

✅ Better scalability
✅ Better distribution of load
✅ More storage capacity

❌ More complexity
❌ Harder queries
❌ Challenging maintenance

That's why experienced engineers usually follow this rule:

Exhaust simpler solutions first.

Use indexing.

Use caching.

Use read replicas.

And only when a single database truly becomes the bottleneck...

Reach for sharding.

Because once you shard, there's usually no going back.