I/D/E · Patterns

Virtual Nodes

Summary

Multiple hash ring positions per physical node, improving load distribution in consistent hashing

TL;DR

Virtual nodes (vnodes) assign multiple positions on the consistent hash ring to each physical node. Instead of one position per server, a server might have 100-200 virtual positions. This improves load balance, handles heterogeneous hardware (more vnodes for bigger servers), and smooths rebalancing when nodes join or leave.

Visual Overview

Virtual Nodes
WITHOUT VIRTUAL NODES

  3 physical nodes, 1 position each:                
                                                    
            ●  Node A (owns 50% of ring!)          
           / \                                      
          /   \                                     
         ●     ●                                    
     Node C     Node B                              
   (owns 15%)  (owns 35%)                           
                                                    
  Problem: Random hash positions  uneven load      
  With bad luck, one node gets most of the data!    


WITH VIRTUAL NODES (4 vnodes per physical node)

  Same 3 physical nodes, but 12 ring positions:     
                                                    
        A1      B2      A3      C1                  
          ●       ●       ●       ●                 
           \     /         \     /                 
            ● ●               ● ●                   
          C2 B1             A2 C3                   
              \             /                       
               ● ●     ● ●                          
             B3 A4   C4 B4                          
                                                    
  Result: Each node owns ~33% of ring               
  More vnodes = smoother distribution               

Core Explanation

What are Virtual Nodes?

Real-World Analogy: Imagine dividing a pizza among 3 people, but instead of giving each person 1 large slice, you cut the pizza into 30 small slices and give each person 10 random slices. Even if some slices are bigger than others, the randomness averages out—everyone ends up with roughly 1/3 of the pizza.

Virtual nodes work the same way: instead of each physical server claiming one spot on the hash ring, it claims many spots. The randomness of hash positions averages out, giving each server roughly equal load.

Why Virtual Nodes?

With only one ring position per physical node, load distribution depends entirely on where nodes happen to hash. Bad luck means one node might own 60% of the keyspace while another owns 10%.

The Statistics of Virtual Nodes
LOAD BALANCE BY VNODE COUNT

                                                    
  Vnodes  Expected Load  Std Dev  Worst Case    
  
    1        33.3%        ~15%    50-60%        
   10        33.3%        ~5%     40-45%        
   50        33.3%        ~2%     36-38%        
  100        33.3%        ~1.5%   35-36%        
  256        33.3%        ~1%     34-35%        
                                                    
  More vnodes = lower variance = better balance     
  (Numbers are illustrative for 3-node cluster)    


LAW OF LARGE NUMBERS IN ACTION

                                                    
  1 vnode per node: Each position is random         
   High variance, luck-dependent balance          
                                                    
  100 vnodes per node: 100 random positions each    
   Randomness averages out                        
   Each node converges to fair share              
                                                    
  It's like flipping a coin:                        
  - 10 flips: might get 70% heads                   
  - 1000 flips: very close to 50% heads             
                                                    

How Virtual Nodes Work

Virtual Node Mapping
VNODE CREATION

                                                    
  Physical Node: server-a.example.com               
                                                    
  Generate vnode positions:                         
    hash("server-a-0")  position 0x1A3F...        
    hash("server-a-1")  position 0x4B2C...        
    hash("server-a-2")  position 0x7D8E...        
    ...                                             
    hash("server-a-99")  position 0xF2A1...       
                                                    
  All 100 positions map back to server-a            
                                                    


KEY LOOKUP WITH VNODES

                                                    
  1. Hash the key: hash("user:123")  0x5C2D...    
                                                    
  2. Find next vnode position on ring               
      Closest >= 0x5C2D is 0x5F1A (server-b-42)  
                                                    
  3. Resolve vnode to physical node                 
      server-b-42  server-b.example.com         
                                                    
  4. Route request to physical node                 
                                                    
  Lookup cost: O(log(N × V))                        
  where N = nodes, V = vnodes per node              
                                                    

Benefits of Virtual Nodes

Virtual Node Benefits
1. BETTER LOAD BALANCE

  Without vnodes: 3 nodes, random distribution      
    Node A: 50%, Node B: 35%, Node C: 15%          
                                                    
  With 100 vnodes each: ~33% each ± 2%              
    Node A: 34%, Node B: 33%, Node C: 33%          


2. HETEROGENEOUS HARDWARE

  Want bigger machines to handle more data?         
                                                    
  Small server: 50 vnodes  ~16% of ring           
  Medium server: 100 vnodes  ~33% of ring         
  Large server: 150 vnodes  ~50% of ring          
                                                    
  Capacity proportional to vnode count!             


3. SMOOTHER REBALANCING

  Node failure without vnodes:                      
   1 node takes over entire failed node's range  
   That node suddenly has 2× load                
                                                    
  Node failure with vnodes:                         
   Failed node's 100 vnodes redistributed         
   Each surviving node gets ~50 vnodes           
   Load increase spread evenly                    


4. FASTER RECOVERY

  Without vnodes: 1 node rebuilds from 1 other     
  With vnodes: Many nodes participate in rebuild    
                                                    
  Recovery time: O(data/bandwidth)  O(data/(N×bw))
  Parallelism speeds recovery proportionally        

Trade-offs

Virtual Node Trade-offs
MEMORY OVERHEAD

  Ring metadata per cluster:                        
    N nodes × V vnodes × (position + node_id)      
                                                    
  Example: 100 nodes × 256 vnodes × 32 bytes       
         = 25,600 entries × 32 bytes               
         = ~800 KB                                  
                                                    
  Negligible for most systems                       


ROUTING COMPLEXITY

  Lookup: O(log(N × V)) instead of O(log N)        
                                                    
  With 100 nodes × 256 vnodes:                      
  log₂(25,600) ≈ 15 comparisons                    
                                                    
  Still very fast—microseconds                      


CONFIGURATION COMPLEXITY

  Questions to answer:                              
  - How many vnodes per node?                       
  - How to handle heterogeneous hardware?           
  - What's the rebalancing strategy?                
                                                    
  Most systems: Use defaults (128-256)              

Real Systems Using Virtual Nodes

SystemDefault VnodesConfigurationNotes
Apache Cassandra256 (was 256, now 16 in newer versions)num_tokens in cassandra.yamlReduced for faster bootstrap
Amazon DynamoDBInternal partitioningNot configurableManaged service
Riak64ring_sizeFixed per cluster
Akka ClusterConfigurablePer-node settingVirtual nodes per member
ConsulConfigurableFor service discoveryHash ring for consistency

Note: Default values change across versions. Verify in current documentation.

Case Study: Cassandra Token Assignment

Cassandra Token Distribution
CASSANDRA VNODE ASSIGNMENT (Illustrative)

                                                    
  3-node cluster, 256 vnodes each = 768 tokens     
                                                    
  Node 1 tokens: [0x0A..., 0x1F..., ..., 0xE3...]  
  Node 2 tokens: [0x03..., 0x2B..., ..., 0xF1...]  
  Node 3 tokens: [0x08..., 0x19..., ..., 0xD7...]  
                                                    
  Each owns ~341 token ranges (~33% of ring)        
                                                    
  Key "user:123"  hash 0x4F...                    
   Falls in Node 2's token range                 
   Replicas on Node 1, Node 3 (RF=3)            
                                                    


ADDING A 4TH NODE

                                                    
  New Node 4 claims 256 new tokens                  
  Each existing node transfers ~64 ranges           
  (25% of their 256 tokens each)                    
                                                    
  Final state: Each node owns ~25% of ring          
                                                    
  Without vnodes: Would transfer ~33% from 1 node   
  With vnodes: Distributes transfer across all      
                                                    

When to Use Virtual Nodes

✓ Perfect Use Cases

Virtual Node Use Cases
DISTRIBUTED KEY-VALUE STORES
Scenario: Sharding user data across servers
Requirement: Even distribution, smooth scaling
Configuration: 100-256 vnodes per node
Trade-off: Slightly more metadata to manage

DISTRIBUTED CACHING
Scenario: Memcached/Redis cluster
Requirement: Cache invalidation on node change
Configuration: Vnodes minimize invalidation scope
Trade-off: Client library must understand vnodes

HETEROGENEOUS CLUSTERS
Scenario: Mix of server capacities
Requirement: Proportional load to capacity
Configuration: Vnodes proportional to resources
Trade-off: Manual vnode count management

MULTI-TENANT SYSTEMS
Scenario: Isolated data per tenant
Requirement: Even tenant distribution
Configuration: Hash(tenant_id)  vnode
Trade-off: Some tenants may colocate

✕ When NOT to Use

When Virtual Nodes May Not Fit
VERY SMALL CLUSTERS
Problem: 3 nodes with vnodes is overkill
Example: Simple 3-server database
Alternative: Fixed partitioning or single-node
When OK: If you expect to grow significantly

ORDERED DATA ACCESS
Problem: Vnodes scatter related keys
Example: Time-series data, range queries
Alternative: Ordered partitioning by key range
When OK: Point lookups only, no range scans

EXTREME CONSISTENCY REQUIREMENTS
Problem: Vnodes add routing complexity
Example: Financial ledger, strict ordering
Alternative: Single-leader or Paxos group
When OK: Eventual consistency acceptable

ALREADY BALANCED WORKLOAD
Problem: No benefit if load is even
Example: Round-robin by sequence ID
Alternative: Simple modulo partitioning
When OK: Natural imbalance exists

Interview Application

Common Interview Question

Q: “In consistent hashing, what are virtual nodes and why are they important?”

Strong Answer:

“Virtual nodes solve the load imbalance problem in consistent hashing. Here’s the issue and solution:

The Problem: With one ring position per physical node, load distribution is random. A 3-node cluster might have 50%, 35%, 15% distribution instead of 33% each. Bad hash luck = hot spots.

The Solution: Assign multiple positions (virtual nodes) to each physical node. Instead of 3 positions on the ring, you have 300 (100 per node). Randomness averages out—each node ends up with ~33% ± 2%.

Key Benefits:

  1. Better balance: More positions → lower variance
  2. Heterogeneous hardware: 200 vnodes for big servers, 50 for small
  3. Smoother rebalancing: When a node fails, its 100 vnodes spread across all survivors, not just one
  4. Faster recovery: Multiple nodes can participate in parallel rebuild

Trade-offs:

  • More metadata: O(N × V) ring entries vs O(N)
  • Slightly more complex routing
  • Configuration decisions (how many vnodes?)

Real-World: Cassandra uses 256 vnodes by default (reduced from 256 to 16 in newer versions for faster bootstrap). DynamoDB uses virtual nodes internally. The overhead is negligible—a 100-node cluster with 256 vnodes each is ~800KB of metadata.”

Follow-up: How do virtual nodes help with node failure recovery?

“Without vnodes, when a node fails, its entire range goes to one other node. That node suddenly has 2× data and 2× traffic.

With vnodes, the failed node’s 100+ positions are scattered across the ring. Each surviving node picks up a portion. The load increase is distributed evenly—much smaller per-node impact.

Recovery is also faster because it’s parallelized. Instead of one node streaming all data from one peer, many nodes stream small portions simultaneously. If you have 10 surviving nodes and each helps rebuild, recovery is 10× faster.”

Follow-up: How would you choose the number of virtual nodes?

“It’s a trade-off between balance quality and overhead:

Factors to consider:

  1. Cluster size: Smaller clusters need more vnodes for balance
  2. Heterogeneity: More vnodes needed if node capacities vary
  3. Bootstrap time: More vnodes = slower node join
  4. Metadata size: Usually negligible

Common patterns:

  • Small cluster (3-10 nodes): 256 vnodes
  • Medium cluster (10-100 nodes): 128 vnodes
  • Large cluster (100+ nodes): 32-64 vnodes (cluster size provides natural balance)

Cassandra actually reduced their default from 256 to 16 in later versions because modern clusters are larger and faster bootstrap matters more than perfect balance.”

Code Example

Virtual Nodes Consistent Hashing (Python)

import hashlib
import bisect
from typing import Dict, List, Optional

class VirtualNodeRing:
    """
    Consistent hash ring with virtual nodes.

    Each physical node gets multiple positions on the ring
    for better load distribution.
    """

    def __init__(self, vnodes_per_node: int = 100):
        """
        Args:
            vnodes_per_node: Virtual positions per physical node
        """
        self.vnodes_per_node = vnodes_per_node
        self.ring: List[int] = []  # Sorted list of hash positions
        self.ring_to_node: Dict[int, str] = {}  # Hash position → physical node

    def _hash(self, key: str) -> int:
        """Generate consistent hash for a key."""
        return int(hashlib.md5(key.encode()).hexdigest(), 16)

    def add_node(self, node: str, weight: int = 1) -> None:
        """
        Add a physical node with virtual nodes.

        Args:
            node: Physical node identifier
            weight: Multiplier for vnodes (for heterogeneous hardware)
        """
        num_vnodes = self.vnodes_per_node * weight

        for i in range(num_vnodes):
            # Generate unique vnode identifier
            vnode_key = f"{node}-vnode-{i}"
            position = self._hash(vnode_key)

            # Add to ring
            bisect.insort(self.ring, position)
            self.ring_to_node[position] = node

    def remove_node(self, node: str, weight: int = 1) -> None:
        """Remove a physical node and all its virtual nodes."""
        num_vnodes = self.vnodes_per_node * weight

        for i in range(num_vnodes):
            vnode_key = f"{node}-vnode-{i}"
            position = self._hash(vnode_key)

            if position in self.ring_to_node:
                self.ring.remove(position)
                del self.ring_to_node[position]

    def get_node(self, key: str) -> Optional[str]:
        """
        Get the physical node responsible for a key.

        Args:
            key: The key to look up

        Returns:
            Physical node identifier, or None if ring is empty
        """
        if not self.ring:
            return None

        position = self._hash(key)

        # Find first vnode position >= key's position
        idx = bisect.bisect_right(self.ring, position)

        # Wrap around to first position if needed
        if idx >= len(self.ring):
            idx = 0

        vnode_position = self.ring[idx]
        return self.ring_to_node[vnode_position]

    def get_distribution(self) -> Dict[str, float]:
        """Calculate the theoretical load distribution."""
        if not self.ring:
            return {}

        # Count vnodes per physical node
        node_vnodes: Dict[str, int] = {}
        for node in self.ring_to_node.values():
            node_vnodes[node] = node_vnodes.get(node, 0) + 1

        total = len(self.ring)
        return {node: count / total for node, count in node_vnodes.items()}


# Usage example
if __name__ == "__main__":
    print("=== Virtual Nodes Demo ===\n")

    # Create ring with 50 vnodes per physical node
    ring = VirtualNodeRing(vnodes_per_node=50)

    # Add 3 nodes
    ring.add_node("server-a")
    ring.add_node("server-b")
    ring.add_node("server-c")

    print("Distribution with equal vnodes (50 each):")
    for node, pct in ring.get_distribution().items():
        print(f"  {node}: {pct:.1%}")

    # Add heterogeneous node with 2× capacity
    ring.add_node("server-d-large", weight=2)

    print("\nAfter adding server-d-large (2× weight):")
    for node, pct in ring.get_distribution().items():
        print(f"  {node}: {pct:.1%}")

    # Simulate key lookups
    print("\nKey assignments:")
    keys = ["user:1", "user:2", "user:3", "order:100", "session:xyz"]
    for key in keys:
        node = ring.get_node(key)
        print(f"  {key}{node}")

    # Simulate node failure
    print("\nSimulating server-b failure...")
    ring.remove_node("server-b")

    print("\nDistribution after server-b removal:")
    for node, pct in ring.get_distribution().items():
        print(f"  {node}: {pct:.1%}")

    print("\nKey assignments (same keys, new distribution):")
    for key in keys:
        node = ring.get_node(key)
        print(f"  {key}{node}")

Load Distribution Analysis

import random
from collections import Counter

def analyze_distribution(
    num_nodes: int,
    vnodes_per_node: int,
    num_keys: int = 100000
) -> dict:
    """
    Analyze key distribution across nodes.

    Returns statistics about load balance.
    """
    ring = VirtualNodeRing(vnodes_per_node=vnodes_per_node)

    # Add nodes
    for i in range(num_nodes):
        ring.add_node(f"node-{i}")

    # Distribute random keys
    key_counts: Counter = Counter()
    for i in range(num_keys):
        key = f"key-{random.randint(0, 10**12)}"
        node = ring.get_node(key)
        key_counts[node] += 1

    # Calculate statistics
    counts = list(key_counts.values())
    expected = num_keys / num_nodes
    variance = sum((c - expected) ** 2 for c in counts) / num_nodes
    std_dev = variance ** 0.5
    coefficient_of_variation = std_dev / expected

    return {
        "expected_per_node": expected,
        "actual_min": min(counts),
        "actual_max": max(counts),
        "std_dev": std_dev,
        "cv": coefficient_of_variation,  # Lower = more balanced
    }


if __name__ == "__main__":
    print("=== Distribution Analysis ===\n")

    print("5 nodes, varying vnode counts:")
    for vnodes in [1, 10, 50, 100, 200]:
        stats = analyze_distribution(
            num_nodes=5,
            vnodes_per_node=vnodes,
            num_keys=100000
        )
        print(f"\n  {vnodes} vnodes per node:")
        print(f"    Expected: {stats['expected_per_node']:.0f}")
        print(f"    Range: {stats['actual_min']} - {stats['actual_max']}")
        print(f"    Std Dev: {stats['std_dev']:.0f}")
        print(f"    CV: {stats['cv']:.2%} (lower = more balanced)")

See It In Action:

Related Concepts:

Quick Self-Check

  • Can explain why virtual nodes improve load distribution?
  • Understand the trade-off between vnode count and overhead?
  • Know how vnodes help with heterogeneous hardware?
  • Can explain how vnodes improve failure recovery?
  • Understand the O(log N×V) lookup complexity?
  • Know typical vnode counts in production systems (100-256)?

Production signal

Why this concept matters

Interview 50% of consistent hashing discussions
Production Cassandra, DynamoDB, Riak
Performance Better balance
Scale Heterogeneous nodes