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
SelectSeries always returns all time series in a single response. In many cases, only a subset of the series is actually used (for example, in Explore Profiles, we only show the top 10).
As a quick optimization, we could add a parameter that limits the number of series returned, something like:
messageLimit {
int32top_k_total=1;
}
Note that the limit should be applied in the query frontend, after all the series have been collected. Later on, we can implement a fully-fledged time-series query engine capable of handling PromQL syntax (or a subset)
The text was updated successfully, but these errors were encountered:
SelectSeries
always returns all time series in a single response. In many cases, only a subset of the series is actually used (for example, in Explore Profiles, we only show the top 10).As a quick optimization, we could add a parameter that limits the number of series returned, something like:
Note that the limit should be applied in the query frontend, after all the series have been collected. Later on, we can implement a fully-fledged time-series query engine capable of handling PromQL syntax (or a subset)
The text was updated successfully, but these errors were encountered: