Hi,
When i went through the copy_to
parameter documentation in elastic.co. It says
"The original _source field will not be modified to show the copied values"
PUT /my_index
{
"mappings": {
"my_type": {
"properties": {
"first_name": {
"type": "string",
"copy_to": "full_name"
},
"last_name": {
"type": "string",
"copy_to": "full_name"
},
"full_name": {
"type": "string"
}
}
}
}
}
It means for the above code _source
won't have copied values (i.e."first_name","last_name") for the full_name.
Will be a problem when i am doing reindexing ?
Thanks