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 }
以上便是索引的打开与关闭!
作者:努力为明天
-------------------------------------------
个性签名:独学而无友,则孤陋而寡闻。做一个灵魂有趣的人!
如果觉得这篇文章对你有小小的帮助的话,记得在右下角点个“推荐”哦,博主在此感谢!