Xiaolong Peng

Results 8 comments of Xiaolong Peng

timezone is not the cause if the issue, `Z` is a valid timezone called Zulu Time(Coordinated Universal Time), the issue is the the separator between hour/minute/second is `-` in the...

The bug is related to `date_detection`, the string "2018-03-30T17-30-28.842Z" should be detected as keyword/text, not date time, because the format doesn't match any date-time format supported by OpenSearch. Here is...

If you run the same test in OpenSearch-1.2/1.3, it returns date_time_exception when index the doc.

Thank you @Yury-Fridlyand ! I know how to bypass it by setting dynamic_date_formats to override the default settings for date_detection. Specifying data format in mapping doesn't work, because date_detection run...

Thanks David! I assume it is trivial, what do you think? @dholmes-ora

Thank you for the review! @chhagedorn /integrate

Thanks @tstuefe @chhagedorn @dholmes-ora for the reviews and discussion about the "trivial" topic, I agree that this may not be trivial and I'll be cautious when declare PR is trivial....

The JDK API URI.create can be expensive for some specific cases, this one is caused by the NumberFormatException, I fixed [another one](https://github.com/openjdk/jdk/pull/23538) caused by URISyntaxException recently. Even w/o the exception...