-
Notifications
You must be signed in to change notification settings - Fork 3.7k
[opt](jvm) add more --add-opens #58936
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
Merged
Merged
Conversation
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
Contributor
|
Thank you for your contribution to Apache Doris. Please clearly describe your PR:
|
Contributor
Author
|
run buildall |
TPC-H: Total hot run time: 36748 ms |
TPC-DS: Total hot run time: 180891 ms |
ClickBench: Total hot run time: 27.27 s |
gavinchou
approved these changes
Dec 11, 2025
Contributor
|
PR approved by at least one committer and no changes requested. |
Contributor
|
PR approved by anyone and no changes requested. |
CalvinKirs
approved these changes
Dec 12, 2025
github-actions bot
pushed a commit
that referenced
this pull request
Dec 12, 2025
Avoid some errors like: ``` Caused by: java.lang.reflect.InaccessibleObjectException: Unable to make protected final java.lang.Class java.Lang.ClassLoader.defineClassCjava.lang.String,byte[], int, int) throws java.Lang.CLassFormatError accessible: module java.base does not "opens java.Lang" to unnamed module @3952037b ```
yiguolei
pushed a commit
that referenced
this pull request
Dec 12, 2025
nagisa-kunhah
pushed a commit
to nagisa-kunhah/doris
that referenced
this pull request
Dec 14, 2025
Avoid some errors like: ``` Caused by: java.lang.reflect.InaccessibleObjectException: Unable to make protected final java.lang.Class java.Lang.ClassLoader.defineClassCjava.lang.String,byte[], int, int) throws java.Lang.CLassFormatError accessible: module java.base does not "opens java.Lang" to unnamed module @3952037b ```
morningman
added a commit
to morningman/doris
that referenced
this pull request
Dec 15, 2025
Avoid some errors like: ``` Caused by: java.lang.reflect.InaccessibleObjectException: Unable to make protected final java.lang.Class java.Lang.ClassLoader.defineClassCjava.lang.String,byte[], int, int) throws java.Lang.CLassFormatError accessible: module java.base does not "opens java.Lang" to unnamed module @3952037b ```
This was referenced Dec 15, 2025
morningman
added a commit
to morningman/doris
that referenced
this pull request
Dec 17, 2025
Avoid some errors like: ``` Caused by: java.lang.reflect.InaccessibleObjectException: Unable to make protected final java.lang.Class java.Lang.ClassLoader.defineClassCjava.lang.String,byte[], int, int) throws java.Lang.CLassFormatError accessible: module java.base does not "opens java.Lang" to unnamed module @3952037b ```
morningman
added a commit
that referenced
this pull request
Dec 18, 2025
followup #58936 Also modify start scripts to add missing options if necessary
github-actions bot
pushed a commit
that referenced
this pull request
Dec 18, 2025
followup #58936 Also modify start scripts to add missing options if necessary
16 tasks
CalvinKirs
added a commit
that referenced
this pull request
Dec 24, 2025
…#59278) ### What problem does this PR solve? Related PR: #58936 When using JNI calls, the --add-opens parameter requires an explicit = to ensure compatibility with modular boundaries and to correctly interpret the relationship between modules and packages. Omitting the = results in a JVM error (Malformed option), preventing the program from running properly. ``` [INTERNAL_ERROR]failed to init reader, err: [JNI_ERROR]ExceptionInInitializerError: null | CAUSED BY: InaccessibleObjectException: Unable to make field private volatile java.lang.String java.net.URI.string accessible: module java.base does not "opens java.net" to unnamed module @5f565482 ``` https://docs.oracle.com/en/java/javase/11/migrate/index.html#GUID-A868D0B9-026F-4D46-B979-901834343F9E In addition, to avoid conflicts with other dependencies (e.g., paimon-oss), it is necessary to prioritize the loading of paimon-oss by delegating it to the preload mechanism, ensuring consistent and stable module loading order.
github-actions bot
pushed a commit
that referenced
this pull request
Dec 24, 2025
…#59278) ### What problem does this PR solve? Related PR: #58936 When using JNI calls, the --add-opens parameter requires an explicit = to ensure compatibility with modular boundaries and to correctly interpret the relationship between modules and packages. Omitting the = results in a JVM error (Malformed option), preventing the program from running properly. ``` [INTERNAL_ERROR]failed to init reader, err: [JNI_ERROR]ExceptionInInitializerError: null | CAUSED BY: InaccessibleObjectException: Unable to make field private volatile java.lang.String java.net.URI.string accessible: module java.base does not "opens java.net" to unnamed module @5f565482 ``` https://docs.oracle.com/en/java/javase/11/migrate/index.html#GUID-A868D0B9-026F-4D46-B979-901834343F9E In addition, to avoid conflicts with other dependencies (e.g., paimon-oss), it is necessary to prioritize the loading of paimon-oss by delegating it to the preload mechanism, ensuring consistent and stable module loading order.
github-actions bot
pushed a commit
that referenced
this pull request
Dec 24, 2025
…#59278) ### What problem does this PR solve? Related PR: #58936 When using JNI calls, the --add-opens parameter requires an explicit = to ensure compatibility with modular boundaries and to correctly interpret the relationship between modules and packages. Omitting the = results in a JVM error (Malformed option), preventing the program from running properly. ``` [INTERNAL_ERROR]failed to init reader, err: [JNI_ERROR]ExceptionInInitializerError: null | CAUSED BY: InaccessibleObjectException: Unable to make field private volatile java.lang.String java.net.URI.string accessible: module java.base does not "opens java.net" to unnamed module @5f565482 ``` https://docs.oracle.com/en/java/javase/11/migrate/index.html#GUID-A868D0B9-026F-4D46-B979-901834343F9E In addition, to avoid conflicts with other dependencies (e.g., paimon-oss), it is necessary to prioritize the loading of paimon-oss by delegating it to the preload mechanism, ensuring consistent and stable module loading order.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
approved
Indicates a PR has been approved by one committer.
dev/3.1.4-merged
dev/4.0.3-merged
reviewed
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.
Avoid some errors like: