Elasticsearch之index_closed_exception

时间:2019-10-31 13:41:10   收藏:0   阅读:899

索引的打开与关闭


关闭索引

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
}

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

原文:https://www.cnblogs.com/ixan/p/11770535.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!