Searching and indexing priority

Hello,

generally speaking, how does Elasticsearch handles searching "priority" while indexing ?

I noticed that when someone performs a query with a timerange of multiple weeks, indexing almost halts while the query is running.
I find it odd that the indexing process can be disrupted by read queries.

Thanks,
best regards

As far as I know there is no defined or configurable priority, so reads and writes to the cluster will affect each other and compete for the same resources. A lot of use cases are more focussed on search than ingestion, so would likely make the opposite argument that ingest should be allowed to affect queries. There is therefore no defined priority that would fit everyone as it would depend a lot on the use case.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.