This is an automated email from the ASF dual-hosted git repository. tarmstrong pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/impala.git
commit 23731ba90cea87ebd89089ddcf134f5cdeb7314f Author: Tim Armstrong <[email protected]> AuthorDate: Mon Oct 7 14:57:03 2019 -0700 Fix single_node_perf_run default num_impalads The documentation claims that the default is 1, but it was actually 3. Change-Id: Ia295ce0b0040e02b4fa8faafc0ac749e35b46c19 Reviewed-on: http://gerrit.cloudera.org:8080/14383 Reviewed-by: Impala Public Jenkins <[email protected]> Tested-by: Impala Public Jenkins <[email protected]> --- bin/single_node_perf_run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/single_node_perf_run.py b/bin/single_node_perf_run.py index 4966614..ebe8382 100755 --- a/bin/single_node_perf_run.py +++ b/bin/single_node_perf_run.py @@ -269,7 +269,7 @@ def parse_options(): parser.add_option("--iterations", default=30, help="number of times to run each query") parser.add_option("--table_formats", default="parquet/none", help="comma-separated " "list of table formats. Default: parquet/none") - parser.add_option("--num_impalads", default=3, help="number of impalads. Default: 1") + parser.add_option("--num_impalads", default=1, help="number of impalads. Default: 1") # Less commonly-used options: parser.add_option("--query_names", help="comma-separated list of regular expressions. A query is "
