some things done

This commit is contained in:
2021-04-24 18:43:28 +02:00
commit 8c3bc4f217
7 changed files with 78 additions and 0 deletions

3
kafka/consumer.py Normal file
View File

@ -0,0 +1,3 @@
#!/usr/bin/env python3
from datetime import datetime

20
kafka/docker-compose.yml Normal file
View File

@ -0,0 +1,20 @@
version: "3"
services:
zookeeper:
image: 'bitnami/zookeeper:latest'
ports:
- '2181:2181'
environment:
- ALLOW_ANONYMOUS_LOGIN=yes
kafka:
image: 'bitnami/kafka:latest'
ports:
- '9092:9092'
environment:
- KAFKA_BROKER_ID=1
- KAFKA_LISTENERS=PLAINTEXT://:9092
- KAFKA_ADVERTISED_LISTENERS=PLAINTEXT://127.0.0.1:9092
- KAFKA_ZOOKEEPER_CONNECT=zookeeper:2181
- ALLOW_PLAINTEXT_LISTENER=yes
depends_on:
- zookeeper

1
kafka/publisher.py Normal file
View File

@ -0,0 +1 @@
#!/usr/bin/env python3