Elasticsearch - Index Management
Identify the error in this reindex request:
{
"source": { "index": "old_index" },
"dest": { "index": "new_index" },
"query": {
"match": { "status": "active" }
}
}Identify the error in this reindex request:
{
"source": { "index": "old_index" },
"dest": { "index": "new_index" },
"query": {
"match": { "status": "active" }
}
}query must be inside the source object to filter documents.match syntax is correct, and dest index name is valid.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions