-
Notifications
You must be signed in to change notification settings - Fork 5.5k
load_aware_locality: implement lb policy #45725
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
jukie
wants to merge
16
commits into
envoyproxy:main
Choose a base branch
from
jukie:load-aware-lb-impl
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+3,779
−135
Draft
Changes from 13 commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
ff75116
load_aware_locality: config, factory registration, metadata
jukie 97c2940
load_aware_locality: per-host ORCA load report ingestion
jukie 5eda981
load_aware_locality: routing weights snapshot and worker factory
jukie 563d682
load_aware_locality: worker-local load balancer
jukie 7ee3499
load_aware_locality: main-thread weight computation
jukie ff96479
load_aware_locality: architecture doc and changelog
jukie e09d8a2
load_aware_locality: tests
jukie 3fb4a75
move child LB ownership to main thread, enforce 100ms tick floor, sin…
jukie 8acb258
absl --> std
jukie 2523af0
Fix std typos
jukie 71ace56
trim tests, comments, and use peekAnotherHost/chooseHost helper
jukie 358f46a
spellcheck and coverage
jukie c857553
priority-growth sync fixes, weight-cache refresh on raw compare, spil…
jukie 2650f89
Flip back to WIP
jukie 21fbca1
Include round_robin in test extension_names
jukie fb02adb
more review fixes
jukie File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
5 changes: 5 additions & 0 deletions
5
changelogs/current/new_features/load_balancing__load-aware-locality-lb-policy.rst
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| load_balancing: implemented the | ||
| :ref:`envoy.load_balancing_policies.load_aware_locality | ||
| <envoy_v3_api_msg_extensions.load_balancing_policies.load_aware_locality.v3.LoadAwareLocality>` | ||
| locality-picking load balancer. It weights localities by ORCA-derived utilization headroom, | ||
| consumes in-band ORCA reporting, and applies at all priority levels. |
231 changes: 128 additions & 103 deletions
231
docs/root/intro/arch_overview/upstream/load_balancing/load_aware_locality.rst
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -14,6 +14,7 @@ Load Balancing | |
| excluded | ||
| original_dst | ||
| zone_aware | ||
| load_aware_locality | ||
| subsets | ||
| slow_start | ||
| override_host | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
107 changes: 97 additions & 10 deletions
107
source/extensions/load_balancing_policies/load_aware_locality/config.cc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 7 additions & 4 deletions
11
source/extensions/load_balancing_policies/load_aware_locality/config.h
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can remove rejection if preferred but OOB is not currently wired up and depends on #45953