mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 23:21:59 +00:00
Adjustments
This commit is contained in:
parent
8e986f81b4
commit
4e0378a521
@ -60,7 +60,7 @@ if [[ ! -d data ]]; then
|
|||||||
if [[ ! -f $DATASET ]]; then
|
if [[ ! -f $DATASET ]]; then
|
||||||
$FASTER_DOWNLOAD "https://clickhouse-datasets.s3.yandex.net/hits/partitions/$DATASET"
|
$FASTER_DOWNLOAD "https://clickhouse-datasets.s3.yandex.net/hits/partitions/$DATASET"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
tar $TAR_PARAMS --strip-components=1 --directory=. -x -v -f $DATASET
|
tar $TAR_PARAMS --strip-components=1 --directory=. -x -v -f $DATASET
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -105,8 +105,10 @@ echo
|
|||||||
echo "Benchmark complete. System info:"
|
echo "Benchmark complete. System info:"
|
||||||
echo
|
echo
|
||||||
|
|
||||||
echo '----Version and build id--------'
|
echo '----Version, build id-----------'
|
||||||
./clickhouse local --query "SELECT version(), buildId()"
|
./clickhouse local --query "SELECT format('Version: {}, build id: {}', version(), buildId())"
|
||||||
|
./clickhouse local --query "SELECT format('The number of threads is: {}', value) FROM system.settings WHERE name = 'max_threads'"
|
||||||
|
./clickhouse local --query "SELECT format('Current time: {}', toString(now('UTC')))"
|
||||||
echo '----CPU-------------------------'
|
echo '----CPU-------------------------'
|
||||||
lscpu
|
lscpu
|
||||||
echo '----Block Devices---------------'
|
echo '----Block Devices---------------'
|
||||||
|
@ -403,7 +403,7 @@ function generate_diagram() {
|
|||||||
var table_row = "";
|
var table_row = "";
|
||||||
|
|
||||||
table_row += "<tr>";
|
table_row += "<tr>";
|
||||||
table_row += "<td class='text-right w-15 align-middle'";
|
table_row += "<td class='text-right text-nowrap w-15 align-middle'";
|
||||||
if (filtered_results[j].system_full) {
|
if (filtered_results[j].system_full) {
|
||||||
table_row += ' data-toggle="tooltip" data-placement="right" title="' + filtered_results[j].system_full + '"';
|
table_row += ' data-toggle="tooltip" data-placement="right" title="' + filtered_results[j].system_full + '"';
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user