Elasticsearch의 index_closed_exception

4393 단어
색인 열기 및 닫기
색인 닫기
POST /index_name/_close

 
데이터 삽입 시도
PUT /shakespeare/_doc/1
{
"title":"kibana"
}

 
다음 오류가 발생합니다.
{
  "error": {
    "root_cause": [
      {
        "type": "index_closed_exception",
        "reason": "closed",
        "index_uuid": "vpyc3jt9TbGYFm96KUPlfw",
        "index": "shakespeare"
      }
    ],
    "type": "index_closed_exception",
    "reason": "closed",
    "index_uuid": "vpyc3jt9TbGYFm96KUPlfw",
    "index": "shakespeare"
  },
  "status": 400
}

 
색인 다시 열기
POST /index_name/_open

 
결과 반환
{
  "acknowledged": true,
  "shards_acknowledged": true
}

이상은 색인의 열기와 닫기입니다!

좋은 웹페이지 즐겨찾기