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

Update architecture.md #4475

Merged
merged 2 commits into from
Jan 7, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions docs/sources/tempo/operations/architecture.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,10 @@ Queriers connect to the Query Frontend via a streaming gRPC connection to proces
## Querier

The querier is responsible for finding the requested trace id in either the ingesters or the backend storage. Depending on
knylander-grafana marked this conversation as resolved.
Show resolved Hide resolved
parameters it will query both the ingesters and pull bloom/indexes from the backend to search blocks in object
storage.
parameters it will query the ingesters for recently ingested traces and it pulls the bloom filters and indexes form the backend storage to efficiently locate the traces within object storage blocks.
knylander-grafana marked this conversation as resolved.
Show resolved Hide resolved

The querier exposes an HTTP endpoint at:
`GET /querier/api/traces/<traceID>`, but its not expected to be used directly.
`GET /querier/api/traces/<traceID>`, but it is not intended for direct use.

Queries should be sent to the Query Frontend.

Expand Down
Loading