Skip to content
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

Merged
merged 7 commits into from
Mar 31, 2025

Conversation

duricanikolic
Copy link
Contributor

@duricanikolic duricanikolic commented Mar 26, 2025

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

  • Tests updated.
  • Documentation added.
  • CHANGELOG.md updated - the order of entries should be [CHANGE], [FEATURE], [ENHANCEMENT], [BUGFIX].
  • about-versioning.md updated with experimental features.

@duricanikolic duricanikolic self-assigned this Mar 26, 2025
Copy link
Contributor

github-actions bot commented Mar 26, 2025

💻 Deploy preview deleted.

@duricanikolic duricanikolic force-pushed the yuri/http-cluster-validation branch from 34cc981 to f120ade Compare March 26, 2025 10:32
@duricanikolic duricanikolic force-pushed the yuri/http-cluster-validation branch from f120ade to 18787fe Compare March 26, 2025 12:13
Copy link
Contributor

@aknuds1 aknuds1 left a 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\\\"",
Copy link
Contributor

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?

}

defer downstreamServer.Shutdown(context.Background()) //nolint:errcheck
go downstreamServer.Serve(downstreamListen) //nolint:errcheck
Copy link
Contributor

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:

Suggested change
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)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have fixed this

@duricanikolic duricanikolic marked this pull request as ready for review March 31, 2025 15:16
@duricanikolic duricanikolic merged commit 0198652 into main Mar 31, 2025
28 checks passed
@duricanikolic duricanikolic deleted the yuri/http-cluster-validation branch March 31, 2025 15:55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants