Skip to content
This repository was archived by the owner on Apr 28, 2025. It is now read-only.

Commit 75ecb61

Browse files
authored
Merge pull request #299 from grafana/querier-1.9-deprecation
Replace use of querier.compress-http-responses removed in Cortex 1.9
2 parents 0b448e9 + 1b97112 commit 75ecb61

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
## master / unreleased
44

5+
* [CHANGE] Replace use of removed Cortex CLI flag `-querier.compress-http-responses` for query frontend with `-api.response-compression-enabled`. #299
56
* [CHANGE] The default dashboards config now display panels for the Cortex blocks storage only. If you're running Cortex chunks storage, please change `storage_engine` config to `['chunks']` or `['chunks', 'blocks']` if running both. #302
67
* [FEATURE] Added "Cortex / Rollout progress" dashboard. #289 #290
78
* [FEATURE] Added support for using query-scheduler component, which moves the queue out of query-frontend, and allows scaling up of query-frontend component. #295

cortex/query-frontend.libsonnet

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@
2626
// So that exporters like cloudwatch can still send in data and be un-cached.
2727
'frontend.max-cache-freshness': '10m',
2828

29-
// Compress HTTP responses; improves latency for very big results and slow
29+
// Use GZIP compression for API responses; improves latency for very big results and slow
3030
// connections.
31-
'querier.compress-http-responses': true,
31+
'api.response-compression-enabled': true,
3232

3333
// So it can receive big responses from the querier.
3434
'server.grpc-max-recv-msg-size-bytes': 100 << 20,

0 commit comments

Comments
 (0)