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 된 현황을 보여준다.
'Elasticsearch' 카테고리의 다른 글
[elasticsearch5] queue size 변경 (0) | 2017.08.22 |
---|---|
[elasticsearch] 쿼리 취소하기 (0) | 2017.08.21 |
[elasticsearch] indices.fielddata.cache.expire 설정 (0) | 2017.08.02 |
[elasticsearch1.x] 메모리 구조 - 펌글 (0) | 2017.08.02 |
[elasticsearch5] 핫 스레드 (hot thread) api (0) | 2017.07.31 |