Add new load balancing algorithms (#15877)

* Add new load balancing algorithms

* add some all-important periods.

* spellings

* oops
This commit is contained in:
Craig Box 2024-11-07 14:54:26 +13:00 committed by GitHub
parent 905ef81370
commit 7e2788b5c8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 1 deletions

View File

@ -705,6 +705,7 @@ Kebe
keepalive
Keepalived
Kenan
Ketama
key.pem
Keycloak
Khaliq
@ -775,6 +776,7 @@ Lukonde
Luyao
Lyft
macOS
Maglev
maintainership
Mandar
Manolache

View File

@ -381,9 +381,12 @@ particular service or service subset.
- Weighted: Requests are forwarded to instances in the pool according to a
specific percentage.
- Round robin: Requests are forwarded to each instance in sequence.
- Consistent hash: Provides soft session affinity based on HTTP headers, cookies or other properties.
- Ring hash: Implements consistent hashing to upstream hosts using the [Ketama algorithm](https://www.metabrew.com/article/libketama-consistent-hashing-algo-memcached-clients).
- Maglev: Implements consistent hashing to upstream hosts as described in the [Maglev paper](https://research.google/pubs/maglev-a-fast-and-reliable-software-network-load-balancer/).
See the
[Envoy load balancing documentation](https://www.envoyproxy.io/docs/envoy/v1.5.0/intro/arch_overview/load_balancing)
[Envoy load balancing documentation](https://www.envoyproxy.io/docs/envoy/latest/intro/arch_overview/upstream/load_balancing/load_balancers)
for more information about each option.
### Destination rule example {#destination-rule-example}