I am developing a driver with Python Pyes client for Elasticsearch. I need mapping indexes with a date column has format No "date_hour_minute_second" based on docs http://www.elasticsearch.org/guide/reference/mapping/date-format/ also I check pyes docs https://pyes.readthedocs.org/en/latest/guide/reference/mapping/date-format.html
When I use "date_hour_minute_second" format for my field I got the exception mentioned in title.
Here is my field definition:
"date": {
"boost": 1.0,
"store": "yes",
"type": "date_hour_minute_second_fraction",
"term_vector": "with_positions_offsets"
}
I could not figure it out why it throws an exception like that even docs say it is supported.