---
answer: direct
beat: system-design
source: 1 article · updated: August 9, 2026
---

When should you NOT use consistent hashing?

If your cluster size is truly fixed and never grows, or if rebalancing is cheap, consistent hashing adds complexity for little gain. It shines only when you scale up/down frequently (Cassandra, DynamoDB, Redis Cluster) or can't afford cache wipes (Discord's chat cache, ride-hailing surge boundaries). For a fixed 3-node Postgres replica set, stick with traditional hash mod N.

Answered in

When 87% of Your Cache Vanishes

Consistent hashing maps nodes and keys to a circle, so adding a server moves only 1/N of keys instead of almost all of them.

Crashtech Editorial August 9, 2026 System Design

Read the full analysis

Other questions this article answers

More system design questions

Every answer on Crashtech is written by the editor of the article it comes from — never auto-summarised. Browse all answers or the System Design beat.