Skip to content
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

TimeSeriesIndexSearcher to offload to the provided executor #98414

Merged

Commits on Aug 11, 2023

  1. TimeSeriesIndexSearcher to offload to the provided executor

    We have introduced a search worker thread pool with elastic#98204 that is
    responsible for the heavy workloads as part of the query and dfs phase,
    no matter if it is parallelized across segments/slices or not. TSDB
    aggregations are still executed in the search thread pool and this
    commit moves their computation to the search worker thread pool, despite
    the corresponding search thread blocks and  waits for such computation to be
    completed before returning.
    javanna committed Aug 11, 2023
    Configuration menu
    Copy the full SHA
    e825d62 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a431310 View commit details
    Browse the repository at this point in the history
  3. adjust exception handling

    javanna committed Aug 11, 2023
    Configuration menu
    Copy the full SHA
    b61e2f6 View commit details
    Browse the repository at this point in the history