From 851d1e9e9b729beb3c679c2b5da33b00ee6d4dad Mon Sep 17 00:00:00 2001 From: Justin Jung Date: Mon, 11 Sep 2023 11:30:25 -0700 Subject: [PATCH] Update docs Signed-off-by: Justin Jung --- docs/blocks-storage/querier.md | 5 +++++ docs/blocks-storage/store-gateway.md | 5 +++++ docs/configuration/config-file-reference.md | 5 +++++ 3 files changed, 15 insertions(+) diff --git a/docs/blocks-storage/querier.md b/docs/blocks-storage/querier.md index a981b5411d3..9fe67beb192 100644 --- a/docs/blocks-storage/querier.md +++ b/docs/blocks-storage/querier.md @@ -499,6 +499,11 @@ blocks_storage: # CLI flag: -blocks-storage.bucket-store.max-concurrent [max_concurrent: | default = 100] + # Max number of inflight queries to execute against the long-term storage. + # THe limit is shared across all tenants. 0 to disable. + # CLI flag: -blocks-storage.bucket-store.max-inflight-requests + [max_inflight_requests: | default = 0] + # Maximum number of concurrent tenants synching blocks. # CLI flag: -blocks-storage.bucket-store.tenant-sync-concurrency [tenant_sync_concurrency: | default = 10] diff --git a/docs/blocks-storage/store-gateway.md b/docs/blocks-storage/store-gateway.md index 891b5824cf3..c7bcc3a27d1 100644 --- a/docs/blocks-storage/store-gateway.md +++ b/docs/blocks-storage/store-gateway.md @@ -602,6 +602,11 @@ blocks_storage: # CLI flag: -blocks-storage.bucket-store.max-concurrent [max_concurrent: | default = 100] + # Max number of inflight queries to execute against the long-term storage. + # THe limit is shared across all tenants. 0 to disable. + # CLI flag: -blocks-storage.bucket-store.max-inflight-requests + [max_inflight_requests: | default = 0] + # Maximum number of concurrent tenants synching blocks. # CLI flag: -blocks-storage.bucket-store.tenant-sync-concurrency [tenant_sync_concurrency: | default = 10] diff --git a/docs/configuration/config-file-reference.md b/docs/configuration/config-file-reference.md index d2e776d462e..7b23fac2a5b 100644 --- a/docs/configuration/config-file-reference.md +++ b/docs/configuration/config-file-reference.md @@ -1038,6 +1038,11 @@ bucket_store: # CLI flag: -blocks-storage.bucket-store.max-concurrent [max_concurrent: | default = 100] + # Max number of inflight queries to execute against the long-term storage. THe + # limit is shared across all tenants. 0 to disable. + # CLI flag: -blocks-storage.bucket-store.max-inflight-requests + [max_inflight_requests: | default = 0] + # Maximum number of concurrent tenants synching blocks. # CLI flag: -blocks-storage.bucket-store.tenant-sync-concurrency [tenant_sync_concurrency: | default = 10]