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
The new search service was built in the new platform data plugin here: #46742. We need to add support in the new search service and querying rollups and frozen indices.
We will create a new EnhancedData plugin with an EnhancedSearch service. It will override the existing strategy registered with ES_SEARCH_STRATEGY (yet still be able to access the internal implementation to avoid code duplication) and enhance the strategy with the following behavior:
Send the ignore_throttled parameter based on the search:includeFrozen UI setting
Query the _rollup_search endpoint (instead of _search) if the given index pattern has type: 'rollup'.
Remove the code in the rollups plugin that adds a search strategy to the legacy search mechanism.
The text was updated successfully, but these errors were encountered:
Background
The new search service was built in the new platform data plugin here: #46742. We need to add support in the new search service and querying rollups and frozen indices.
See also #50953, #52352.
Implementation
We will create a new
EnhancedData
plugin with anEnhancedSearch
service. It will override the existing strategy registered withES_SEARCH_STRATEGY
(yet still be able to access the internal implementation to avoid code duplication) and enhance the strategy with the following behavior:ignore_throttled
parameter based on thesearch:includeFrozen
UI setting_rollup_search
endpoint (instead of_search
) if the given index pattern hastype: 'rollup'
.rollups
plugin that adds a search strategy to the legacy search mechanism.The text was updated successfully, but these errors were encountered: