Skip to content

Commit

Permalink
[KYUUBI #6763] [CI] Specify JDK 11 for spark engine on kubernetes IT
Browse files Browse the repository at this point in the history
# 🔍 Description
## Issue References 🔗

`Spark Engine On Kubernetes Integration Test` always fails after #6739

The default java version of Ubuntu 24.04 is OpenJDK 21: https://discourse.ubuntu.com/t/ubuntu-24-04-lts-noble-numbat-release-notes/39890#openjdk , this is a version higher than that supported by spark 3.5.X.

## Describe Your Solution 🔧

Specify JDK 11 for spark engine on kubernetes it.

## Types of changes 🔖

- [ ] Bugfix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing functionality to change)

## Test Plan 🧪

test ga: https://github.com/wForget/kyuubi/actions/runs/11441231714/job/31828818049

---

# Checklist 📝

- [X] This patch was not authored or co-authored using [Generative Tooling](https://www.apache.org/legal/generative-tooling.html)

**Be nice. Be informative.**

Closes #6763 from wForget/minor.

Closes #6763

aee3933 [wforget] Specify JDK 11 for spark engine on kubernetes it

Authored-by: wforget <[email protected]>
Signed-off-by: Bowen Liang <[email protected]>
  • Loading branch information
wForget authored and bowenliang123 committed Oct 22, 2024
1 parent 04f4437 commit 7cb6af1
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -498,6 +498,13 @@ jobs:
run: ./.github/scripts/free_disk_space.sh
- name: Cache Engine Archives
uses: ./.github/actions/cache-engine-archives
- name: Setup JDK 11
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 11
cache: 'maven'
check-latest: false
- name: Setup Minikube
run: |
# https://minikube.sigs.k8s.io/docs/start/
Expand Down

0 comments on commit 7cb6af1

Please sign in to comment.