Skip to content

Commit

Permalink
Add new load balancing algorithms (#15877)
Browse files Browse the repository at this point in the history
* Add new load balancing algorithms

* add some all-important periods.

* spellings

* oops
  • Loading branch information
craigbox authored Nov 7, 2024
1 parent 905ef81 commit 7e2788b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .spelling
Original file line number Diff line number Diff line change
Expand Up @@ -705,6 +705,7 @@ Kebe
keepalive
Keepalived
Kenan
Ketama
key.pem
Keycloak
Khaliq
Expand Down Expand Up @@ -775,6 +776,7 @@ Lukonde
Luyao
Lyft
macOS
Maglev
maintainership
Mandar
Manolache
Expand Down
5 changes: 4 additions & 1 deletion content/en/docs/concepts/traffic-management/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down

0 comments on commit 7e2788b

Please sign in to comment.