-
Notifications
You must be signed in to change notification settings - Fork 578
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
Add support for HTTP cluster validation #11010
Conversation
💻 Deploy preview deleted. |
34cc981
to
f120ade
Compare
Signed-off-by: Yuri Nikolic <[email protected]>
f120ade
to
18787fe
Compare
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.
Did a first pass at reviewing. Continuing tomorrow.
enabled: true, | ||
softValidation: false, | ||
expectedStatusCode: 511, | ||
expectedError: "rejected request with empty cluster validation label - it should be \\\"server-cluster\\\"", |
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.
[Nit] Could you write this as a raw string literal instead, so we can avoid so many backslashes for readability?
pkg/frontend/frontend_test.go
Outdated
} | ||
|
||
defer downstreamServer.Shutdown(context.Background()) //nolint:errcheck | ||
go downstreamServer.Serve(downstreamListen) //nolint:errcheck |
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.
To make sure that goroutines don't hang around after tests finish (never fun to debug, if it should become a problem), please use a WaitGroup
:
go downstreamServer.Serve(downstreamListen) //nolint:errcheck | |
var wg sync.WaitGroup | |
wg.Add(1) | |
go func() { | |
defer wg.Done() | |
downstreamServer.Serve(downstreamListen) //nolint:errcheck | |
}() | |
t.Cleanup(wg.Wait) |
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.
I have fixed this
Signed-off-by: Yuri Nikolic <[email protected]>
Signed-off-by: Yuri Nikolic <[email protected]>
Signed-off-by: Yuri Nikolic <[email protected]>
What this PR does
This PR adds support for HTTP cluster validation in the query-frontend.
On client side, cluster validation label propagation through HTTP request headers can be enabled by setting
-query-frontend.client-cluster-validation.label
configuration option.On server side, cluster validation can be enabled through the following configuration options (inherited from grafana/dskit#671):
-server.cluster-validation.label
, that defines the server's cluster validation label. When the validation is enabled, this value will be compared with the cluster validation label received through the requests.-server.cluster-validation.http.enabled
, used for enabling the cluster validation.-server.cluster-validation.http.soft-validation
, that can be enabled only together with the cluster validation, and that implies a soft validation.-server.cluster-validation.http.exclude-paths
, a comma-separated list of url paths that are excluded from the cluster validation check.Which issue(s) this PR fixes or relates to
Fixes #
Checklist
CHANGELOG.md
updated - the order of entries should be[CHANGE]
,[FEATURE]
,[ENHANCEMENT]
,[BUGFIX]
.about-versioning.md
updated with experimental features.