You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running an aggregation like sum(metric), we can stream all series into an aggregate instead of blocking to fetch data before we start execution. The aggregate can compute values for evaluation steps one series at a time instead of one step at a time.
The reason why we can do this is because the end result will be guaranteed to have a cardinality of 1 so holding intermediary per-step aggregates in memory will be fairly cheap.
The text was updated successfully, but these errors were encountered:
When running an aggregation like
sum(metric)
, we can stream all series into an aggregate instead of blocking to fetch data before we start execution. The aggregate can compute values for evaluation steps one series at a time instead of one step at a time.The reason why we can do this is because the end result will be guaranteed to have a cardinality of 1 so holding intermediary per-step aggregates in memory will be fairly cheap.
The text was updated successfully, but these errors were encountered: