重新加载搜索分析器 API

编辑

重新加载搜索分析器 API编辑

重新加载索引的 搜索分析器 及其资源。对于数据流,API 会重新加载数据流的后台索引的搜索分析器和资源。

response = client.indices.reload_search_analyzers(
  index: 'my-index-000001'
)
puts response

response = client.indices.clear_cache(
  index: 'my-index-000001',
  request: true
)
puts response
POST /my-index-000001/_reload_search_analyzers
POST /my-index-000001/_cache/clear?request=true

重新加载搜索分析器后,您应该清除请求缓存,以确保它不包含从先前版本的分析器派生的响应。

请求编辑

POST /<target>/_reload_search_analyzers

GET /<target>/_reload_search_analyzers

先决条件编辑

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

描述编辑

您可以使用重新加载搜索分析器 API 来获取 搜索分析器synonym_graphsynonym 标记过滤器中使用的同义词文件的更改。要符合条件,标记过滤器必须具有 trueupdateable 标志,并且只能在搜索分析器中使用。

此 API 不会为索引的每个分片执行重新加载。相反,它会为包含索引分片的每个节点执行重新加载。因此,API 返回的总分片数可能与索引分片的数量不同。

因为重新加载会影响每个具有索引分片的节点,所以在使用此 API 之前,务必更新集群中每个数据节点上的同义词文件,包括不包含分片副本的节点。这可确保在将来重新定位分片的情况下,集群中所有位置的同义词文件都已更新。

路径参数编辑

<target>
(必填,字符串)用于限制请求的数据流、索引和别名的逗号分隔列表。支持通配符 (*)。要定位所有数据流和索引,请使用 *_all

查询参数编辑

allow_no_indices

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

默认为 true

expand_wildcards

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

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

默认为 open

ignore_unavailable
(可选,布尔值)如果为 false,则如果请求定位到缺少或关闭的索引,则请求将返回错误。默认为 false

示例编辑

使用 创建索引 API 创建一个索引,该索引的搜索分析器包含可更新的同义词过滤器。

使用以下分析器作为索引分析器会导致错误。

response = client.indices.create(
  index: 'my-index-000001',
  body: {
    settings: {
      index: {
        analysis: {
          analyzer: {
            my_synonyms: {
              tokenizer: 'whitespace',
              filter: [
                'synonym'
              ]
            }
          },
          filter: {
            synonym: {
              type: 'synonym_graph',
              synonyms_path: 'analysis/synonym.txt',
              updateable: true
            }
          }
        }
      }
    },
    mappings: {
      properties: {
        text: {
          type: 'text',
          analyzer: 'standard',
          search_analyzer: 'my_synonyms'
        }
      }
    }
  }
)
puts response
PUT /my-index-000001
{
  "settings": {
    "index": {
      "analysis": {
        "analyzer": {
          "my_synonyms": {
            "tokenizer": "whitespace",
            "filter": [ "synonym" ]
          }
        },
        "filter": {
          "synonym": {
            "type": "synonym_graph",
            "synonyms_path": "analysis/synonym.txt",  
            "updateable": true                        
          }
        }
      }
    }
  },
  "mappings": {
    "properties": {
      "text": {
        "type": "text",
        "analyzer": "standard",
        "search_analyzer": "my_synonyms"              
      }
    }
  }
}

包含同义词文件。

将标记过滤器标记为可更新。

将分析器标记为搜索分析器。

更新同义词文件后,使用 分析器重新加载 API 重新加载搜索分析器并获取文件更改。

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

API 返回以下响应。

{
  "_shards": {
    "total": 2,
    "successful": 2,
    "failed": 0
  },
  "reload_details": [
    {
      "index": "my-index-000001",
      "reloaded_analyzers": [
        "my_synonyms"
      ],
      "reloaded_node_ids": [
        "mfdqTXn_T7SGr2Ho2KT8uw"
      ]
    }
  ]
}