码迷,mamicode.com
首页 > 其他好文 > 详细

Elasticsearch之index_closed_exception

时间:2019-10-31 13:42:25      阅读:336      评论:0      收藏:0      [点我收藏+]

标签:class   type   doc   pre   col   style   err   索引   reason   

索引的打开与关闭


关闭索引

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
}

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

Elasticsearch之index_closed_exception

标签:class   type   doc   pre   col   style   err   索引   reason   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!