Thread pool reference(official)
with respect to the above reference, I have a few questions
- For search request: If my index has 2 shards, how many threads will it need
- For bulk/write request: If my index has 2 shards, how many threads will it need
- Does write & search request have dedicated threads? i.e no.of search request does not effect write threads/thread queue
- If a thread is writing to "Index_1" does it create a lock on the index? If I have a parallel search request on the same index, will it have to wait until the write operation is completed?