Tooling to get started with kafka development fast.
$ docker-compose up
http://localhost:10002/local/topic
https://tchiotludo.github.io/kafkahq/
- Cluster State
- View Topics / Partitions
- Consume messages per topic
- ??? Produce messages per topic ???
Configuration: kafkahq.yml
kafkahq:
key: local-dev
connections:
local:
properties:
bootstrap.servers: 'docker.for.mac.localhost:9092'
schema-registry:
url: 'http://docker.for.mac.localhost:8081' # (optional)
https://github.com/obsidiandynamics/kafdrop
- Cluster State
- View Topics / Partitions
- Consume messages per partition
Configuration: docker-compose.yml
kafdrop:
image: obsidiandynamics/kafdrop
environment:
KAFKA_BROKERCONNECT: docker.for.mac.localhost:9092
SCHEMAREGISTRY_CONNECT: 'http://docker.for.mac.localhost:8081'
https://github.com/bettercloud/kadmin
- Consume messages per topic
- Produce messages per topic
Configuration: kadmin.properties
kafka.host=docker.for.mac.localhost:9092
schema.registry.url=http://docker.for.mac.localhost:8081