Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## master / unreleased
* [FEATURE] Engine: Add `-querier.selector-batch-size` and `-ruler.selector-batch-size` flags to configure series batching in the Thanos promQL engine. 0 disables batching. #7763
* [CHANGE] Ingester: Graduate native histogram ingestion (`-blocks-storage.tsdb.enable-native-histograms`) from experimental. #7789
* [CHANGE] Querier: Make query time range configurations per-tenant: `query_ingesters_within`, `query_store_after`, and `shuffle_sharding_ingesters_lookback_period`. Uses `model.Duration` instead of `time.Duration` to support serialization but has minimum unit of 1ms (nanoseconds/microseconds not supported). #7160
* [CHANGE] Cache: Setting `-blocks-storage.bucket-store.metadata-cache.bucket-index-content-ttl` to 0 will disable the bucket-index cache. #7446
* [CHANGE] HA Tracker: Move `-distributor.ha-tracker.failover-timeout` from a global config to a per-tenant runtime config. The flag name and default value (30s) remain the same. #7481
Expand Down
26 changes: 20 additions & 6 deletions docs/configuration/v1-guarantees.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ Currently experimental features are:
- Do not extend writes on unhealthy ingesters (`-distributor.extend-writes=false`)
- Accept multiple HA pairs in the same request (enabled via `-experimental.distributor.ha-tracker.mixed-ha-samples=true`)
- Accept Prometheus remote write 2.0 request (`-distributor.remote-writev2-enabled=true`)
- Use a goroutine worker pool for query fan-out calls to ingesters (`-distributor.num-query-workers`)
- Tenant Deletion in Purger, for blocks storage.
- Blocks storage user index
- Store Gateway max concurrent fetched data bytes limit
Expand Down Expand Up @@ -103,8 +104,6 @@ Currently experimental features are:
- Ingest delta temporality OTLP metrics (`-distributor.otlp.allow-delta-temporality=true`)
- Persistent tokens in the Ruler Ring:
- `-ruler.ring.tokens-file-path` (path) CLI flag
- Native Histograms
- Ingestion can be enabled by setting `-blocks-storage.tsdb.enable-native-histograms=true` on Ingester.
- String interning for metrics labels
- Enable string interning for metrics labels by setting `-ingester.labels-string-interning-enabled` on Ingester.
- Query-frontend: query rejection (`-frontend.query-rejection.enabled`)
Expand All @@ -113,9 +112,10 @@ Currently experimental features are:
- Query-frontend: dynamic query splits
- `querier.max-shards-per-query` (int) CLI flag
- `querier.max-fetched-data-duration-per-query` (duration) CLI flag
- Ingester/Store-Gateway: Query rejection
- Ingester/Store-Gateway/Querier: Query rejection
- `-ingester.query-protection.rejection`
- `-store-gateway.query-protection.rejection`
- `-querier.query-protection.rejection`
- Distributor/Ingester: Stream push connection
- Enable stream push connection between distributor and ingester by setting `-distributor.use-stream-push=true` on Distributor.
- Enable stream push authentication on Distributor/Ingester. (`-distributor.sign-write-requests-keys`)
Expand All @@ -141,6 +141,7 @@ Currently experimental features are:
- `-querier.query-protection.eviction.cooldown-period` (int)
- `-querier.query-protection.eviction.eviction-metric` (string)
- `-querier.query-protection.eviction.min-query-age` (duration)
- `-querier.query-protection.eviction.max-evictions-per-cycle` (int)
- Ingester: Active Series Tracker
- Per-tenant `active_series_trackers` configuration in runtime config overrides
- Counts active series matching PromQL label matchers and exposes `cortex_ingester_active_series_per_tracker` metric
Expand All @@ -154,6 +155,19 @@ Currently experimental features are:
- `-ingester.head-queried-series-metrics-windows` time windows to report (default: 2h)
- `-ingester.head-queried-series-metrics-window-duration` HLL sub-window size
- `-ingester.head-queried-series-metrics-sample-rate` query sampling rate
- Parquet Converter: Maximum number of columns per file
- `-parquet-converter.max-num-columns` (int) CLI flag
- Automatically shards parquet files when the number of columns exceeds the configured limit
- Parquet storage
- Parquet Converter: the `-parquet-converter.*` CLI flags, including `-parquet-converter.enabled`,
`-parquet-converter.max-num-columns` (automatically shards parquet files when the number of columns
exceeds the configured limit) and the `-parquet-converter.ring.*` ring configuration
- Querier: `-querier.parquet-queryable-default-block-store`, `-querier.parquet-queryable-fallback-disabled`,
the `-querier.parquet-queryable.max-fetched-*` limits and `-querier.parquet-shard-cache-*`
- Store Gateway: `-blocks-storage.bucket-store.parquet-query-concurrency`,
`-blocks-storage.bucket-store.parquet-shard-cache-*` and the
`-blocks-storage.bucket-store.parquet-labels-cache.*` /
`-blocks-storage.bucket-store.parquet-row-ranges-cache.*` cache configuration
- Querier/Ruler: Thanos PromQL engine
- `-querier.thanos-engine` / `-ruler.thanos-engine` (boolean) CLI flags
- `-querier.enable-x-functions` / `-ruler.enable-x-functions` (boolean) CLI flags
- `-querier.optimizers` / `-ruler.optimizers` (string) CLI flags
- `-querier.decoding-concurrency` / `-ruler.decoding-concurrency` (int) CLI flags
- `-querier.selector-batch-size` / `-ruler.selector-batch-size` (int) CLI flags