Hi,
I have a index mappings like this:
...
"location": {
"type": "nested",
"properties": {
"accuracy": {
"type": "float"
},
"lat": {
"type": "float"
},
"lon": {
"type": "float"
}
}
},
...
I would create an ingestion pipeline that creates a new field (for example "geo") only with lat and lon subfield, without accuracy.
How can I do?
Thanks