User Guide / Advanced

The two load-balance strategies

Advanced · Updated 2026-03-23 · ~2 min read

A load-balance group spreads traffic across several nodes and takes one extra field, strategy:

proxy-groups:
  - name: Balanced
    type: load-balance
    proxies: [node-A, node-B, node-C]
    url: http://www.gstatic.com/generate_204
    interval: 300
    strategy: consistent-hashing   # or round-robin

Behavior

Who needs it

Most people do not — url-test auto-selection is enough. Its real value: heavy downloaders aggregating several bandwidth-limited lines, or spreading risk across nodes of uneven quality. Note it cannot speed up a single connection (one connection still rides one node); it raises aggregate throughput across many connections.