Add Java 17 information to documentation.#12990
Merged
gianm merged 1 commit intoapache:masterfrom Aug 30, 2022
Merged
Conversation
The docs say Java 17 support is experimental, and give tips on running successfully with Java 17. This patch also removes java.base/jdk.internal.perf and jdk.management/com.sun.management.internal from the list of required exports and opens, because they were formerly needed for JvmMonitor, which was rewritten in apache#12481 to use MXBeans instead.
cryptoe
approved these changes
Aug 28, 2022
Contributor
cryptoe
left a comment
There was a problem hiding this comment.
+1 non-binding
Lets tag this to release notes ?
599166320
pushed a commit
to 599166320/apache-druid
that referenced
this pull request
Aug 30, 2022
The docs say Java 17 support is experimental, and give tips on running successfully with Java 17. This patch also removes java.base/jdk.internal.perf and jdk.management/com.sun.management.internal from the list of required exports and opens, because they were formerly needed for JvmMonitor, which was rewritten in apache#12481 to use MXBeans instead.
Closed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Once #12987 is merged, I'm not aware of anything that is nonfunctional
on Java 17, so I thought it would be good to declare the support "officially
experimental" (allowing ourselves to consider that a thing 🙂).
Since #12987 is a legitimate Java 17 incompatibility that cannot be worked
around with
--add-opensand--add-exports, it should be merged first.This patch also removes java.base/jdk.internal.perf and
jdk.management/com.sun.management.internal from the list of required
exports and opens, because they were formerly needed for JvmMonitor,
which was rewritten in #12481 to use MXBeans instead.
This work is towards #12838.