Reloads an index's search analyzers and their resources Added in 7.3.0
Path parameters
-
A comma-separated list of index names to reload analyzers for
Query parameters
-
allow_no_indices boolean
Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes
_all
string or when no indices have been specified) -
expand_wildcards string | array[string]
Whether to expand wildcard expression to concrete indices that are open, closed or both.
GET /{index}/_reload_search_analyzers
curl \
-X GET http://api.example.com/{index}/_reload_search_analyzers
Response examples (200)
{
"reload_details": [
{
"index": "string",
"reloaded_analyzers": [
"string"
],
"reloaded_node_ids": [
"string"
]
}
],
"_shards": {
"failed": 42.0,
"successful": 42.0,
"total": 42.0,
"failures": [
{
"index": "string",
"node": "string",
"reason": {
"type": "string",
"reason": "string",
"stack_trace": "string",
"caused_by": {},
"root_cause": [
{}
],
"suppressed": [
{}
]
},
"shard": 42.0,
"status": "string"
}
],
"skipped": 42.0
}
}