Skip to content

Commit 372f6d5

Browse files
committed
changelog
Signed-off-by: Ben Ye <[email protected]>
1 parent 2e703cf commit 372f6d5

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## master / unreleased
44
* [CHANGE] Azure Storage: Upgraded objstore dependency and support Azure Workload Identity Authentication. Added `connection_string` to support authenticating via SAS token. Marked `msi_resource` config as deprecating. #5645
55
* [CHANGE] Store Gateway: Add a new fastcache based inmemory index cache. #5619
6+
* [CHANGE] Index Cache: Multi level cache backfilling operation becomes async. Added `-blocks-storage.bucket-store.index-cache.multilevel.backfill.max-async-concurrency` and `-blocks-storage.bucket-store.index-cache.multilevel.backfill.max-async-buffer-size` configs and metric `cortex_store_multilevel_index_cache_backfill_dropped_items_total` for number of dropped items. #5661
67
* [FEATURE] Ingester: Add per-tenant new metric `cortex_ingester_tsdb_data_replay_duration_seconds`. #5477
78
* [ENHANCEMENT] Store Gateway: Added `-store-gateway.enabled-tenants` and `-store-gateway.disabled-tenants` to explicitly enable or disable store-gateway for specific tenants. #5638
89

pkg/ingester/ingester.go

+1
Original file line numberDiff line numberDiff line change
@@ -2050,6 +2050,7 @@ func (i *Ingester) createTSDB(userID string) (*userTSDB, error) {
20502050
},
20512051
true, // Allow out of order uploads. It's fine in Cortex's context.
20522052
metadata.NoneFunc,
2053+
"",
20532054
)
20542055

20552056
// Initialise the shipper blocks cache.

0 commit comments

Comments
 (0)