IMPALA-7228: Add tpcds-unmodified to single-node-perf-run

Description:
tpcds-unmodified workload was added as a part of IMPALA-6819.
This change allows tpcds-unmodified workload to be available
for the single node perf run.

Testing:
Ran single node perf run using the following parameters and the
test run was successful

--iterations 2 --scale 2 --table_formats "parquet/none" \
--num_impalads 1 --workload "tpcds-unmodified" \
--load --query_names "TPCDS-Q17.*" --start_minicluster

Change-Id: I511661c586cd55e3240ccbea9c499b9c3fc98440
Reviewed-on: http://gerrit.cloudera.org:8080/10931
Reviewed-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
Reviewed-by: Jim Apple <jbapple-impala@apache.org>
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
This commit is contained in:
njanarthanan
2018-07-12 14:18:10 -07:00
committed by Impala Public Jenkins
parent 408e0255c5
commit dcbff6bbbd

View File

@@ -227,7 +227,8 @@ def perf_ab_test(options, args):
workloads = set(options.workloads.split(","))
if options.load:
WORKLOAD_TO_DATASET = {"tpch": "tpch", "tpcds": "tpcds", "targeted-perf": "tpch"}
WORKLOAD_TO_DATASET = {"tpch": "tpch", "tpcds": "tpcds", "targeted-perf": "tpch",
"tpcds-unmodified": "tpcds-unmodified"}
datasets = set([WORKLOAD_TO_DATASET[workload] for workload in workloads])
for dataset in datasets:
load_data(dataset, options.table_formats, options.scale)