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
Is your feature request related to a problem? Please describe.
Similar to thanos-io/thanos#7815
If the requested time range is within the range of a chunk, then if chunks trimming enabled, Ingesters spend CPU decoding chunks and throw away samples that outside the requested time range.
This step is actually unnecessary because the query engine already drops samples that outside the requested time range so the CPU time spent on decoding chunks is wasted.
Describe the solution you'd like
Similar to thanos-io/thanos#7815, disable chunk trimming in the select hints in Ingester.
Additional context
It would be good to add a fuzzy (promqlsmith) tests to make sure disabling chunk trimming doesn't change query results.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Similar to thanos-io/thanos#7815
If the requested time range is within the range of a chunk, then if chunks trimming enabled, Ingesters spend CPU decoding chunks and throw away samples that outside the requested time range.
This step is actually unnecessary because the query engine already drops samples that outside the requested time range so the CPU time spent on decoding chunks is wasted.
Describe the solution you'd like
Similar to thanos-io/thanos#7815, disable chunk trimming in the select hints in Ingester.
Additional context
It would be good to add a fuzzy (promqlsmith) tests to make sure disabling chunk trimming doesn't change query results.
The text was updated successfully, but these errors were encountered: