You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by dh...@apache.org on 2022/10/16 18:03:40 UTC

[arrow-ballista] branch master updated: Fix integration test and add more queries (#367)

This is an automated email from the ASF dual-hosted git repository.

dheres pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-ballista.git


The following commit(s) were added to refs/heads/master by this push:
     new 060daca0 Fix integration test and add more queries (#367)
060daca0 is described below

commit 060daca0db2b7427db6149ac5a9d9bce86317ce4
Author: Andy Grove <an...@gmail.com>
AuthorDate: Sun Oct 16 12:03:34 2022 -0600

    Fix integration test and add more queries (#367)
---
 benchmarks/run.sh        | 4 +++-
 dev/integration-tests.sh | 4 ++++
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/benchmarks/run.sh b/benchmarks/run.sh
index 9dc67b2c..51fe6e46 100755
--- a/benchmarks/run.sh
+++ b/benchmarks/run.sh
@@ -19,7 +19,9 @@ set -x
 
 # This bash script is meant to be run inside the docker-compose environment. Check the README for instructions
 
-for query in 1 3 5 6 7 10 12 13
+#TODO: add queries 15, 16, 19, 20, and 22 once we support them
+
+for query in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 17 18 21
 do
   /root/tpch benchmark ballista --host ballista-scheduler --port 50050 --query $query --path /data --format tbl --iterations 1 --debug
 done
diff --git a/dev/integration-tests.sh b/dev/integration-tests.sh
index 53dfa59f..9a6016e9 100755
--- a/dev/integration-tests.sh
+++ b/dev/integration-tests.sh
@@ -22,6 +22,10 @@ pushd benchmarks
 ./tpch-gen.sh
 
 docker-compose up -d
+
+# give the scheduler a chance to start up
+sleep 10
+
 docker-compose run ballista-client /root/run.sh
 docker-compose down