I am using dynamic indices creation with template
{
"base_index_dev" : {
"order" : 0,
"index_patterns" : [
"dev_shipments",
"dev_shipment_legs_",
"dev_transport_orders_*"
],
"settings" : {
"index" : {
"default_pipeline" : "timestamp"
}
},
"mappings" : {
"dynamic_date_formats" : [
"MM-dd-yyyy HH:mm:ss.SSS"
],
"date_detection" : true,
"properties" : {
"shipmentReferences" : {
"type" : "nested"
},
"shipmentStops" : {
"type" : "nested"
}
}
},
"aliases" : { }
}
}
It was working fine earlier but not working now and mapping timestamp field as text
elastic version: 7.11.1