-
Notifications
You must be signed in to change notification settings - Fork 25.5k
Silence time zone ID deprecation warning for JDK 25 due to log4j2 bug. #134719
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Silence time zone ID deprecation warning for JDK 25 due to log4j2 bug. #134719
Conversation
Relates to elastic#132035 Relates to ES-12649
Pinging @elastic/es-core-infra (Team:Core/Infra) |
private static Set<String> filter = Set.of("WARNING: Using incubator modules: jdk.incubator.vector"); | ||
|
||
private static boolean isFilteredOut(String line) { | ||
if (filter.contains(line)) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How about making the filter a predicate? then we can still have one set of filters, instead of some in the set and some in here manually
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@rjernst how about just using the Regex util? Or do you have concerns using something that eventually depends on Lucene? Alternatively the simple predicate below?
/** Messages / lines predicate to filter from the output. */
private static Predicate<String> filter = line -> {
return "WARNING: Using incubator modules: jdk.incubator.vector".equals(line)
|| (line.startsWith("WARNING: Use of the three-letter time zone ID")
&& line.endsWith("is deprecated and it will be removed in a future release"));
};
kind ping @rjernst, could you review again |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
elastic#134719) Relates to elastic#132035 Relates to ES-12649
elastic#134719) Relates to elastic#132035 Relates to ES-12649
elastic#134719) Relates to elastic#132035 Relates to ES-12649
elastic#134719) Relates to elastic#132035 Relates to ES-12649
* upstream/main: (43 commits) Unmute testAckedIndexing to see if it still fails on main (elastic#134682) Silence time zone ID deprecation warning for JDK 25 due to log4j2 bug. (elastic#134719) Adding a getUnmodifiableSourceAndMetadata() method to IngestDocument (elastic#134816) Mark the create-index-from-source action as publicly available on Serverless (elastic#134953) ESQL: Rename command from INLINESTATS to INLINE STATS (elastic#134827) Document multi index query support for simplified retrievers (elastic#134980) [ML] Fix YAMl test to use correct query parameter type (elastic#134999) [Transform] Wait for PIT to close (elastic#134955) Add XPath to XmlUtils (elastic#134923) Fixing conditional processor mutability bugs (elastic#134936) [Transform] Lower loglevel of 3 transform-related error messages from ERROR to WARN (elastic#134985) Unmute pattern text tests. (elastic#134981) Integrate weights into simplified RRF retriever syntax (elastic#132680) Mute org.elasticsearch.xpack.esql.qa.mixed.MixedClusterEsqlSpecIT test {csv-spec:stats.CountDistinctWithConditions} elastic#134993 Update periodic java-ea build to test java 26 pre-release (elastic#134983) Mute org.elasticsearch.xpack.esql.ccq.MultiClusterSpecIT test {csv-spec:stats.CountDistinctWithConditions} elastic#134984 Fix and unmute testIndexSettingProviderPrivateSetting (elastic#134861) Add missing common cat params (elastic#134870) Support querying multiple indices with the simplified RRF retriever (elastic#134822) Allow including semantic field embeddings in _source (elastic#134717) ...
Silence time zone ID deprecation warning for JDK 25 due to log4j2 bug.
On JDK 25 log4j2 2.19 is triggering deprecation warnings due to the initialization of FastDateParser accessing deprecated time zones when iterating over all known time zone IDs. FastDateParser wasn't even used and got removed entirely in log4j 2.22.0.
Relates to #132035
Relates to ES-12649