rpc error: code = Code(429) #3292
Answered
by
56quarters
zhuw0312
asked this question in
Help and support
-
mimir version2.3.1 config file
get error
question
|
Beta Was this translation helpful? Give feedback.
Answered by
56quarters
Oct 24, 2022
Replies: 1 comment
-
There are docs here: https://grafana.com/docs/mimir/latest/operators-guide/mimir-runbooks/#err-mimir-tenant-max-ingestion-rate The expected ingestion rate can be determined by: |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
pracucci
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There are docs here: https://grafana.com/docs/mimir/latest/operators-guide/mimir-runbooks/#err-mimir-tenant-max-ingestion-rate
The expected ingestion rate can be determined by:
ingestion_rate = number_of_series / scrape_interval_in_seconds
. So for example, if you have 150K series and a scrape interval of 60s, your ingestion rate would be150000 / 60 = 2500
. Burst is typically set to 10x the ingestion rate.