Hello,
I don't know why I am getting this error:
This is the format I specified:
YYYY/MM/DD HH:MM:SS.SSS
This is the field value:
2024/09/04 23:38:49.930
Is this not right?
Hello,
I don't know why I am getting this error:
This is the format I specified:
YYYY/MM/DD HH:MM:SS.SSS
This is the field value:
2024/09/04 23:38:49.930
Is this not right?
This format is wrong MM
is for months, it will get the 2 digits of the month, you are using it for months and for minutes, which is wrong, and SS
is for fraction of seconds, you are using it for seconds as well.
Also, DD
is for day of the year, for day of the month it needs to be dd
, and it needs to be yyyy
not YYYY
The format should be something like yyyy/MM/dd HH:mm:ss.SSS
Woah thanks!
© 2020. All Rights Reserved - Elasticsearch
Apache, Apache Lucene, Apache Hadoop, Hadoop, HDFS and the yellow elephant logo are trademarks of the Apache Software Foundation in the United States and/or other countries.