Ian Maxon has submitted this change and it was merged. Change subject: Use rsync instead of wget to distribute the benchmark source. ......................................................................
Use rsync instead of wget to distribute the benchmark source. Change-Id: I58d2553eb7866d6cc947f9a8f0443cb82fc654f6 Reviewed-on: https://asterix-gerrit.ics.uci.edu/1511 Reviewed-by: Ian Maxon <[email protected]> Sonar-Qube: Jenkins <[email protected]> Tested-by: Jenkins <[email protected]> Integration-Tests: Ian Maxon <[email protected]> --- M asterixdb/asterix-benchmark/src/main/resources/benchmarks/tpch/gen/compile.yml M asterixdb/asterix-benchmark/src/main/resources/benchmarks/tpch/gen/settings.yml 2 files changed, 5 insertions(+), 6 deletions(-) Approvals: Ian Maxon: Looks good to me, approved; Verified Jenkins: Verified; No violations found diff --git a/asterixdb/asterix-benchmark/src/main/resources/benchmarks/tpch/gen/compile.yml b/asterixdb/asterix-benchmark/src/main/resources/benchmarks/tpch/gen/compile.yml index a0aa8d3..6aca279 100644 --- a/asterixdb/asterix-benchmark/src/main/resources/benchmarks/tpch/gen/compile.yml +++ b/asterixdb/asterix-benchmark/src/main/resources/benchmarks/tpch/gen/compile.yml @@ -32,11 +32,10 @@ path: "{{ generatorzip }}" state: absent -- name: Download TPC-H data generator - get_url: - url: "{{ tpch_url }}" +- name: Upload TPC-H data generator + synchronize: + src: "{{ tpch_path }}" dest: "{{ home_dir }}" - force: yes - name: Unzip data generator shell: unzip "{{ generatorzip }}" diff --git a/asterixdb/asterix-benchmark/src/main/resources/benchmarks/tpch/gen/settings.yml b/asterixdb/asterix-benchmark/src/main/resources/benchmarks/tpch/gen/settings.yml index 11ba53c..5a0a3ea 100644 --- a/asterixdb/asterix-benchmark/src/main/resources/benchmarks/tpch/gen/settings.yml +++ b/asterixdb/asterix-benchmark/src/main/resources/benchmarks/tpch/gen/settings.yml @@ -41,5 +41,5 @@ # The local data generation command. localgencmd: "gen.sh" -# The url for the TPC-H benchmark. -tpch_url: <to be filed> \ No newline at end of file +# The path for the TPC-H benchmark source zip. +tpch_path: <an absolute path to be filed> \ No newline at end of file -- To view, visit https://asterix-gerrit.ics.uci.edu/1511 To unsubscribe, visit https://asterix-gerrit.ics.uci.edu/settings Gerrit-MessageType: merged Gerrit-Change-Id: I58d2553eb7866d6cc947f9a8f0443cb82fc654f6 Gerrit-PatchSet: 2 Gerrit-Project: asterixdb Gerrit-Branch: master Gerrit-Owner: Yingyi Bu <[email protected]> Gerrit-Reviewer: Ian Maxon <[email protected]> Gerrit-Reviewer: Jenkins <[email protected]>
