From b28d8798716af2c72528f2dc04c5f53af0c1ffe2 Mon Sep 17 00:00:00 2001 From: Cheng Pan Date: Fri, 10 May 2024 10:50:43 +0800 Subject: [PATCH] [KYUUBI #6328] Bump Hive 2.3.10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # :mag: Description Hive 2.3.10 is available now, and it will be the latest version of the 2.3 serial. ## Types of changes :bookmark: - [ ] 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 ๐Ÿงช Pass GA. --- # 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 #6328 from pan3793/hive-2310. Closes #6328 82a9fb70c [Cheng Pan] Update .github/workflows/master.yml 10af5e13b [Cheng Pan] hive-2.3.10-rc-1 2dbb2b54e [Cheng Pan] test Hive 2.3.10 RC0 Authored-by: Cheng Pan Signed-off-by: Cheng Pan --- .github/workflows/master.yml | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index b4d9033ef..7dcf9a13c 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -248,7 +248,7 @@ jobs: comment: [ "normal" ] include: - java: 8 - hive-archive: '-Dhive.archive.mirror=https://archive.apache.org/dist/hive/hive-2.3.9 -Dhive.archive.name=apache-hive-2.3.9-bin.tar.gz' + hive-archive: '-Dhive.archive.mirror=https://archive.apache.org/dist/hive/hive-2.3.10 -Dhive.archive.name=apache-hive-2.3.10-bin.tar.gz' comment: 'verify-on-hive-2.3-binary' - java: 8 hive-archive: '-Dhive.archive.mirror=https://github.com/pan3793/cdh-hive/releases/download/cdh6.3.2-release -Dhive.archive.name=apache-hive-2.1.1-cdh6.3.2-bin.tar.gz' @@ -274,13 +274,6 @@ jobs: run: | TEST_MODULES="externals/kyuubi-hive-sql-engine,integration-tests/kyuubi-hive-it" ./build/mvn ${MVN_OPT} ${{ matrix.hive-archive }} -pl ${TEST_MODULES} -am clean install -DskipTests - # Hive 2.3.9 ships Derby 10.10.2.0, which may fail to boostrap on latest JDK 8 - # https://github.com/apache/hive/pull/4895 - if [[ "${{ matrix.hive-archive }}" == *apache-hive-2.3.9-bin.tar.gz* ]]; then - HIVE_239_LIB="$PWD/externals/kyuubi-download/target/apache-hive-2.3.9-bin/lib" - rm $HIVE_239_LIB/derby-* - wget https://repo1.maven.org/maven2/org/apache/derby/derby/10.14.2.0/derby-10.14.2.0.jar -P $HIVE_239_LIB - fi ./build/mvn ${MVN_OPT} ${{ matrix.hive-archive }} -pl ${TEST_MODULES} test - name: Upload test logs if: failure()