Too Many Requests: ingestion rate limit (50000) exceeded while adding 500 samples #2081
-
Which Parameter should I increase? Too Many Requests: ingestion rate limit (50000) exceeded while adding 500 samples and 0 metadata my config: mimir:
config: |
multitenancy_enabled: false
limits:
max_label_names_per_series: 200
max_global_series_per_user: 1000000000
ingestion_burst_size: 200000
ingestion_rate: 150000
max_global_series_per_metric: 200000000
Log of Prometheus Pod
And Also Alert
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
You need to increase this per-tenant limit (see doc):
The global |
Beta Was this translation helpful? Give feedback.
You need to increase this per-tenant limit (see doc):
The global
ingestion_rate: 150000
rate limit is implemented as a local per-distributor rate limit, where each distributor limit is set tolimit / number of distributors
. Since the reported value is 50000, I assume you're running 3 distributors. I understand it's a bit confusing, and we'll fix it. Anyway, that's the limit to increase.