File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ TRIES=3
1313
1414AMD64_BIN_URL=" https://builds.clickhouse.com/master/amd64/clickhouse"
1515AARCH64_BIN_URL=" https://builds.clickhouse.com/master/aarch64/clickhouse"
16+ POWERPC64_BIN_URL=" https://builds.clickhouse.com/master/ppc64le/clickhouse"
1617
1718# Note: on older Ubuntu versions, 'axel' does not support IPv6. If you are using IPv6-only servers on very old Ubuntu, just don't install 'axel'.
1819
@@ -38,6 +39,8 @@ if [[ ! -f clickhouse ]]; then
3839 $FASTER_DOWNLOAD " $AMD64_BIN_URL "
3940 elif [[ $CPU == aarch64 ]]; then
4041 $FASTER_DOWNLOAD " $AARCH64_BIN_URL "
42+ elif [[ $CPU == powerpc64le ]]; then
43+ $FASTER_DOWNLOAD " $POWERPC64_BIN_URL "
4144 else
4245 echo " Unsupported CPU type: $CPU "
4346 exit 1
5255
5356if [[ ! -d data ]]; then
5457 if [[ ! -f $DATASET ]]; then
55- $FASTER_DOWNLOAD " https://clickhouse- datasets.s3.yandex.net /hits/partitions/$DATASET "
58+ $FASTER_DOWNLOAD " https://datasets.clickhouse.com /hits/partitions/$DATASET "
5659 fi
5760
5861 tar $TAR_PARAMS --strip-components=1 --directory=. -x -v -f $DATASET
You can’t perform that action at this time.
0 commit comments