Elasticsearch - 클러스터, 샤드, 인덱스 상태 확인하기
2020. 8. 25. 12:02ㆍSearch-Engine/Elasticsearch&Solr
오늘은 간단하게 클러스터 모니터링을 위한 API 몇개를 정리해본다.
- http://es-host:9200/_cat/allocation?v -> 클러스터 디스크 현황
- http://es-host:9200/_cluster/health?pretty -> 클러스터 헬스체크
- http://es-host:9200/_cat/indices?v -> 인덱스 상태 확인
- http://es-host:9200/_cat/shards -> 모든 샤드 상태 확인
- http://es-host:9200/_cat/shards/{index_name}?v -> 특정 인덱스의 샤드 상태확인
https://brunch.co.kr/@alden/43
'Search-Engine > Elasticsearch&Solr' 카테고리의 다른 글
Elasticsearch - 퍼포먼스 튜닝하는 방법 by ebay (1) | 2020.08.19 |
---|---|
Elasticsearch - Elasticsearch custom docker image 빌드(엘라스틱서치 커스텀 도커 이미지 생성) (0) | 2020.04.16 |
Elasticsearch - 한글 자동완성(Nori Analyzer, Ngram, Edge Ngram) (1) | 2020.04.09 |
Elasticsearch - Aggregation API(엘라스틱서치 집계,파이프라인(Pipeline Aggregations) 집계) -3 (0) | 2019.09.20 |
Elasticsearch - Aggregation API(엘라스틱서치 집계,버킷(Bucket Aggregations) 집계) -2 (1) | 2019.09.20 |