X-Git-Url: https://juplo.de/gitweb/?a=blobdiff_plain;f=docker-compose.yml;h=5ce6d76201634cb08286b00b8afd65c70f26c0df;hb=d7743828914d3e5b54720a4f584c1337646c1b7a;hp=10ad3a074d15d924030eb1cb667ea90aaeeb4a0c;hpb=6db60eede6c6a14a20fb88cdcd0e0be0e959d31b;p=demos%2Fkafka%2Ftraining diff --git a/docker-compose.yml b/docker-compose.yml index 10ad3a0..5ce6d76 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -24,24 +24,136 @@ services: depends_on: - zookeeper - setup: - image: juplo/toolbox - command: > - bash -c " - kafka-topics --bootstrap-server kafka:9092 --delete --if-exists --topic test - kafka-topics --bootstrap-server kafka:9092 --create --topic test --partitions 2 - " + kafka-ui: + image: provectuslabs/kafka-ui:0.2.1 + ports: + - 8080:8080 + environment: + KAFKA_CLUSTERS_0_NAME: local + KAFKA_CLUSTERS_0_BOOTSTRAPSERVERS: kafka:9092 cli: image: juplo/toolbox command: sleep infinity producer: - image: juplo/endless-producer:1.0-SNAPSHOT + image: juplo/manual-partitioning:1.0-SNAPSHOT ports: - - 8080:8080 + - 8000:8080 environment: producer.bootstrap-server: kafka:9092 producer.client-id: producer producer.topic: test - producer.throttle-ms: 200 + producer.throttle-ms: 10 + + count-0: + image: juplo/toolbox + command: > + bash -c " + kafka-console-consumer \ + --bootstrap-server kafka:9092 \ + --topic test \ + --partition 0 \ + --property print.key=true \ + --property print.value=false \ + --from-beginning \ + --timeout-ms 1000 2>/dev/null | sort | uniq -c + " + + count-1: + image: juplo/toolbox + command: > + bash -c " + kafka-console-consumer \ + --bootstrap-server kafka:9092 \ + --topic test \ + --partition 1 \ + --property print.key=true \ + --property print.value=false \ + --from-beginning \ + --timeout-ms 1000 2>/dev/null | sort | uniq -c + " + + count-2: + image: juplo/toolbox + command: > + bash -c " + kafka-console-consumer \ + --bootstrap-server kafka:9092 \ + --topic test \ + --partition 2 \ + --property print.key=true \ + --property print.value=false \ + --from-beginning \ + --timeout-ms 1000 2>/dev/null | sort | uniq -c + " + + count-3: + image: juplo/toolbox + command: > + bash -c " + kafka-console-consumer \ + --bootstrap-server kafka:9092 \ + --topic test \ + --partition 3 \ + --property print.key=true \ + --property print.value=false \ + --from-beginning \ + --timeout-ms 1000 2>/dev/null | sort | uniq -c + " + + count-4: + image: juplo/toolbox + command: > + bash -c " + kafka-console-consumer \ + --bootstrap-server kafka:9092 \ + --topic test \ + --partition 4 \ + --property print.key=true \ + --property print.value=false \ + --from-beginning \ + --timeout-ms 1000 2>/dev/null | sort | uniq -c + " + + count-5: + image: juplo/toolbox + command: > + bash -c " + kafka-console-consumer \ + --bootstrap-server kafka:9092 \ + --topic test \ + --partition 5 \ + --property print.key=true \ + --property print.value=false \ + --from-beginning \ + --timeout-ms 1000 2>/dev/null | sort | uniq -c + " + + count-6: + image: juplo/toolbox + command: > + bash -c " + kafka-console-consumer \ + --bootstrap-server kafka:9092 \ + --topic test \ + --partition 6 \ + --property print.key=true \ + --property print.value=false \ + --from-beginning \ + --timeout-ms 1000 2>/dev/null | sort | uniq -c + " + + count-7: + image: juplo/toolbox + command: > + bash -c " + kafka-console-consumer \ + --bootstrap-server kafka:9092 \ + --topic test \ + --partition 7 \ + --property print.key=true \ + --property print.value=false \ + --from-beginning \ + --timeout-ms 1000 2>/dev/null | sort | uniq -c + "