This is an automated email from the ASF dual-hosted git repository. michaelsmith pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/impala.git
commit bf517d332358b2263bb692cb40dc518d5e081c4d Author: jichen0919 <[email protected]> AuthorDate: Mon Dec 8 19:00:05 2025 +0800 IMPALA-14610: Bump up arrow version to 15.0.0 The patch bumped up the arrow version to 15.0.0 and use latest toolchain to fix the arrow jni loading issue for linux on aarch64 environment. Background: We have fixed jni loading issue for aarch64 environment from native toolchain side in IMPALA-14609. We also need to bump up arrow version to 15.0.0 and use the toolchain to fix the issue. Testing: Built new toolchain and pass paimon test in aarch64 environment. Change-Id: I7b8dd6ab43cf05b4339880ecec0d1f48e44ef294 Reviewed-on: http://gerrit.cloudera.org:8080/23756 Tested-by: Impala Public Jenkins <[email protected]> Reviewed-by: Zoltan Borok-Nagy <[email protected]> --- bin/impala-config.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/impala-config.sh b/bin/impala-config.sh index 63a1a21f9..62a42142f 100755 --- a/bin/impala-config.sh +++ b/bin/impala-config.sh @@ -81,13 +81,13 @@ export USE_AVRO_CPP=${USE_AVRO_CPP:=false} # moving to a different build of the toolchain, e.g. when a version is bumped or a # compile option is changed. The build id can be found in the output of the toolchain # build jobs, it is constructed from the build number and toolchain git hash prefix. -export IMPALA_TOOLCHAIN_BUILD_ID_AARCH64=150-a791b4c60d -export IMPALA_TOOLCHAIN_BUILD_ID_X86_64=602-a791b4c60d +export IMPALA_TOOLCHAIN_BUILD_ID_AARCH64=159-1fade8203e +export IMPALA_TOOLCHAIN_BUILD_ID_X86_64=612-1fade8203e export IMPALA_TOOLCHAIN_REPO=\ ${IMPALA_TOOLCHAIN_REPO:-https://github.com/cloudera/native-toolchain.git} export IMPALA_TOOLCHAIN_BRANCH=${IMPALA_TOOLCHAIN_BRANCH:-master} export IMPALA_TOOLCHAIN_COMMIT_HASH=\ -${IMPALA_TOOLCHAIN_COMMIT_HASH-a791b4c60d513655b8f8c46fce8deb740146fb75} +${IMPALA_TOOLCHAIN_COMMIT_HASH-1fade8203e3df234dc5bab35cd32ff1f40d1db17} # Compare the build ref in build IDs by removing everything up-to-and-including the # first hyphen. if [ "${IMPALA_TOOLCHAIN_BUILD_ID_AARCH64#*-}" \ @@ -207,7 +207,7 @@ export IMPALA_TPC_H_VERSION=2.17.0 unset IMPALA_TPC_H_URL export IMPALA_ZLIB_VERSION=1.3.1 unset IMPALA_ZLIB_URL -export IMPALA_ARROW_VERSION=13.0.0 +export IMPALA_ARROW_VERSION=15.0.0 unset IMPALA_ARROW_URL export IMPALA_CLOUDFLAREZLIB_VERSION=7aa510344e unset IMPALA_CLOUDFLAREZLIB_URL
