mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
Adjustments
This commit is contained in:
parent
8e986f81b4
commit
4e0378a521
@ -60,7 +60,7 @@ if [[ ! -d data ]]; then
|
||||
if [[ ! -f $DATASET ]]; then
|
||||
$FASTER_DOWNLOAD "https://clickhouse-datasets.s3.yandex.net/hits/partitions/$DATASET"
|
||||
fi
|
||||
|
||||
|
||||
tar $TAR_PARAMS --strip-components=1 --directory=. -x -v -f $DATASET
|
||||
fi
|
||||
|
||||
@ -105,8 +105,10 @@ echo
|
||||
echo "Benchmark complete. System info:"
|
||||
echo
|
||||
|
||||
echo '----Version and build id--------'
|
||||
./clickhouse local --query "SELECT version(), buildId()"
|
||||
echo '----Version, build id-----------'
|
||||
./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-------------------------'
|
||||
lscpu
|
||||
echo '----Block Devices---------------'
|
||||
|
@ -403,7 +403,7 @@ function generate_diagram() {
|
||||
var table_row = "";
|
||||
|
||||
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) {
|
||||
table_row += ' data-toggle="tooltip" data-placement="right" title="' + filtered_results[j].system_full + '"';
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user