1. 전체 cluster health 체크
http://localhost:9200/_cluster/health?pretty
status : green,yellow,red
active_primary_shards : primary shard 수
active_shards : primary + replica
initializing_shards : restart후 disk에서 읽은 shards 수
unassigned_shards : cluster노드에 수가 적든 무슨원인으로 아직 할당 못한 shard
number_of_pending_tasks : 아직 수행못한 변경
http://localhost:9200/_cluster/health?pretty&level=indics
위에 cluster에서 문제 발생시 index 레벨에서 문제 확인
2. 노드 통계 체크
http://localhost:9200/_nodes/stats?pretty&all=true
(클러스터 이름/색인/운영체제/JVM...)
3. 클러스터 상태 체크
http://localhost:9200/_cluster/state?pretty
4. 이슈 쓰레드 확인
http://localhost:9200/_nodes/hot_threads?pretty
5. 큐 태스트 확인
http://localhost:9200/_cluster/pending_tasks?pertty
5. Field 통계 정보 확인
curl -XGET "http://localhost:9200/_field_stats?fields=rating, answer_count"
{
"_shards": {
"total": 1,
"successful": 1,
"failed": 0
},
"indices": {
"_all": {
"fields": {
"creation_date": {
"max_doc": 1326564,
"doc_count": 564633,
"density": 42,
"sum_doc_freq": 2258532,
"sum_total_term_freq": -1,
"min_value": "2008-08-01T16:37:51.513Z",
"max_value": "2013-06-02T03:23:11.593Z"
}
'NoSQL > Elasticsearch' 카테고리의 다른 글
elasticsearch hw 및 config 설정 (0) | 2016.06.21 |
---|---|
elasticsearch snapshot and restore (0) | 2016.06.15 |
elsticsearch 성능 (0) | 2016.06.15 |
elasticsearch optimize api (0) | 2016.06.15 |
elasticsearch warmers (0) | 2016.06.15 |