Elasticsearch:如何把一个索引变为只读

2023年2月12日   |   by mebius

将索引设置为只读可能听起tgcode来很奇怪,但在 Elasticsearch 中执行此类操作是可能的。想象一下这样一种情况,你特别需要限制对索引的写入操作,无论是维护、业务规则还是任何其他原因。让我们学习如何将索引配置为已读以及如何撤消操作。

我们先使用如下的命令来创建一个叫做 test 的索引:

PUT test/_doc/1
{
  "content": "I am xiaoguo from Elastic"
}

设置为只读

要进行此更改,我们需要更新索引设置。 下面的命令将使索引成为只读的。

PUT /test/_settings
{
  "index": {
    "blocks": {
      "write": true
    }
  }
}

执行完上面的命令后,我们可以再接着创建一个如下的一个文档:

PUT test/_doc/2
{
  "conttgcodeent": "I am an evangelist as well"
}

我们可以看到如下的一个响应:

{
  "error": {
    "root_cause": [
      {
        "type": "cluster_block_exception",
        "reason": "index [test] blocked by: [FORBIDDEN/8/index write (api)];"
      }
    ],
    "type": "cluster_block_exception",
    "reason": "index [test] blocked by: [FORBIDDEN/8/index write (api)];"
  },
  "status": 403
}

要恢复只需将状态从 true 更改为 false。我们试着运行如下的命令:

PUT /test/_settings
{
  "index": {
    "blocks": {
      "write": false
    }
  }
}

我们再次写入我们想要的文档。我们可以看到这次的写入是成功的:

PUT test/_doc/2
{
  "content": "I am an evangelist as well"
}

上面的响应为:

{
  "_index": "test",
  "_id": "2",
  "_version": 1,
  "result": "created",
  "_shards": {
    "total": 2,
    "successful": 1,
    "failed": 0
  },
  "_seq_no": 1,
  "_primary_term": 1
}

希望这个能帮助到你。

文章来源于互联网:Elasticsetgcodearch:如何把一个索引变为只读

相关推荐: Elasticsearch:如何在 Elasticsearch 中搜索空值

根据 Elasticsearch 文档,无法索引或搜索空值 null。 当一个字段设置为 null(或空数组或空值数组)时,它被视为该字段没有值。 那么如何找到product_name 为空(null)的文件呢? 选项 1:null_value 映射参数 你可…

Tags: