Partitioning
Distribution
Distribution counts the keys routed to each partition.
Distribution is counted exactly
Once every key is routed, distribution is just exact per-partition counting. The count table is not sampled or estimated. Note: the key lists in the render explain each count.
Range distribution
The range scheme has 4 partitions and maximum partition count 3.
Range and hash sharding are exact routing functions on tiny pinned key sets; real sharding adds consistent hashing, skew, hot partitions, and rebalancing cost, which are empirical and operational concerns beyond this model - no product claims.
Hash distribution
The hash scheme has 3 partitions and maximum partition count 3. Note: these counts come from explicit remainder routing.
Range and hash sharding are exact routing functions on tiny pinned key sets; real sharding adds consistent hashing, skew, hot partitions, and rebalancing cost, which are empirical and operational concerns beyond this model - no product claims.
Summary
Distribution is a recomputed table of counts and routed key lists. Note: no model here predicts operational skew or throughput.