Bulk queue exceeding limit

I am running ElasticSearch 5.2.0. I noticed the queue for the bulk thread is exceeding the limit. My understanding from showing the thread stats that the queue_size column is the max number of entries in the queue and the queue column contains the number of items currently in the queue. Why does the queue column report 947 items? Shouldn't it be capped at 50?

curl -X GET "localhost:9200/_cat/thread_pool?v&h=host,id,name,type,active,size,queue,queue_size,rejected,largest,completed,min,max,keep_alive"

host          id                     name type  active size queue queue_size rejected largest completed min max keep_alive
10.254.76.236 D8okUgVXTrCCvPO9QgNTFA bulk fixed      4    4     6         50   111072       4  12799446   4   4
10.254.76.222 Dvon5st7SM2YdtWd_mBcUw bulk fixed      4    4   947         50   131537       4  11340119   4   4

The link below contains the descriptions of the fields:

https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-thread-pool.html

Thanks,
Roy

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