fix(docker): fix docker image build with Java 11 and Hive 2.3.10#18519
Merged
Conversation
voonhous
approved these changes
Apr 17, 2026
Collaborator
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #18519 +/- ##
=========================================
Coverage 68.84% 68.84%
- Complexity 28250 28255 +5
=========================================
Files 2464 2464
Lines 135442 135442
Branches 16417 16417
=========================================
+ Hits 93239 93245 +6
+ Misses 34821 34820 -1
+ Partials 7382 7377 -5
Flags with carried forward coverage won't be shown. Click here to find out more. 🚀 New features to boost your workflow:
|
dwshmilyss
pushed a commit
to dwshmilyss/hudi
that referenced
this pull request
May 21, 2026
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.

Describe the issue this Pull Request addresses
Unblockering #18515
Second error:
Summary and Changelog
openjdk:11-jdk-slim-bullseyewitheclipse-temurin:11-jdk-jammyin the Java 11 base Dockerfile, as the OpenJDK Docker Hub images have been deprecated and removedMAINTAINERinstruction withLABEL maintainer=sparkadhocDockerfile build failure wherecalcite-core*.jarandlibfb*.jarcopies fail on Hive 2.3.x (calcite is shaded insidehive-exec.jarin this version)Eclipse Temurin is the recommended replacement by the official OpenJDK Docker repository. The
11-jdk-jammyvariant is Ubuntu 22.04-based, supports both amd64 and arm64, and is actively maintained by the Adoptium project.Additionally, the
sparkadhocimage failed to build because Hive 2.3.x shades calcite insidehive-exec.jarrather than shipping standalonecalcite-core*.jar. The copy commands arenow non-fatal (
|| true) to support both Hive 2.x and 3.x.Impact
Upgrades docker images for testing
Risk Level
low. This is a base image swap with no changes to installed packages or build logic.
Documentation Update
N/A
Contributor's checklist