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

Fix Grpc streaming handling of Authorization header #4419

Merged
merged 2 commits into from
Dec 6, 2024

Conversation

mdisibio
Copy link
Contributor

@mdisibio mdisibio commented Dec 5, 2024

What this PR does:
The gRPC streaming endpoints are unintentionally dropping auth-related headers when issuing jobs to the queriers, so streaming + auth fails. We need to extract them from the gRPC metadata and include them in the job. The fix is here, but it is for downstream Grafana Enterprise Traces

Which issue(s) this PR fixes:
Fixes #

Checklist

  • Tests updated
  • Documentation added
  • CHANGELOG.md updated - the order of entries should be [CHANGE], [FEATURE], [ENHANCEMENT], [BUGFIX]
@joe-elliott
Copy link
Member

Should we put this in prepareRequestForQueriers? it's what i generally think of as the place where all the headers are lined up for the queriers:

https://github.com/grafana/tempo/blob/main/modules/frontend/frontend.go#L311

@mdisibio
Copy link
Contributor Author

mdisibio commented Dec 6, 2024

Should we put this in prepareRequestForQueriers?

It should be possible since the request parameter's context should still have a copy of the gRPC metadata. However it is called for every job, so it would be less efficient, and I do like that the current location (grpc handlers) limits the scope.

Copy link
Member

@joe-elliott joe-elliott left a comment

Choose a reason for hiding this comment

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

Yup, good call. I do wish there was a way we could centralize the code to make it harder to mess up the next time we add a streaming endpoint.

But I think that about a lot of the boilerplate code between the streaming and http handlers.

@mdisibio mdisibio merged commit a170b4a into grafana:main Dec 6, 2024
16 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants