Hi,
Is re-indexing possible between 2.4 and 6.4 ?
I am getting the following error:
Rejecting mapping update to [track_201801] as the final mapping would have more than 1 t
ype: [_doc, position]"},"status":400}]}
I have created a index template on 6.4 like this :
"mappings": {
"_doc": {
"properties": {
"loc": {
"tree": "quadtree",
"type": "geo_shape"
},
......
So i have the type _doc
The problem is that on 2.4 my document has a type position
which IMO causes this error .
How can I address this problem ?