mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
upload cpu model to perf test db
This commit is contained in:
parent
f1706223be
commit
6a1414663f
@ -1149,20 +1149,21 @@ function upload_results
|
||||
return 0
|
||||
fi
|
||||
|
||||
# Surprisingly, clickhouse-client doesn't understand --host 127.0.0.1:9000
|
||||
# so I have to extract host and port with clickhouse-local. I tried to use
|
||||
# Poco URI parser to support this in the client, but it's broken and can't
|
||||
# parse host:port.
|
||||
set +x # Don't show password in the log
|
||||
clickhouse-client \
|
||||
$(clickhouse-local --query "with '${CHPC_DATABASE_URL}' as url select '--host ' || domain(url) || ' --port ' || toString(port(url)) format TSV") \
|
||||
--secure \
|
||||
--user "${CHPC_DATABASE_USER}" \
|
||||
--password "${CHPC_DATABASE_PASSWORD}" \
|
||||
--config "right/config/client_config.xml" \
|
||||
--database perftest \
|
||||
--date_time_input_format=best_effort \
|
||||
--query "
|
||||
client=(clickhouse-client
|
||||
# Surprisingly, clickhouse-client doesn't understand --host 127.0.0.1:9000
|
||||
# so I have to extract host and port with clickhouse-local. I tried to use
|
||||
# Poco URI parser to support this in the client, but it's broken and can't
|
||||
# parse host:port.
|
||||
$(clickhouse-local --query "with '${CHPC_DATABASE_URL}' as url select '--host ' || domain(url) || ' --port ' || toString(port(url)) format TSV")
|
||||
--secure
|
||||
--user "${CHPC_DATABASE_USER}"
|
||||
--password "${CHPC_DATABASE_PASSWORD}"
|
||||
--config "right/config/client_config.xml"
|
||||
--database perftest
|
||||
--date_time_input_format=best_effort)
|
||||
|
||||
"${client[@]}" --query "
|
||||
insert into query_metrics_v2
|
||||
select
|
||||
toDate(event_time) event_date,
|
||||
@ -1185,6 +1186,21 @@ function upload_results
|
||||
format TSV
|
||||
settings date_time_input_format='best_effort'
|
||||
" < report/all-query-metrics.tsv # Don't leave whitespace after INSERT: https://github.com/ClickHouse/ClickHouse/issues/16652
|
||||
|
||||
# Upload some run attributes. I use this weird form because it is the same
|
||||
# form that can be used for historical data when you only have compare.log.
|
||||
cat compare.log \
|
||||
| sed -n '
|
||||
s/.*\(Model name:\)[[:space:]]\+\(.*\)$/metric lscpu-model-name \2/p;
|
||||
s/.*left_sha=\(.*\)$/old-sha \1/p;
|
||||
s/.*right_sha=\(.*\)/new-sha \1/p' \
|
||||
| awk '
|
||||
BEGIN { FS = "\t"; OFS = "\t" }
|
||||
/^old-sha/ { old_sha=$2 }
|
||||
/^new-sha/ { new_sha=$2 }
|
||||
/^metric/ { print old_sha, new_sha, $2, $3 }' \
|
||||
| "${client[@]}" --query "INSERT INTO run_attributes_v1 FORMAT TSV"
|
||||
|
||||
set -x
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user