Hi Team
I am using Elasticsearch Version 7.5.2.
I have one index with grows in size and documents. Once it has reached 1000 documents , we are performing rollover.
Command :
curl -XPOST '10.10.10.1:9200/myevents/_rollover?pretty' -H 'Content-Type: application/json' -d '{ "conditions": { "max_docs": 1000}}'
Index is having mapping with one field "starttime" having data type "date".
But after rollover new index is having data type as "long" for same field.
Does rollover changes mapping data type of original index ?
I am aware of specifying mapping in rollover command , would like to understand the rollover behaviour in here.
Can you please help me in understanding..
Thanks
Tushar Nemade