ElasticSearch REST API

2374 단어 elasticsearch
ElasticSearch API
색인 이름 표시
curl 'http://localhost:9200/_aliases?pretty=1'

모든 색인 상태 보기
curl 'http://localhost:9200/_stats?pretty=1'

클 러 스 터 인덱스 목록
curl  'http://127.0.0.1:9200/_cat/indices?pretty=1'

색인 크기 보기
curl 'http://localhost:9200/_cat/indices?bytes=kb'

get all mapping
curl -XGET 'http://localhost:9200/_mapping?pretty=1'

군집 건강 보기
curl 'http://localhost:9200/_cat/health?v'

클 러 스 터 스 레 드 풀 보기
curl 'http://localhost:9200/_cat/thread_pool?v'

디스크 사용 현황 보기
curl 'http://localhost:9200/_cat/allocation?v'

노드 건강 보기
curl 'http://127.0.0.1:9200/_cat/nodes?v'

프로 세 스 정보 보기 파일 열기,메모리 잠 금 여부 등
curl 'http://127.0.0.1:9200/_nodes/process?pretty'

군집 건강
curl -XGET 'http://localhost:9200/_cluster/health?pretty=true'

모든 노드 닫 기
curl -XPOST 'http://localhost:9200/_shutdown'

지정 한 노드 닫 기
curl -XPOST 'http://localhost:9200/_cluster/nodes/nodeId1,nodeId2/_shutdown'

지연 폐쇄
curl -XPOST 'http://localhost:9200/_cluster/nodes/_local/_shutdown?delay=10s'

Elasticsearch 클 러 스 터 에 서 는 많은 정 보 를 모니터링 하고 클 러 스 터 건강(cluster helch)을 모니터링 할 수 있 습 니 다.ES 에 서 는 세 가지 색상 상태 로 그린,옐 로 우,레 드 를 표시 합 니 다.
Green:모든 메 인 필름 과 던 전 필름 을 사용 할 수 있 습 니 다.
옐 로 우:모든 메 인 필름 을 사용 할 수 있 지만 모든 던 전 필름 을 사용 할 수 있 는 것 은 아 닙 니 다.
레 드:모든 메 인 필름 을 사용 할 수 있 는 것 은 아 닙 니 다.
자세 한 내용 은 참고 하 시기 바 랍 니 다.http://www.elasticsearch.org/guide/en/elasticsearch/guide/current/index.html
Elasticsearch 단일 컴퓨터 다 중 인 스 턴 스
su - elasticsearch -c "cd /opt/elasticsearch-1.4.2/bin;./elasticsearch -Des.config=../config/elasticsearch_node_1.yml -d"
su - elasticsearch -c "cd /opt/elasticsearch-1.4.2/bin;./elasticsearch -Des.config=../config/elasticsearch_node_2.yml -d"

보안 설정
action.disable_close_all_indices: true     #      
action.disable_delete_all_indices: true    #      
action.disable_shutdown: true              #      

좋은 웹페이지 즐겨찾기