Uh oh!
There was an error while loading. Please reload this page.
[opt](jvm) add more --add-opens - #58936
Merged
Merged
Conversation
hello-stephen
commented
Dec 11, 2025
Contributor
Thank you for your contribution to Apache Doris. Please clearly describe your PR:
|
morningman
commented
Dec 11, 2025
ContributorAuthor
run buildall |
doris-robot
commented
Dec 11, 2025
TPC-H: Total hot run time: 36748 ms |
doris-robot
commented
Dec 11, 2025
TPC-DS: Total hot run time: 180891 ms |
doris-robot
commented
Dec 11, 2025
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
Uh oh!
There was an error while loading. Please reload this page.
github-actionsBot
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-actionsBot
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-actionsBot
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-actionsBot
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.
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 freeto 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.
Avoid some errors like: