Adjustments

This commit is contained in:
Alexey Milovidov 2020-09-25 03:29:42 +03:00
parent 8e986f81b4
commit 4e0378a521
2 changed files with 6 additions and 4 deletions

View File

@ -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---------------'

View File

@ -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 + '"';
} }