Elasticsearch之index_closed_exception

索引的打开与关闭


关闭索引

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
}

以上便是索引的打开与关闭!

猜你喜欢

转载自www.cnblogs.com/ixan/p/11770535.html