Skip to content
This repository was archived by the owner on Aug 16, 2021. It is now read-only.

Commit e1f48c7

Browse files
committed
--db-dump-path -> --db-path; Summary wording
1 parent 8f428df commit e1f48c7

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

nancy_run.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1008,9 +1008,9 @@ echo -e "$(date "+%Y-%m-%d %H:%M:%S"): Run done for $DURATION"
10081008
echo -e " Report: $ARTIFACTS_DESTINATION/$ARTIFACTS_FILENAME.json"
10091009
echo -e " Query log: $ARTIFACTS_DESTINATION/$ARTIFACTS_FILENAME.log.gz"
10101010
echo -e " -------------------------------------------"
1011-
echo -e " Summary:"
1012-
echo -e " Queries duration:\t\t" $(docker_exec cat /$MACHINE_HOME/$ARTIFACTS_FILENAME.json | jq '.overall_stat.queries_duration') " ms"
1013-
echo -e " Queries count:\t\t" $( docker_exec cat /$MACHINE_HOME/$ARTIFACTS_FILENAME.json | jq '.overall_stat.queries_number')
1014-
echo -e " Normalized queries count:\t" $(docker_exec cat /$MACHINE_HOME/$ARTIFACTS_FILENAME.json | jq '.normalyzed_info| length')
1015-
echo -e " Errors count:\t\t\t" $(docker_exec cat /$MACHINE_HOME/$ARTIFACTS_FILENAME.json | jq '.overall_stat.errors_number')
1011+
echo -e " Workload summary:"
1012+
echo -e " Sumarized query duration:\t" $(docker_exec cat /$MACHINE_HOME/$ARTIFACTS_FILENAME.json | jq '.overall_stat.queries_duration') " ms"
1013+
echo -e " Queries:\t\t\t" $( docker_exec cat /$MACHINE_HOME/$ARTIFACTS_FILENAME.json | jq '.overall_stat.queries_number')
1014+
echo -e " Query groups:\t\t" $(docker_exec cat /$MACHINE_HOME/$ARTIFACTS_FILENAME.json | jq '.normalyzed_info| length')
1015+
echo -e " Errors:\t\t\t" $(docker_exec cat /$MACHINE_HOME/$ARTIFACTS_FILENAME.json | jq '.overall_stat.errors_number')
10161016
echo -e "-------------------------------------------"

tests/nancy_run_before_init_code.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
output=$(${BASH_SOURCE%/*}/../nancy run \
44
--before-db-init-code "select abs from beforeinittable;" \
55
--workload-custom-sql "file://$srcDir/custom.sql" \
6-
--db-dump-path "file://$srcDir/test.dump.bz2" \
6+
--db-dump "file://$srcDir/test.dump.bz2" \
77
--tmp-path $srcDir/tmp \
88
2>&1)
99

tests/nancy_run_ebs_disk_size_warning.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
output=$(${BASH_SOURCE%/*}/../nancy run \
44
--ebs-volume-size sa \
55
--workload-custom-sql "file://$srcDir/custom.sql" \
6-
--db-dump-path "file://$srcDir/test.dump.bz2" \
6+
--db-dump "file://$srcDir/test.dump.bz2" \
77
--tmp-path $srcDir/tmp \
88
2>&1)
99

0 commit comments

Comments
 (0)