Elasticsearch之index_closed_exception

Posted ixan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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
}

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

以上是关于Elasticsearch之index_closed_exception的主要内容,如果未能解决你的问题,请参考以下文章

elasticsearch入门到放弃之elasticsearch-head

ElasticSearch系列之什么是ElasticSearch?

运维实操——日志分析系统ELK(上)之elasticsearch

日志分析系统ELK之Elasticsearch

日志分析系统ELK之Elasticsearch

elasticsearch之python操作(非原生)