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

feat: Querier: Split gRPC client into two. #12726

Merged
merged 18 commits into from
May 6, 2024
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
Prev Previous commit
Next Next commit
regenerate markdown
  • Loading branch information
DylanGuedes committed Apr 26, 2024
commit 0fb7fe7a89f137060d52485931ae322d892ae35f
20 changes: 18 additions & 2 deletions docs/sources/shared/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -2236,10 +2236,25 @@ The `frontend_worker` configures the worker - running within the Loki querier -
# CLI flag: -querier.id
[id: <string> | default = ""]

# The grpc_client block configures the gRPC client used to communicate between a
# client and server component in Loki.
# Configures the gRPC client used to communicate between the querier and the
# query-frontend, and the querier and the query-scheduler. If
# 'use_separated_clients' is true, this config is only used for communicating
# with frontend and 'query_scheduler_grpc_client_config' should be used to
# configuring querier <-> scheduler communication.
# The CLI flags prefix for this block configuration is: querier.frontend-client
[grpc_client_config: <grpc_client>]

# Configures the gRPC client used to communicate between the querier and the
# query-scheduler. If 'use_separated_clients' is false, this config is ignored.
# The CLI flags prefix for this block configuration is: querier.scheduler-client
[query_scheduler_grpc_client_config: <grpc_client>]

# If set to true, querier will use 'query_scheduler_grpc_client_config' to
# communicate with the scheduler. Otherwise,
# 'query_scheduler_grpc_client_config' is ignored and 'grpc_client_config' is
# used instead.
# CLI flag: -querier.use-separated-grpc-clients
[uses_separated_clients: <boolean> | default = false]
```

### gcs_storage_config
Expand Down Expand Up @@ -2297,6 +2312,7 @@ The `grpc_client` block configures the gRPC client used to communicate between a
- `ingester.client`
- `pattern-ingester.client`
- `querier.frontend-client`
- `querier.scheduler-client`
- `query-scheduler.grpc-client-config`
- `ruler.client`
- `tsdb.shipper.index-gateway-client.grpc`
Expand Down
Loading