-
Notifications
You must be signed in to change notification settings - Fork 4.6k
Add JVM --add-opens flags for Flink PVR on Java 21 #39303
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
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
.github/trigger_files/beam_PostCommit_Java_PVR_Flink_Streaming.json
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| { | ||
| "comment": "Modify this file in a trivial way to cause this test suite to run", | ||
| "modification": 1, | ||
| "modification": 2, | ||
| "https://github.com/apache/beam/pull/32440": "test new datastream runner for batch" | ||
| } |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -239,6 +239,27 @@ tasks.register("validatesPortableRunner") { | |
| dependsOn validatesPortableRunnerStreamingCheckpoint | ||
| } | ||
|
|
||
| def flinkJobServerJvmArgs() { | ||
| def testJavaVer = project.findProperty('testJavaVersion') ? (project.property('testJavaVersion') as int) : JavaVersion.current().majorVersion.toInteger() | ||
| if (testJavaVer >= 17) { | ||
| return [ | ||
| "--add-opens=java.base/sun.nio.ch=ALL-UNNAMED", | ||
| "--add-opens=java.base/java.nio=ALL-UNNAMED", | ||
| "--add-opens=java.base/java.util=ALL-UNNAMED", | ||
| "--add-opens=java.base/java.lang.invoke=ALL-UNNAMED", | ||
| "--add-opens=java.base/java.lang=ALL-UNNAMED", | ||
| "-Djava.security.manager=allow", | ||
| ] | ||
| } | ||
| return [] | ||
| } | ||
|
|
||
| [validatesPortableRunnerDocker, validatesPortableRunnerBatchDataSet, validatesPortableRunnerBatch, validatesPortableRunnerStreaming, validatesPortableRunnerStreamingCheckpoint].each { task -> | ||
| task.configure { | ||
| jvmArgs += flinkJobServerJvmArgs() | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| } | ||
| } | ||
|
|
||
| def jobPort = BeamModulePlugin.getRandomPort() | ||
| def artifactPort = BeamModulePlugin.getRandomPort() | ||
|
|
||
|
|
@@ -270,7 +291,9 @@ def setupTask = project.tasks.register("flinkJobServerSetup", Exec) { | |
| } | ||
|
|
||
| executable 'sh' | ||
| args '-c', "$pythonDir/scripts/run_job_server.sh stop --group_id ${project.name} && $pythonDir/scripts/run_job_server.sh start --group_id ${project.name} --job_port ${jobPort} --artifact_port ${artifactPort} --job_server_jar ${flinkJobServerJar} --additional_args \"${additionalArgs}\"" | ||
| def jvmArgs = flinkJobServerJvmArgs().join(' ') | ||
| def jvmArgsOpt = jvmArgs ? "--jvm_args \"${jvmArgs}\"" : "" | ||
| args '-c', "$pythonDir/scripts/run_job_server.sh stop --group_id ${project.name} && $pythonDir/scripts/run_job_server.sh start --group_id ${project.name} --job_port ${jobPort} --artifact_port ${artifactPort} --job_server_jar ${flinkJobServerJar} --additional_args \"${additionalArgs}\" ${jvmArgsOpt}" | ||
| } | ||
|
|
||
| def cleanupTask = project.tasks.register("flinkJobServerCleanup", Exec) { | ||
|
|
||
Oops, something went wrong.
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.
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.
Instead of manually parsing the Java version string to an integer (which can be fragile depending on the format of
testJavaVersion), you can use Gradle's built-inJavaVersion.toVersion()helper. This is much more robust and idiomatic.