Skip to content
Snippets Groups Projects
Commit 0d4131dc authored by Sören Henning's avatar Sören Henning
Browse files

Align Kafka Streams smoketest with others

parent bc3a6734
No related branches found
No related tags found
No related merge requests found
Pipeline #10436 passed
......@@ -45,6 +45,8 @@ services:
environment:
KAFKA_BOOTSTRAP_SERVERS: kafka:9092
SCHEMA_REGISTRY_URL: http://schema-registry:8081
COMMIT_INTERVAL_MS: 1000
GRACE_PERIOD_MS: 5000
load-generator:
image: ghcr.io/cau-se/theodolite-uc4-workload-generator:${THEODOLITE_TAG:-latest}
depends_on:
......
......@@ -2,10 +2,10 @@
until docker-compose exec -T kcat kcat -L -b kafka:9092 -t output -J | jq -r '.topics[0].partitions | length' | grep "\b3\b"; do sleep 5s; done
docker-compose exec -T kcat kcat -C -b kafka:9092 -t output -s key=s -s value=avro -r http://schema-registry:8081 -f '%k:%s\n' -c 32 |
docker-compose exec -T kcat kcat -C -b kafka:9092 -t output -s key=s -s value=avro -r http://schema-registry:8081 -f '%k:%s\n' -c 300 |
tee /dev/stderr |
awk -F ':' '!/^%/ {print $1}' |
sort |
uniq |
wc -l |
grep "\b16\b"
grep "\b21\b"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment