"Elasticsearch API / cluster/health"의 두 판 사이의 차이

(새 문서: ==개요== ;Elasticsearch - Cluster health API ;Elasticsearch API cluster/health <source lang='console'> $ curl -u elastic:elastic localhost:9200/_cluster/health { "cluster_name"...)
 
잔글 (Jmnote님이 Elasticsearch API cluster health 문서를 Elasticsearch API cluster/health 문서로 이동했습니다)
(차이 없음)

2019년 10월 23일 (수) 14:29 판

1 개요

Elasticsearch - Cluster health API
Elasticsearch API cluster/health
$ curl -u elastic:elastic localhost:9200/_cluster/health
{
  "cluster_name" : "testcluster",
  "status" : "yellow",
  "timed_out" : false,
  "number_of_nodes" : 1,
  "number_of_data_nodes" : 1,
  "active_primary_shards" : 1,
  "active_shards" : 1,
  "relocating_shards" : 0,
  "initializing_shards" : 0,
  "unassigned_shards" : 1,
  "delayed_unassigned_shards": 0,
  "number_of_pending_tasks" : 0,
  "number_of_in_flight_fetch": 0,
  "task_max_waiting_in_queue_millis": 0,
  "active_shards_percent_as_number": 50.0
}
$ curl -u elastic:elastic localhost:9200/_cluster/health
{
  "cluster_name": "testcluster",
  "status": "yellow",
  "timed_out": false,
  "number_of_nodes": 1,
  "number_of_data_nodes": 1,
  "active_primary_shards": 41,
  "active_shards": 41,
  "relocating_shards": 0,
  "initializing_shards": 0,
  "unassigned_shards": 39,
  "delayed_unassigned_shards": 0,
  "number_of_pending_tasks": 0,
  "number_of_in_flight_fetch": 0,
  "task_max_waiting_in_queue_millis": 0,
  "active_shards_percent_as_number": 51.24999999999999
}

2 같이 보기

3 참고

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}