Manage large volume log streams with automatic stream sharding
Automatic stream sharding can keep streams under a desired_rate by adding new labels and values to
existing streams. When properly tuned, this can eliminate issues where log producers are rate limited due to the
per-stream rate limit.
Automatic stream sharding is enabled by default (shard_streams.enabled defaults to true). To tune it or confirm it’s on:
Check or set the global
limits_configin the Loki configuration file:limits_config: shard_streams: enabled: trueOptionally lower the
desired_ratein bytes if you find that the system is still hitting theper_stream_rate_limit:limits_config: shard_streams: enabled: true desired_rate: 2097152 #2MiBThe
desired_ratedefaults to1536KB(1.5MB), which is below the defaultper_stream_rate_limitof3MB. This gives Loki some headroom to shard a stream before it hits the per-stream rate limit.Optionally enable
time_sharding_enabledif you need to ingest old, out-of-order logs, for example during a backfill:limits_config: shard_streams: enabled: true time_sharding_enabled: true time_sharding_ignore_recent: 40mTime-based sharding adds a
__time_shard__label to streams, splitting log entries into buckets based on their timestamp. Log entries with a timestamp newer thantime_sharding_ignore_recent(40 minutes by default) are still ingested, but Loki does not add the__time_shard__label to them. This lets very old logs be ingested without triggering out-of-order errors. Refer to How automatic stream sharding works for more detail.Optionally enable
logging_enabledfor debugging stream sharding.Note
This may affect the ingestion performance of Loki.
limits_config: shard_streams: enabled: true logging_enabled: true
When to use automatic stream sharding
Large log streams present several problems for Loki, namely increased and uneven resource usage on Ingesters and Distributors. The general recommendation is to explore existing log streams for additional label values that are both useful for querying and sufficiently low cardinality. There are many cases, however, where no more labels can be extracted, or cardinality for a label is dangerously large. To protect itself from such volume leading to operational failure, Loki implements per-stream rate limits; but the result is that some data is lost. The per-stream limit also needs human intervention to change, which is not ideal when log volumes increase and decrease.
Loki uses automatic stream sharding to avoid rate limiting and large streams for any log stream by ensuring it is close
to a configured desired_rate.
How automatic stream sharding works
Loki supports two independent sharding mechanisms, rate-based sharding and time-based sharding. You can enable either one on its own, or enable both together.
Rate-based sharding
Rate-based sharding works by adding a new label, __stream_shard__, to streams and incrementing its value to try
and keep all streams below a configured desired_rate.
The feature adds a new API to Ingesters that reports the size of all existing log streams. Once per second, Distributors
query the API to get a picture of all stream rates in the system. Distributors use the existing stream-rate data and a
configured desired_rate to determine how many shards a given stream should have. The desired number of new log streams
are created with the label __stream_shard__ and logs are divided evenly among the streams.
The once-per-second query interval is a Distributor setting, not a shard_streams limit. Use the -distributor.rate-store.stream-rate-update-interval flag, or the equivalent rate_store block in the Distributor configuration, to change how often Distributors refresh their view of stream rates.
Because rate-based sharding is reactive and relies on successive calls to Ingesters, the view of current rates is
always somewhat behind. As a result, the actual size of sharded streams will always be higher than the desired_rate.
In practice, this is still sufficient to keep log producers from being rate limited by per-stream rate limits.
Time-based sharding
Time-based sharding works by adding a different label, __time_shard__, to streams. Loki calculates the value of this label from each log entry’s timestamp, divided into buckets of max_chunk_age/2. This lets Loki accept out-of-order log entries that are older than would normally be allowed, because each time bucket becomes its own stream instead of extending an existing one.
Loki does not apply time-based sharding to log entries with a timestamp newer than the configured time_sharding_ignore_recent value. Those entries are still ingested, but they keep their original labels, so that recent logs are not needlessly split into extra streams.
If you enable both rate-based sharding and time-based sharding, Loki applies time-based sharding first, and then applies rate-based sharding to each of the resulting time-sharded streams.
Automatic stream sharding metrics
Use these metrics to help tune Loki so that it is sharding streams aggressively enough to avoid the per-stream rate limit:
loki_rate_store_refresh_failures_total: The total number of failed attempts to refresh the distributor’s view of stream rates.loki_rate_store_streams: The number of unique streams reported by all Ingesters. Sharded streams are reported as if they were unsharded.loki_rate_store_max_stream_shards: The maximum number of shards for any tenant of the system.loki_rate_store_stream_shards: A histogram of the distribution of shard counts across all streams.loki_rate_store_max_stream_rate_bytes: The maximum stream size in bytes/second for any tenant of the system. Sharded streams are reported as if they are unsharded.loki_rate_store_max_unique_stream_rate_bytes: The maximum size of any stream across all tenants. Stream shards are individually reported.loki_rate_store_stream_rate_bytes: A histogram of the distribution of stream sizes across all tenants in bytes/second.loki_stream_sharding_count: The total number of times that streams have been sharded. Useful for calculating the sharding rate.


