Elasticsearch cannot parse date using custom format Elasticsearch cannot parse date using custom format elasticsearch elasticsearch

Elasticsearch cannot parse date using custom format


This works for me on ES 1.4.4

PUT hilden1PUT hilden1/type1/_mapping{  "properties": {    "dt": {"type": "date", "format": "yyyy-MM-dd HH:mm:ss,SSS"}  }}POST hilden1/type1{  "dt": "2015-02-09 02:10:05,245"}GET hilden1/type1/_search