-
Notifications
You must be signed in to change notification settings - Fork 8.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Task Manager] Workload aggregation caps out at 10k tasks #98624
Comments
Pinging @elastic/kibana-alerting-services (Team:Alerting Services) |
From the example that was provided:
It looks like the aggregation is running over all the data but the count that is returned is 10,000 which is the max number returned when @gmmorris Should this issue just be to update the count value to reflect the actual number of documents? |
Oh, my first thought when I saw mention of this was that the problem was the agg was only returning 10 terms (task types), rather than all of them. But I wasn't listening all that closely. I do remember hearing that there were task types we expected to see in the list, that we didn't, so ... somehow we're missing some buckets ... Ah, just saw the linked PR and can see that is being addressed! |
yeah, indeed.
and yay :) |
Kibana version: 7.12.0
It seems the aggregation caps out at 10,000 tasks, which means that the aggregation is probably hitting a page and we'er not fetching it.
Task Types are definitely missing in the list when this happens, so we're not providing an accurate image of the workload.
The text was updated successfully, but these errors were encountered: