From system-design-skills
Guides database design decisions: SQL vs NoSQL, schema design, indexing, sharding, replication, and scaling strategies. Use when choosing a data store or designing data models.
How this skill is triggered — by the user, by Claude, or both
Slash command
/system-design-skills:data-storageThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Choose where records live, how they are keyed and queried, and how the store
Choose where records live, how they are keyed and queried, and how the store grows past a single machine. Storage is the hardest layer to change later: a wrong data model or shard key calcifies into a scaling ceiling, and getting replication wrong silently serves stale or lost data.
Any system that persists state: picking SQL vs NoSQL, designing a schema and its access paths, adding indexes, splitting a hot table, distributing data across nodes (sharding/partitioning), adding read replicas, or deciding what to denormalize. Reach here the moment "store the data" needs a concrete key and query shape.
Don't shard, add replicas, or reach for NoSQL before a number forces it (YAGNI).
A single well-indexed relational node handles ~1k QPS and tens of GB to low TB
comfortably — most systems never outgrow it. Sharding multiplies operational
cost and breaks joins/transactions; add it only when one node's write throughput
or dataset size is genuinely exceeded (→ back-of-the-envelope). Caching reads
(→ caching) and adding read replicas are cheaper first moves than sharding.
Answer these before choosing a store or topology — they decide the design:
back-of-the-envelope for QPS, storage, and shard counts.)consistency-coordination.)Relational (SQL — Postgres, MySQL): strict schema, joins, ACID transactions. Use when data is relational, integrity matters, and queries are varied/ad-hoc — the safe default until a number rules it out.
Document (MongoDB, etc.): flexible schema, self-contained JSON-ish documents queried by structure. Use when records are read/written as a whole and the schema evolves; relationships are few.
Key-value (Redis, DynamoDB, Riak): O(1) get/put by key, no rich queries. Use when access is purely by a known key and massive throughput is needed.
Wide-column (Cassandra, Bigtable, HBase): rows keyed by partition, columns sparse, keys kept sorted for range scans. Use when writes are huge and the table can be designed around a few known query patterns.
Graph (Neo4j): nodes and edges. Use when the core queries traverse many-to-many relationships (social graph, recommendations).
Scaling moves (apply on top of any store):
Polyglot persistence: use more than one of the above, each for what it's best at (e.g. Postgres for orders, Redis for sessions, a search index for full-text). The cost is operating and reconciling several stores.
| Option | What it solves | What it worsens | Change it when |
|---|---|---|---|
| Relational/SQL | Joins, ACID, ad-hoc queries, integrity | Single-node write ceiling; schema migrations; harder horizontal scale | Writes/size exceed one node, or schema is truly fluid → NoSQL/shard |
| Document | Schema flexibility; whole-object reads | No joins; cross-document consistency is manual; query engine weaker | Data turns relational or needs multi-doc transactions → SQL |
| Key-value | Extreme throughput, simple ops | Only key access; no range/secondary queries | Queries beyond the key are needed → document/wide-column |
| Wide-column | Write-heavy scale, range scans on sorted keys | Must know queries up front; rigid once keyed; eventual by default | Access patterns are unknown/varied → relational |
| Graph | Cheap deep relationship traversal | Niche tooling; hard to shard; weak for bulk scans | Relationships are shallow → relational/document |
| Indexing | Turns scans into lookups | Slower writes; more storage; index bloat | Write amplification hurts more than the read win |
| Read replicas | Offloads reads; redundancy | Replication lag → stale reads; failover/promotion logic | Stale reads unacceptable → read-from-leader / consistency-coordination |
| Federation | Per-domain scale, smaller working sets | Cross-domain joins break; app routing logic | A single domain still won't fit → shard that domain |
| Sharding | Horizontal write + storage scale | Cross-shard joins/txns hard; resharding pain; hot shards | One node holds it fine, or hot shards dominate → consolidate/re-key |
| Denormalization | Kills expensive joins on the read path | Duplicated data; write-time fan-out; consistency drift | Write load makes fan-out the new bottleneck → normalize/cache |
Storage is where load and failure get amplified into outages.
Monitor: replication lag, per-shard QPS and size (skew), connection-pool saturation/wait time, slow-query rate, lock waits, and disk/IOPS headroom.
caching),
then read replicas, then federation, then shard. Stop at the first level that
meets the target.back-of-the-envelope; if it is one node, do not shard. Default to the generic
recipe and read the provider file only when a cloud is named.Do
Don't
Don't restate the tables — pull the figures from back-of-the-envelope. The ones
that drive storage decisions: a single RDBMS node ≈ 1k QPS; a key-value node
≈ 10k QPS; 10 GB fits in RAM, 10 TB needs distributed storage. Use these
to compute shard count = peak write QPS ÷ per-node QPS (and again by size =
total bytes ÷ per-node capacity), then take the larger. If the result is one
node, do not shard.
The data model is the contract (GUIDE failure mode #8) — a "NoSQL box" decides nothing until the key is written. Pin down per entity:
PK = user_id (hash, spreads load), SK = created_at (sort, enables range
scans like "latest N posts"). The PK must be high-cardinality and even.Without a concrete key and the query it serves, the rest of the design is guesswork.
Default to the generic recipe above. If the user names a cloud, read
references/providers/<provider>.md for the managed-service mapping,
quotas/limits, and provider-specific trade-offs. If no file exists for that
provider, the generic recipe is the answer.
To visualize the data tier — leader with read replicas, a sharded cluster with a
router, or a polyglot split — use the in-plugin architecture-diagram skill.
Draw the shard key on the routing arrow and the replication direction explicitly;
do not embed Mermaid here.
caching — pairs with this for read offload and is the cheap first move;
alternative to read replicas before sharding.consistency-coordination — owned-concept lives in it: CAP/consistency models,
consistent hashing, quorum, and distributed transactions/saga. Pairs with this
when stale reads or cross-shard atomicity are unacceptable.back-of-the-envelope — feeds into this: supplies the QPS, storage, and
shard-count numbers that force (or rule out) each move here.scaling-evolution — depends on this block; sequences when each storage move
is introduced as a system grows.system-design — the orchestrator that routes into this block.references/deep-dive.md — partitioning schemes (range/hash/directory),
replication mechanics and conflict resolution, index internals (B-tree vs LSM),
normalization vs denormalization, connection pooling, resharding. Read when
designing the data tier in detail.references/providers/{generic,aws,azure,gcp}.md — service mappings, the
limits that change a decision, and per-environment pitfalls.npx claudepluginhub proyecto26/system-design-skills --plugin system-design-skillsDesigns scalable data layers, selects database technologies, models schemas, and plans migrations for greenfield and re-architected systems.
Selects database technologies, designs schemas, plans migrations, and builds scalable data architectures. Activates proactively on database architecture and technology selection decisions.
<!-- AUTO-GENERATED by export-plugins.py — DO NOT EDIT -->