memgraph/tests/e2e/text_search/workloads.yaml
Ante Pušić 9629f10166
Text search (#1603, #1739)
Add text search:
* named property search
* all-property search
* regex search
* aggregation over search results

Text search works with:
* non-parallel transactions
* durability (WAL files and snapshots)
* multitenancy
2024-03-20 10:29:24 +01:00

34 lines
1010 B
YAML

text_search_cluster: &text_search_cluster
cluster:
main:
args:
[
"--bolt-port",
"7687",
"--log-level=TRACE",
"--experimental-enabled=text-search",
]
log_file: "text_search.log"
setup_queries: []
validation_queries: []
text_search_disabled_cluster: &text_search_disabled_cluster
cluster:
main:
args: ["--bolt-port", "7687", "--log-level=TRACE"]
log_file: "text_search.log"
setup_queries: []
validation_queries: []
workloads:
- name: "Test behavior of text search in Memgraph"
binary: "tests/e2e/pytest_runner.sh"
proc: "tests/e2e/text_search/query_modules/"
args: ["text_search/test_text_search.py"]
<<: *text_search_cluster
- name: "Test behavior of text search in Memgraph when disabled"
binary: "tests/e2e/pytest_runner.sh"
proc: "tests/e2e/text_search/query_modules/"
args: ["text_search/test_text_search_disabled.py"]
<<: *text_search_disabled_cluster