2023-08-30 19:42:11 +08:00
|
|
|
stream_args: &stream_args
|
|
|
|
- "--bolt-port"
|
|
|
|
- "7687"
|
|
|
|
- "--log-level=DEBUG"
|
|
|
|
- "--kafka-bootstrap-servers=localhost:9092"
|
|
|
|
- "--query-execution-timeout-sec=0"
|
|
|
|
- "--pulsar-service-url=pulsar://127.0.0.1:6650"
|
|
|
|
|
|
|
|
in_memory_cluster: &in_memory_cluster
|
2021-07-06 23:51:11 +08:00
|
|
|
cluster:
|
|
|
|
main:
|
2023-08-30 19:42:11 +08:00
|
|
|
args: *stream_args
|
2021-07-06 23:51:11 +08:00
|
|
|
log_file: "streams-e2e.log"
|
|
|
|
setup_queries: []
|
|
|
|
validation_queries: []
|
|
|
|
|
2023-08-30 19:42:11 +08:00
|
|
|
disk_cluster: &disk_cluster
|
|
|
|
cluster:
|
|
|
|
main:
|
|
|
|
args: *stream_args
|
|
|
|
log_file: "streams-e2e.log"
|
|
|
|
setup_queries:
|
|
|
|
- "STORAGE MODE ON_DISK_TRANSACTIONAL"
|
|
|
|
validation_queries: []
|
|
|
|
|
|
|
|
|
2021-07-06 23:51:11 +08:00
|
|
|
workloads:
|
2021-11-15 23:23:49 +08:00
|
|
|
- name: "Kafka streams start, stop and show"
|
2021-09-22 14:49:29 +08:00
|
|
|
binary: "tests/e2e/pytest_runner.sh"
|
2021-07-06 23:51:11 +08:00
|
|
|
proc: "tests/e2e/streams/transformations/"
|
2021-11-15 23:23:49 +08:00
|
|
|
args: ["streams/kafka_streams_tests.py"]
|
2023-08-30 19:42:11 +08:00
|
|
|
<<: *in_memory_cluster
|
|
|
|
|
2021-07-22 22:22:08 +08:00
|
|
|
- name: "Streams with users"
|
2021-09-22 14:49:29 +08:00
|
|
|
binary: "tests/e2e/pytest_runner.sh"
|
2021-07-22 22:22:08 +08:00
|
|
|
proc: "tests/e2e/streams/transformations/"
|
2021-09-22 14:49:29 +08:00
|
|
|
args: ["streams/streams_owner_tests.py"]
|
2023-08-30 19:42:11 +08:00
|
|
|
<<: *in_memory_cluster
|
|
|
|
|
2021-11-15 23:23:49 +08:00
|
|
|
- name: "Pulsar streams start, stop and show"
|
|
|
|
binary: "tests/e2e/pytest_runner.sh"
|
|
|
|
proc: "tests/e2e/streams/transformations/"
|
|
|
|
args: ["streams/pulsar_streams_tests.py"]
|
2023-08-30 19:42:11 +08:00
|
|
|
<<: *in_memory_cluster
|
|
|
|
|
|
|
|
- name: "Kafka streams start, stop and show for on-disk storage"
|
|
|
|
binary: "tests/e2e/pytest_runner.sh"
|
|
|
|
proc: "tests/e2e/streams/transformations/"
|
|
|
|
args: ["streams/kafka_streams_tests.py"]
|
|
|
|
<<: *disk_cluster
|
|
|
|
|
|
|
|
- name: "Streams with users for on-disk storage"
|
|
|
|
binary: "tests/e2e/pytest_runner.sh"
|
|
|
|
proc: "tests/e2e/streams/transformations/"
|
|
|
|
args: ["streams/streams_owner_tests.py"]
|
|
|
|
<<: *disk_cluster
|
|
|
|
|
|
|
|
- name: "Pulsar streams start, stop and show for on-disk storage"
|
|
|
|
binary: "tests/e2e/pytest_runner.sh"
|
|
|
|
proc: "tests/e2e/streams/transformations/"
|
|
|
|
args: ["streams/pulsar_streams_tests.py"]
|
|
|
|
<<: *disk_cluster
|