-
Notifications
You must be signed in to change notification settings - Fork 4.6k
Modify getReadyUpstreams to filter upstreams by listener #17410
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
Merged
nathancoleman
merged 1 commit into
NET-3673-endpointsFromSnapshotAPIGateway
from
filter-ready-upstreams
May 18, 2023
Merged
Changes from all commits
Commits
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
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
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 |
|---|---|---|
|
|
@@ -530,36 +530,40 @@ type readyUpstreams struct { | |
| upstreams []structs.Upstream | ||
| } | ||
|
|
||
| // getReadyUpstreams returns a map containing the list of upstreams for each listener that is ready | ||
| func getReadyUpstreams(cfgSnap *proxycfg.ConfigSnapshot) map[string]readyUpstreams { | ||
|
|
||
| ready := map[string]readyUpstreams{} | ||
| for _, l := range cfgSnap.APIGateway.Listeners { | ||
| //need to account for the state of the Listener when building the upstreams list | ||
| // Only include upstreams for listeners that are ready | ||
| if !cfgSnap.APIGateway.GatewayConfig.ListenerIsReady(l.Name) { | ||
| continue | ||
| } | ||
|
|
||
| // For each route bound to the listener | ||
| boundListener := cfgSnap.APIGateway.BoundListeners[l.Name] | ||
| //get route ref | ||
| for _, routeRef := range boundListener.Routes { | ||
| //get upstreams | ||
| upstreamMap := cfgSnap.APIGateway.Upstreams[routeRef] | ||
| for _, upstreams := range upstreamMap { | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The big change is removing this |
||
| for _, u := range upstreams { | ||
| r, ok := ready[l.Name] | ||
| if !ok { | ||
| r = readyUpstreams{ | ||
| listenerKey: proxycfg.APIGatewayListenerKey{ | ||
| Protocol: string(l.Protocol), | ||
| Port: l.Port, | ||
| }, | ||
| listenerCfg: l, | ||
| boundListenerCfg: boundListener, | ||
| routeReference: routeRef, | ||
| } | ||
| // Get all upstreams for the route | ||
| routeUpstreams := cfgSnap.APIGateway.Upstreams[routeRef] | ||
|
|
||
| // Filter to upstreams that attach to this specific listener since | ||
| // a route can bind to + have upstreams for multiple listeners | ||
| listenerKey := proxycfg.APIGatewayListenerKeyFromListener(l) | ||
| routeUpstreamsForListener := routeUpstreams[listenerKey] | ||
|
|
||
| for _, upstream := range routeUpstreamsForListener { | ||
| // Insert or update readyUpstreams for the listener to include this upstream | ||
| r, ok := ready[l.Name] | ||
| if !ok { | ||
| r = readyUpstreams{ | ||
| listenerKey: listenerKey, | ||
| listenerCfg: l, | ||
| boundListenerCfg: boundListener, | ||
| routeReference: routeRef, | ||
| } | ||
| r.upstreams = append(r.upstreams, u) | ||
| ready[l.Name] = r | ||
| } | ||
| r.upstreams = append(r.upstreams, upstream) | ||
| ready[l.Name] = r | ||
| } | ||
| } | ||
| } | ||
|
|
||
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.
Uh oh!
There was an error while loading. Please reload this page.
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.
This change is just for ease of use, no functional impact