-
Notifications
You must be signed in to change notification settings - Fork 832
Open
Labels
Description
Suppose someone creates a rule, either recording rule or alert, that generates 100,000 output series.
Currently, all series will be sent in one request, which will hit the distributor rate-limit (defaults to 50,000 burst size) and be dropped.
This creates problems:
- ruler consumes a lot of CPU and memory
- it's hard for the operator hard to figure out what happened. The log line (
caller=manager.go:539 msg="rule sample appending failed" err="rpc error: code = Code(429) desc = ingestion rate limit (50000) exceeded while adding 100000 samples"
) doesn't include the tenant ID - it's completely invisible to the user of the tenant
I'm thinking ruler should cap the size of its output, and generate some signal (a synthetic series, perhaps?) that can be used to know when the cap was hit.
If we want to handle outputs from rules in the hundreds of thousands, we should batch them up so they don't choke the distributor.
The channel to alertmanager is also limited: caller=notifier.go:371 msg="Alert batch larger than queue capacity, dropping alerts" num_dropped=30973