Ara
Ara
Note that we tried a few other variants to "make it work": - Moved the order of the custom date format in the field mapping so it comes up first....
@nik9000 do you know the conditions that cause ES to use the "round up" parser? It would help us communicate the extent of the issue to our users. Also, please...
@nik9000 I am surprised this was not reported before. In my industry, DOY searches are quite common because we several systems that prefer to denote dates as DOY (Mars 2020,...
@pgomulka I don't pretend to understand the inner workings fo ES, but I don't understand why you don't delegate the job of parsing to the JDK and then apply whatever...
@pgomulka I see the advice in the JDK issue and, from their perspective, it makes complete sense. Have you tried default all of the available fields of `ChronoField` in https://github.com/elastic/elasticsearch/blob/be7c7415627377a1b795400fb8dfcc6cbdf0e322/server/src/main/java/org/elasticsearch/common/time/JavaDateFormatter.java#L53?...
We did some additional investigation and found this additional issue. If you follow all the steps of the test case above and, instead of submitting the query in DSL format,...
@grcevski good to hear! Thanks for directing attention to this issue. Please let us know when a patch is available (or, I suppose, GitHub will let us know).
Thanks for the tip. It helps a bit, though the pre-defined regular expressions are not foolproof. For example, the "string" pattern does not omit variables in template strings. And, in...
I found you have to do the following: Use Java properties to set the HTTP/HTTPS ports: ``` -Dhttp.port=disabled -Dhttps.port=9443 ``` Then modify `application.conf` and set ``` play.server.https.keyStore.path=/path/to/keystore.jks play.server.https.keyStore.password="" play.server.https.keyStore.type=JKS play.http.port=disabled...
@anthony-tuininga the motivation is the same. We want to use `SQLNET.COMPRESSION`. However, since we are not using the thick client, there has to be an equivalent parameter on the thin...