Skip to content

Commit f032fb7

Browse files
Minor modification in hardware benchmark
1 parent 9f21c98 commit f032fb7

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

benchmark/hardware.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ TRIES=3
1313

1414
AMD64_BIN_URL="https://builds.clickhouse.com/master/amd64/clickhouse"
1515
AARCH64_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
@@ -52,7 +55,7 @@ fi
5255

5356
if [[ ! -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

0 commit comments

Comments
 (0)