-
Notifications
You must be signed in to change notification settings - Fork 8.3k
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
Increase Kibana responsiveness #14655
Comments
@alepuccetti the new TSVB visualization already does 1 request per visualization |
@shaharmor Good to know but what about the other visualizations? If you have a dashboard with visualizations (not TSVB or timelion) the dashboard view do a single
In this scenario, having a loading bar per visualization will be useful to see which visualization returned an which did not. Also, the user could start looking to some of the data while other visualizations load. A possible side effect is that: If the date format use |
@stacey-gammon Is there already an issue for more robust handling of dashboard searches? I could have sworn there was, but I can't find it. |
Ah yep, I filed #14750 shortly after this one was filed. |
@alepuccetti Thanks for opening this issue. While #14750 is newer than this, I'm going to close this issue in favor of that one since there is some more discussion going on in that other issue. |
Describe the feature:
When you have many visualizations (especially using aggregations) in a dashboard the loading time could get very high. Kibana uses a single _msearch to return all the queries results this bounds the return time to the slowest query.
Few ideas:
_msearch
and have multiple calls of_msearch
.2.2 To the extreme: one query per visualization (this may impact Elasticsearch performances?).
The text was updated successfully, but these errors were encountered: