Elasticsearch
[elasticsearch5] thread pool status
'김용환'
2017. 8. 18. 19:39
elasticsearch의 쓰레드 상태를 보려면 다음과 같은 _cat/thread_pool 를 본다.
$ curl -s http://abc.google.com:9200/_cat/thread_pool
abc.google.com bulk 7 0 784202
abc.google.com fetch_shard_started 0 0 0
abc.google.com fetch_shard_store 0 0 0
abc.google.com flush 0 0 0
abc.google.com force_merge 0 0 0
abc.google.com generic 0 0 0
abc.google.com get 0 0 0
3,4,5번째 컬럼은 active, queue, rejected를 의미한다.
bulk api thread가 더이상 요청을 받지 못해 rejected 된 현황을 보여준다.