I'm monitoring the elasticsearch cluster while bulk importing data.
So when I run curl localhost:9200/_cat/thread_pool?v
it shows:
host ip bulk.active bulk.queue bulk.rejected index.active index.queue index.rejected search.active search.queue search.rejected
xye@OptiPlex 127.0.0.1 8 6 0 0 0 0 0 0 0
I'm current running 5 scripts concurrently to import the data and the bulk size is 500 and I also increased the bulk queue size too 300.
So I'm wondering what bulk.queue 6 means. Is it just 6 documents in one bulk operation or it is actually 6 bulk requests which is 6 * 500 = 3000 documents?