Elasticsearch - Cluster Management
You want to restore only specific indexes from a snapshot but rename them to avoid conflicts. Which JSON snippet correctly does this during restore?
{
"indices": "logs-2023,metrics-2023",
"rename_pattern": "(.*)-2023",
"rename_replacement": "$1-restore"
}