Bump CDH_BUILD_VERSION to include Hive fix for RELY constraint This change bumps the CDH_BUILD_VERSION to a version that includes the fix for a bug that does not correctly propagate "RELY" constraints from SQL statements in Hive. This is needed for the upcoming patch for IMPALA-3531.
This new CDH_BUILD_VERSION pulls in newer version of Kudu binaries (v1.9). Kudu version variables in the impala-config are updated accordingly. Also, includes a newer toolchain build that has these v1.9 bits. Testing: DEBUG/Core tests passed. Change-Id: Ie626882044fea98b81b07caa950b480e16df122d Reviewed-on: http://gerrit.cloudera.org:8080/11891 Tested-by: Impala Public Jenkins <[email protected]> Reviewed-by: Thomas Marshall <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/impala/repo Commit: http://git-wip-us.apache.org/repos/asf/impala/commit/09dc7632 Tree: http://git-wip-us.apache.org/repos/asf/impala/tree/09dc7632 Diff: http://git-wip-us.apache.org/repos/asf/impala/diff/09dc7632 Branch: refs/heads/branch-3.1.0 Commit: 09dc76327abc441a1b6e1628bad845907f602521 Parents: 14fc20a Author: Bharath Vissapragada <[email protected]> Authored: Mon Nov 5 11:31:23 2018 -0800 Committer: Zoltan Borok-Nagy <[email protected]> Committed: Tue Nov 13 12:51:39 2018 +0100 ---------------------------------------------------------------------- bin/impala-config.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/impala/blob/09dc7632/bin/impala-config.sh ---------------------------------------------------------------------- diff --git a/bin/impala-config.sh b/bin/impala-config.sh index c0030ca..32df25d 100755 --- a/bin/impala-config.sh +++ b/bin/impala-config.sh @@ -68,7 +68,7 @@ fi # 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=185-ec90313c05 +export IMPALA_TOOLCHAIN_BUILD_ID=210-5033cfcc59 # Versions of toolchain dependencies. # ----------------------------------- export IMPALA_AVRO_VERSION=1.7.4-p4 @@ -158,7 +158,7 @@ fi : ${CDH_DOWNLOAD_HOST:=native-toolchain.s3.amazonaws.com} export CDH_DOWNLOAD_HOST export CDH_MAJOR_VERSION=6 -export CDH_BUILD_NUMBER=663310 +export CDH_BUILD_NUMBER=680275 export IMPALA_HADOOP_VERSION=3.0.0-cdh6.x-SNAPSHOT export IMPALA_HBASE_VERSION=2.1.0-cdh6.x-SNAPSHOT export IMPALA_HIVE_VERSION=2.1.1-cdh6.x-SNAPSHOT @@ -167,7 +167,7 @@ export IMPALA_PARQUET_VERSION=1.9.0-cdh6.x-SNAPSHOT export IMPALA_AVRO_JAVA_VERSION=1.8.2-cdh6.x-SNAPSHOT export IMPALA_LLAMA_MINIKDC_VERSION=1.0.0 export IMPALA_KITE_VERSION=1.0.0-cdh6.x-SNAPSHOT -export KUDU_JAVA_VERSION=1.8.0-cdh6.x-SNAPSHOT +export KUDU_JAVA_VERSION=1.9.0-cdh6.x-SNAPSHOT # When IMPALA_(CDH_COMPONENT)_URL are overridden, they may contain '$(platform_label)' # which will be substituted for the CDH platform label in bootstrap_toolchain.py @@ -596,10 +596,10 @@ fi export KUDU_IS_SUPPORTED if $USE_CDH_KUDU; then - export IMPALA_KUDU_VERSION=${IMPALA_KUDU_VERSION-"1.8.0-cdh6.x-SNAPSHOT"} + export IMPALA_KUDU_VERSION=${IMPALA_KUDU_VERSION-"1.9.0-cdh6.x-SNAPSHOT"} export IMPALA_KUDU_HOME=${CDH_COMPONENTS_HOME}/kudu-$IMPALA_KUDU_VERSION else - export IMPALA_KUDU_VERSION=${IMPALA_KUDU_VERSION-"5211897"} + export IMPALA_KUDU_VERSION=${IMPALA_KUDU_VERSION-"4ec2598"} export IMPALA_KUDU_HOME=${IMPALA_TOOLCHAIN}/kudu-$IMPALA_KUDU_VERSION fi
