更新索引设置 API编辑

实时更改 动态索引设置

对于数据流,索引设置更改默认情况下会应用于所有支持索引。

resp = client.indices.put_settings(
    index="my-index-000001",
    body={"index": {"number_of_replicas": 2}},
)
print(resp)
response = client.indices.put_settings(
  index: 'my-index-000001',
  body: {
    index: {
      number_of_replicas: 2
    }
  }
)
puts response
PUT /my-index-000001/_settings
{
  "index" : {
    "number_of_replicas" : 2
  }
}

请求编辑

PUT /<target>/_settings

先决条件编辑

  • 如果启用了 Elasticsearch 安全功能,则您必须对目标数据流、索引或别名具有 manage 索引权限

路径参数编辑

<target>
(可选,字符串) 用于限制请求的数据流、索引和别名的逗号分隔列表。支持通配符 (*)。要针对所有数据流和索引,请省略此参数或使用 *_all

查询参数编辑

allow_no_indices

(可选,布尔值) 如果为 false,则如果任何通配符表达式、索引别名_all 值仅针对缺失或关闭的索引,则请求将返回错误。即使请求针对其他打开的索引,此行为也适用。例如,如果索引以 foo 开头,但没有索引以 bar 开头,则针对 foo*,bar* 的请求将返回错误。

默认为 false

expand_wildcards

(可选,字符串) 通配符模式可以匹配的索引类型。如果请求可以针对数据流,则此参数确定通配符表达式是否匹配隐藏的数据流。支持逗号分隔的值,例如 open,hidden。有效值为

all
匹配任何数据流或索引,包括 隐藏 的数据流或索引。
open
匹配打开的、非隐藏的索引。还匹配任何非隐藏的数据流。
closed
匹配关闭的、非隐藏的索引。还匹配任何非隐藏的数据流。数据流无法关闭。
hidden
匹配隐藏的数据流和隐藏的索引。必须与 openclosed 或两者结合使用。
none
不接受通配符模式。

默认为 open

flat_settings
(可选,布尔值) 如果为 true,则以扁平格式返回设置。默认为 false
ignore_unavailable
(可选,布尔值) 如果为 false,则如果请求针对缺失或关闭的索引,则请求将返回错误。默认为 false
preserve_existing
(可选,布尔值) 如果为 true,则现有的索引设置保持不变。默认为 false
reopen
(可选,布尔值) 如果为 true,则任何通常仅在关闭的索引上更新的静态设置将通过自动关闭和重新打开受影响的索引来更新。如果为 false,则尝试在打开的索引上更新静态设置将失败。默认为 false

使用 reopen 参数在自动关闭的索引上更改索引设置会导致索引在重新打开过程中暂时不可用。

master_timeout
(可选,时间单位) 等待主节点的时间段。如果在超时时间到期之前主节点不可用,则请求失败并返回错误。默认为 30s。也可以设置为 -1,表示请求永远不会超时。
timeout
(可选,时间单位) 等待响应的时间段。如果在超时时间到期之前没有收到响应,则请求失败并返回错误。默认为 30s

请求主体编辑

settings
(可选,索引设置对象) 索引的配置选项。见 索引设置

示例编辑

重置索引设置编辑

要将设置恢复为默认值,请使用 null。例如

resp = client.indices.put_settings(
    index="my-index-000001",
    body={"index": {"refresh_interval": None}},
)
print(resp)
response = client.indices.put_settings(
  index: 'my-index-000001',
  body: {
    index: {
      refresh_interval: nil
    }
  }
)
puts response
PUT /my-index-000001/_settings
{
  "index" : {
    "refresh_interval" : null
  }
}

可以在 索引模块 中找到可以在活动索引上动态更新的每个索引设置的列表。要保留现有设置不被更新,可以将 preserve_existing 请求参数设置为 true

批量索引使用编辑

例如,更新设置 API 可用于动态更改索引,使其更适合批量索引,然后将其移至更实时的索引状态。在开始批量索引之前,请使用

resp = client.indices.put_settings(
    index="my-index-000001",
    body={"index": {"refresh_interval": "-1"}},
)
print(resp)
response = client.indices.put_settings(
  index: 'my-index-000001',
  body: {
    index: {
      refresh_interval: '-1'
    }
  }
)
puts response
PUT /my-index-000001/_settings
{
  "index" : {
    "refresh_interval" : "-1"
  }
}

(另一个优化选项是在没有副本的情况下启动索引,然后才添加副本,但这确实取决于用例)。

然后,完成批量索引后,可以更新设置(例如,恢复为默认值)

resp = client.indices.put_settings(
    index="my-index-000001",
    body={"index": {"refresh_interval": "1s"}},
)
print(resp)
response = client.indices.put_settings(
  index: 'my-index-000001',
  body: {
    index: {
      refresh_interval: '1s'
    }
  }
)
puts response
PUT /my-index-000001/_settings
{
  "index" : {
    "refresh_interval" : "1s"
  }
}

并且,应该调用强制合并

resp = client.indices.forcemerge(
    index="my-index-000001",
    max_num_segments="5",
)
print(resp)
response = client.indices.forcemerge(
  index: 'my-index-000001',
  max_num_segments: 5
)
puts response
POST /my-index-000001/_forcemerge?max_num_segments=5

更新索引分析编辑

您只能在关闭的索引上定义新的分析器。

要添加分析器,您必须关闭索引,定义分析器,然后重新打开索引。

您无法关闭数据流的写入索引。

要更新数据流写入索引和未来支持索引的分析器,请在 流使用的索引模板 中更新分析器。然后 滚动数据流 以将新的分析器应用于流的写入索引和未来支持索引。这会影响搜索以及滚动后添加到流中的任何新数据。但是,它不会影响数据流的支持索引或其现有数据。

要更改现有支持索引的分析器,您必须创建一个新的数据流并将您的数据重新索引到其中。见 使用重新索引更改映射或设置

例如,以下命令将 content 分析器添加到 my-index-000001 索引

resp = client.indices.close(
    index="my-index-000001",
)
print(resp)

resp = client.indices.put_settings(
    index="my-index-000001",
    body={
        "analysis": {
            "analyzer": {
                "content": {"type": "custom", "tokenizer": "whitespace"}
            }
        }
    },
)
print(resp)

resp = client.indices.open(
    index="my-index-000001",
)
print(resp)
response = client.indices.close(
  index: 'my-index-000001'
)
puts response

response = client.indices.put_settings(
  index: 'my-index-000001',
  body: {
    analysis: {
      analyzer: {
        content: {
          type: 'custom',
          tokenizer: 'whitespace'
        }
      }
    }
  }
)
puts response

response = client.indices.open(
  index: 'my-index-000001'
)
puts response
POST /my-index-000001/_close

PUT /my-index-000001/_settings
{
  "analysis" : {
    "analyzer":{
      "content":{
        "type":"custom",
        "tokenizer":"whitespace"
      }
    }
  }
}

POST /my-index-000001/_open