Skip to content

Commit f6a6b41

Browse files
committed
CHANGELOG.
1 parent f1ab684 commit f6a6b41

File tree

4 files changed

+15
-0
lines changed

4 files changed

+15
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@
6767
* [ENHANCEMENT] Usage tracker: `loadSnapshot()` checks shard emptiness instead of using explicit `first` parameter. #13534
6868
* [ENHANCEMENT] OTLP: Add metric `cortex_distributor_otlp_requests_by_content_type_total` to track content type (json or proto) of OTLP packets. #13525
6969
* [ENHANCEMENT] OTLP: Add experimental metric `cortex_distributor_otlp_array_lengths` to better understand the layout of OTLP packets in practice. #13525
70+
* [ENHANCEMENT] Add experimental flag `common.instrument-reference-leaks-pct` to leaked references to gRPC buffers. #13609
7071
* [BUGFIX] Compactor: Fix potential concurrent map writes. #13053
7172
* [BUGFIX] Query-frontend: Fix issue where queries sometimes fail with `failed to receive query result stream message: rpc error: code = Canceled desc = context canceled` if remote execution is enabled. #13084
7273
* [BUGFIX] Query-frontend: Fix issue where query stats, such as series read, did not include the parameters to the `histogram_quantile` and `histogram_fraction` functions if remote execution was enabled. #13084

cmd/mimir/config-descriptor.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20749,6 +20749,17 @@
2074920749
],
2075020750
"fieldValue": null,
2075120751
"fieldDefaultValue": null
20752+
},
20753+
{
20754+
"kind": "field",
20755+
"name": "instrument_ref_leaks_pct",
20756+
"required": false,
20757+
"desc": "Percentage of buffers from pools to instrument for reference leaks. 0 to disable.",
20758+
"fieldValue": null,
20759+
"fieldDefaultValue": 0,
20760+
"fieldFlag": "common.instrument-reference-leaks-pct",
20761+
"fieldType": "float",
20762+
"fieldCategory": "experimental"
2075220763
}
2075320764
],
2075420765
"fieldValue": null,

cmd/mimir/help-all.txt.tmpl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -857,6 +857,8 @@ Usage of ./cmd/mimir/mimir:
857857
TSDB WAL segments files max size (bytes). (default 134217728)
858858
-common.client-cluster-validation.label string
859859
[experimental] Primary cluster validation label.
860+
-common.instrument-reference-leaks-pct float
861+
[experimental] Percentage of buffers from pools to instrument for reference leaks. 0 to disable.
860862
-common.storage.azure.account-key string
861863
Azure storage account key. If unset, Azure managed identities will be used for authentication instead.
862864
-common.storage.azure.account-name string

operations/mimir/mimir-flags-defaults.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1473,6 +1473,7 @@
14731473
"common.storage.swift.request-timeout": 5000000000,
14741474
"common.storage.filesystem.dir": "",
14751475
"common.client-cluster-validation.label": "",
1476+
"common.instrument-reference-leaks-pct": 0,
14761477
"timeseries-unmarshal-caching-optimization-enabled": true,
14771478
"cost-attribution.eviction-interval": 1200000000000,
14781479
"cost-attribution.registry-path": "",

0 commit comments

Comments
 (0)