memgraph/tests/e2e/distributed_queries/workloads.yaml
2022-11-04 16:18:18 +01:00

39 lines
1.1 KiB
YAML

template_cluster: &template_cluster
cluster:
main:
args: ["--bolt-port", "7687", "--log-level=TRACE"]
log_file: "distributed-queries-e2e.log"
setup_queries: []
validation_queries: []
workloads:
- name: "Distributed queries"
binary: "tests/e2e/pytest_runner.sh"
args: ["distributed_queries/distributed_queries.py"]
<<: *template_cluster
- name: "Distributed expand one"
binary: "tests/e2e/pytest_runner.sh"
args: ["distributed_queries/distributed_expand_one.py"]
<<: *template_cluster
- name: "Distributed unwind collect"
binary: "tests/e2e/pytest_runner.sh"
args: ["distributed_queries/unwind_collect.py"]
<<: *template_cluster
- name: "Distributed order by and limit"
binary: "tests/e2e/pytest_runner.sh"
args: ["distributed_queries/order_by_and_limit.py"]
<<: *template_cluster
- name: "Distributed distinct"
binary: "tests/e2e/pytest_runner.sh"
args: ["distributed_queries/distinct.py"]
<<: *template_cluster
- name: "Distributed optional match"
binary: "tests/e2e/pytest_runner.sh"
args: ["distributed_queries/optional_match.py"]
<<: *template_cluster