Load Balancing
Last updated
Was this helpful?
Last updated
Was this helpful?
Load balancing dictates how requests are distributed across multiple instances of any given service. This document shows how to configure load balancing policies in Grey Matter.
To configure load balancing, the lb_policy
field of the cluster
object must be configured.
Attribute
Description
Type
Default
lb_policy
How requests are distributed to instances of the cluster.
string
least_request
lb_policy
OptionsValue
Description
"least_request"
New requests will be sent to the instance with the fewest active requests.
"round_robin"
Requests will cycle through each "next" host in the available instances
"ring_hash"
"random"
New requests will be sent randomly to a new host.
"maglev"
cluster
Ring Hash is one of the load balancer policies that does consistent hashing to upstream hosts, provided requests are made in a way that supplies a value to hash on. See the full explanation in the Envoy
Maglev is another load balancer that performs consistent hashing to upstreams, but is dependent on hashable information available in the request. See more in the Envoy .