본문 바로가기
ELK

[ Elasticsearch ] index state UNASSIGNED

by 정윤재 2023. 2. 9.

elasticsearch 의 cluster status 가 RED 여서 조치했던 방법을 정리 한다.

 

kibana의 dev tools 에서 

 

GET _cat/shards?v=true&h=index,shard,prirep,state,node,unassigned.reason&s=state

 

을 했더니

 

.kibana_task_manager_1 이란 index 의 상태가

state : UNASSIGNED

unassigned.reason : NODE_LEFT_ALLOCATION_FAILED

 

였다.

 

조치 방법은 kibana 의 dev tools 에

 

POST /_cluster/reroute?retry_failed=true

 

실행 해서 shard 할당을 재시도 했더니 green 상태로 정상화 되었다.


댓글