-
Notifications
You must be signed in to change notification settings - Fork 56
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
Patch Hadoop Client API jar to avoid deprecated Java Security API #453
Conversation
Uses ASM to patch UserGroupInformation class at build time and stores it in a version-specific directory of a newly created multi-release jar, where it will be picked up by Java 23+.
I think we don't need jdk23 in the If we are worried that we don't test on EA releases, we can make the |
I have squashed the CI changes, hopefully it is ready now (runs on 23, extra jobs for LTS releases). |
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!
We need a release including this patch. Currently we cannot run renaissance with latest JDK due to openjdk/jdk#21498 |
Uses ASM to patch the
UserGroupInformation
class at build time and stores it in a version-specific directory of a newly created multi-release jar, where it will be picked up by Java 23+.This is a temporary solution, but it may be a long-term temporary solution.
Fixes #439.