Hi all and sorry for my poor english.
I've successfully mapped a field as date (for kibana purpose) before ingestioning one document ,using this:
PUT my-index
{
"mappings": {
"properties": {
"currentDate": {
"type": "date" ,
"format": "yyyy-MM-dd HH:mm:ss||yyyy-MM-dd||epoch_millis"
}
}
}
}
I wonder how can I do that when a document is already ingestioned.