Elasticsearch - Index Management
Given the following reindex request, what will be the result?
{
"source": { "index": "products" },
"dest": { "index": "products_new" },
"script": {
"source": "ctx._source.price = ctx._source.price * 1.1"
}
}Assuming products has documents with a price field.
