You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remove config options deprecated in Cortex 1.6 (#4101)
* Remove config options deprecated in Cortex 1.6
Signed-off-by: Marco Pracucci <[email protected]>
* Marked some features as stable
Signed-off-by: Marco Pracucci <[email protected]>
Copy file name to clipboardExpand all lines: CHANGELOG.md
+9
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,15 @@
11
11
*`-alertmanager.cluster.advertise-address` instead of `-cluster.advertise-address`
12
12
*`-alertmanager.cluster.peers` instead of `-cluster.peer`
13
13
*`-alertmanager.cluster.peer-timeout` instead of `-cluster.peer-timeout`
14
+
*[CHANGE] Blocks storage: removed the config option `-blocks-storage.bucket-store.index-cache.postings-compression-enabled`, which was deprecated in Cortex 1.6. Postings compression is always enabled. #4101
15
+
*[CHANGE] Querier: removed the config option `-store.max-look-back-period`, which was deprecated in Cortex 1.6 and was used only by the chunks storage. You should use `-querier.max-query-lookback` instead. #4101
16
+
*[CHANGE] Query Frontend: removed the config option `-querier.compress-http-responses`, which was deprecated in Cortex 1.6. You should use`-api.response-compression-enabled` instead. #4101
17
+
*[FEATURE] The following features have been marked as stable: #4101
18
+
- Shuffle-sharding
19
+
- Querier support for querying chunks and blocks store at the same time
20
+
- Tracking of active series and exporting them as metrics (`-ingester.active-series-metrics-enabled` and related flags)
21
+
- Blocks storage: lazy mmap of block indexes in the store-gateway (`-blocks-storage.bucket-store.index-header-lazy-loading-enabled`)
22
+
- Ingester: close idle TSDB and remove them from local disk (`-blocks-storage.tsdb.close-idle-tsdb-timeout`)
14
23
*[FEATURE] Memberlist: add TLS configuration options for the memberlist transport layer used by the gossip KV store. #4046
f.BoolVar(&cfg.Insecure, prefix+"s3.insecure", false, "Disable https on s3 connection.")
105
105
106
-
// TODO Remove in Cortex 1.9.0
106
+
// TODO Remove in Cortex 1.10.0
107
107
f.BoolVar(&cfg.SSEEncryption, prefix+"s3.sse-encryption", false, "Enable AWS Server Side Encryption [Deprecated: Use .sse instead. if s3.sse-encryption is enabled, it assumes .sse.type SSE-S3]")
cfg.WriteDedupeCacheConfig.RegisterFlagsWithPrefix("store.index-cache-write.", "Cache config for index entry writing. ", f)
79
75
80
76
f.Var(&cfg.CacheLookupsOlderThan, "store.cache-lookups-older-than", "Cache index entries older than this period. 0 to disable.")
81
-
f.Var(&cfg.MaxLookBackPeriod, "store.max-look-back-period", "Deprecated: use -querier.max-query-lookback instead. Limit how long back data can be queried. This setting applies to chunks storage only.") // To be removed in Cortex 1.8.
f.BoolVar(&cfg.CompressResponses, "querier.compress-http-responses", false, "This flag is about to be deprecated. Please use -api.response-compression-enabled instead.")
36
-
37
31
f.StringVar(&cfg.DownstreamURL, "frontend.downstream-url", "", "URL of downstream Prometheus.")
f.BoolVar(&cfg.PostingsCompression, prefix+"postings-compression-enabled", false, "Deprecated: compress postings before storing them to postings cache. This option is unused and postings compression is always enabled.") // TODO remove in v1.8.0.
0 commit comments