File tree Expand file tree Collapse file tree 3 files changed +9
-7
lines changed Expand file tree Collapse file tree 3 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
33## master / unreleased
4+ * [ CHANGE] Add default instance max series for ingesters
5+ * [ CHANGE] Add default instance max inflight pushes for distributors
46* [ CHANGE] Remove mem-ballast from distributor and querier.
57* [ CHANGE] Increase cpu requests for querier to 2.
68* [ CHANGE] Configure default GOMAXPROCS and GOMEMLIMIT for all cortex modules
Original file line number Diff line number Diff line change 395395 ingester_stream_chunks_when_using_blocks: true ,
396396
397397 // Ingester limits are put directly into runtime config, if not null. Available limits:
398- // ingester_instance_limits: {
399- // max_inflight_push_requests: 0, // Max inflight push requests per ingester. 0 = no limit.
400- // max_ingestion_rate: 0, // Max ingestion rate (samples/second) per ingester. 0 = no limit.
401- // max_series: 0, // Max number of series per ingester. 0 = no limit.
402- // max_tenants: 0, // Max number of tenants per ingester. 0 = no limit.
403- // },
404- ingester_instance_limits: null ,
398+ ingester_instance_limits: {
399+ // max_inflight_push_requests: 0, // Max inflight push requests per ingester. 0 = no limit.
400+ // max_ingestion_rate: 0, // Max ingestion rate (samples/second) per ingester. 0 = no limit.
401+ max_series: 4.8e+6 , // Max number of series per ingester. 0 = no limit. 4.8 million is closely tied to 15Gb in requests per ingester
402+ // max_tenants: 0, // Max number of tenants per ingester. 0 = no limit.
403+ },
405404 },
406405
407406 local configMap = $.core.v1.configMap,
Original file line number Diff line number Diff line change 3131 // Do not extend the replication set on unhealthy (or LEAVING) ingester when "unregister on shutdown"
3232 // is set to false.
3333 'distributor.extend-writes' : $._config.unregister_ingesters_on_shutdown,
34+ 'distributor.instance-limits.max-inflight-push-requests' : 60 , //60 is very conservative to protect the distributor from OOMs
3435 },
3536
3637 distributor_env_map:: {
You can’t perform that action at this time.
0 commit comments