Repository: trafodion Updated Branches: refs/heads/master 94f59aceb -> b7384e877
[TRAFODION-3038] fix HDP download link in install_local_hadoop script Project: http://git-wip-us.apache.org/repos/asf/trafodion/repo Commit: http://git-wip-us.apache.org/repos/asf/trafodion/commit/94786dc9 Tree: http://git-wip-us.apache.org/repos/asf/trafodion/tree/94786dc9 Diff: http://git-wip-us.apache.org/repos/asf/trafodion/diff/94786dc9 Branch: refs/heads/master Commit: 94786dc9d47b225ae9233d86e8de51c6f669e33b Parents: 94f59ac Author: Liu Ming <[email protected]> Authored: Thu Sep 13 09:21:17 2018 -0400 Committer: Liu Ming <[email protected]> Committed: Thu Sep 13 09:21:17 2018 -0400 ---------------------------------------------------------------------- core/sqf/sql/scripts/install_local_hadoop | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafodion/blob/94786dc9/core/sqf/sql/scripts/install_local_hadoop ---------------------------------------------------------------------- diff --git a/core/sqf/sql/scripts/install_local_hadoop b/core/sqf/sql/scripts/install_local_hadoop index ca7789a..e035a1e 100755 --- a/core/sqf/sql/scripts/install_local_hadoop +++ b/core/sqf/sql/scripts/install_local_hadoop @@ -615,6 +615,7 @@ if [[ "$HBASE_DISTRO" =~ "APACHE" ]]; then HIVE_PREFIX=apache-hive-${HIVE_DEP_VER_APACHE}-bin fi if [[ "$HBASE_DISTRO" = "HDP" ]]; then + HIVE_MIRROR_URL=https://archive.apache.org/dist/hive/hive-${HIVE_DEP_VER_HDP} HIVE_PREFIX=apache-hive-${HIVE_DEP_VER_HDP}-bin fi HIVE_TAR=${HIVE_PREFIX}.tar.gz @@ -622,7 +623,8 @@ HIVE_TAR=${HIVE_PREFIX}.tar.gz HBASE_MIRROR_URL=http://archive.cloudera.com/cdh5/cdh/5 HBASE_TAR=hbase-${HBASE_DEP_VER_CDH}.tar.gz if [[ "$HBASE_DISTRO" = "HDP" ]]; then - HBASE_TAR=hbase-${HBASE_DEP_VER_HDP}.tar.gz + HBASE_MIRROR_URL=https://archive.apache.org/dist/hbase/${HBASE_DEP_VER_HDP} + HBASE_TAR=hbase-${HBASE_DEP_VER_HDP}-bin.tar.gz fi if [[ "$HBASE_DISTRO" =~ "APACHE" ]]; then HBASE_MIRROR_URL=https://archive.apache.org/dist/hbase/${HBASE_DEP_VER_APACHE}
