I am trying to specify the format of my date in my Elasticsearch index mapping like this documentation states: https://www.elastic.co/guide/en/elasticsearch/reference/current/date.html
I have a date in this format: 2020-10-29T05:36:06.143Z[UTC]
. How would I turn this into a format like YYYY-MM-DD...
? Specifically, how to represent the [UTC]
part at the end?
Currently I have the following mapping, I'm getting the error below, so I am trying to specify the format of the date to see if that works. Thanks!
"createdTimeStamp": {
"type": "date"
},
Elasticsearch exception [type=mapper_parsing_exception, reason=failed to parse field [createdTimeStamp] of type [date] in document with id 'testId1'.
Preview of field's value: '{offset={totalSeconds=0, rules={fixedOffset=true, transitionRules=[], transitions=[]}, id=Z}, year=2015, dayOfYear=1, nano=0, chronology={calendarType=iso8601, id=ISO}, minute=10, second=30, dayOfWeek=THURSDAY, month=JANUARY, hour=12, zone={totalSeconds=0, rules={fixedOffset=true, transitionRules=[], transitions=[]}, id=Z}, dayOfMonth=1, monthValue=1}']];
nested: ElasticsearchException[Elasticsearch exception [type=illegal_state_exception, reason=Can't get text on a START_OBJECT at 1:72]]
You'll first need to escape
Z
itself -- it's a symbol that represents zone offsets and is not a valid value in and of itself.If you know for sure that all the incoming values will be in UTC, you can leave the above as-is. This'll escape that
[UTC]
part too.If you expect multiple time zones, you can use
yyyy-MM-dd'T'HH:mm:ss.SSS'Z['z']'
instead -- the lowercasez
will parse the incoming time zone for you and store the date internally in UTC but with an offset. That way, you'll only have escaped the uppercaseZ
for the reasons described above.