You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@impala.apache.org by jo...@apache.org on 2019/10/03 04:34:01 UTC

[impala] 01/02: IMPALA-8973: Update Kudu version to fix openssl1.1.1 compatibility issue

This is an automated email from the ASF dual-hosted git repository.

joemcdonnell pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/impala.git

commit 49202ffc51f4c4198b9b03c5c508a237c40c71e3
Author: Kurt Deschler <kd...@cloudera.com>
AuthorDate: Wed Sep 25 14:33:16 2019 -0500

    IMPALA-8973: Update Kudu version to fix openssl1.1.1 compatibility issue
    
    Automated tests were failing while creating Kudu tables with
    openssl1.1.1 installed on the machine
    
    This issue was previously reported under KUDU-2871 and resolved by
    disabling TLS 1.3 in Kudu source. This change bumps the Kudu version in
    impala-config.sh to pull in the fix for KUDU-2871.
    
    Testing:
      Create kudu table via automated tests passes
    
    Change-Id: Ic34520b4b260e9fe610bc6a5a0e8acf8066dfa69
    Reviewed-on: http://gerrit.cloudera.org:8080/14304
    Reviewed-by: Lars Volker <lv...@cloudera.com>
    Tested-by: Impala Public Jenkins <im...@cloudera.com>
---
 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 d7cd4e8..76cc1b8 100755
--- a/bin/impala-config.sh
+++ b/bin/impala-config.sh
@@ -167,7 +167,7 @@ fi
 : ${IMPALA_TOOLCHAIN_HOST:=native-toolchain.s3.amazonaws.com}
 export IMPALA_TOOLCHAIN_HOST
 export CDH_MAJOR_VERSION=6
-export CDH_BUILD_NUMBER=1173663
+export CDH_BUILD_NUMBER=1474057
 export CDH_MAVEN_REPOSITORY=\
 "https://${IMPALA_TOOLCHAIN_HOST}/build/cdh_components/${CDH_BUILD_NUMBER}/maven"
 export CDH_HADOOP_VERSION=3.0.0-cdh6.x-SNAPSHOT
@@ -185,11 +185,11 @@ export CDP_RANGER_VERSION=1.2.0.7.1.0.0-33
 export CDP_TEZ_VERSION=0.9.1.7.1.0.0-33
 export CDP_KNOX_VERSION=1.0.0.7.1.0.0-33
 
-export IMPALA_PARQUET_VERSION=1.9.0-cdh6.x-SNAPSHOT
+export IMPALA_PARQUET_VERSION=1.10.99-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 IMPALA_KUDU_JAVA_VERSION=1.10.0-cdh6.x-SNAPSHOT
+export IMPALA_KUDU_JAVA_VERSION=1.11.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
@@ -710,7 +710,7 @@ fi
 export KUDU_IS_SUPPORTED
 
 if $USE_CDH_KUDU; then
-  export IMPALA_KUDU_VERSION=${IMPALA_KUDU_VERSION-"1.10.0-cdh6.x-SNAPSHOT"}
+  export IMPALA_KUDU_VERSION=${IMPALA_KUDU_VERSION-"1.11.0-cdh6.x-SNAPSHOT"}
   export IMPALA_KUDU_HOME=${CDH_COMPONENTS_HOME}/kudu-$IMPALA_KUDU_VERSION
 else
   export IMPALA_KUDU_VERSION=${IMPALA_KUDU_VERSION-"988296d"}