-
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
Allow backgrounding complex kibana search tasks RFC #97825
Comments
Pinging @elastic/kibana-app-services (Team:AppServices) |
@ppisljar can you help me understand how this manifests itself to users right now? Can you describe a scenario to explain the limitation this would address? |
searchsource can do multiple subrequests (for histogram, figuring out min and max and for terms other bucket), maps does multiple searchsource requests to get the data, inside an expression you can do any number of requests. none of this can be correctly backgrounded right now and this will allow for backgrounding any of those. (in context of backgrounding search sessions) |
possibly blocked by: #111418 |
Added new use-case: cc @kertal |
I think this would also block making kibana/x-pack/plugins/canvas/server/lib/essql_strategy.ts Lines 62 to 63 in 28eb46d
Alternatively, maybe elasticsearch could remove a limitation of |
Pinging @elastic/kibana-data-discovery (Team:DataDiscovery) |
Closing this because it's not planned to be resolved in the foreseeable future. It will be tracked in our Icebox and will be re-opened if our priorities change. Feel free to re-open if you think it should be melted sooner. |
With search sessions its possible to send a set of searches to background and restore them at a later time (when they are complete). This only works for simple searches against elasticsearch and doesn't work for the cases when at the time of storing the session not all searches have started.
This can happen in many places, some of them include:
In order to support that we would need to allow backgrounding complex tasks:
Related:
The text was updated successfully, but these errors were encountered: