Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/pkbhowmick/go-kafka-demo

:rocket::rocket: A demo of Kafka pub/sub queue using sarama go library
https://github.com/pkbhowmick/go-kafka-demo

Last synced: 3 days ago
JSON representation

:rocket::rocket: A demo of Kafka pub/sub queue using sarama go library

Awesome Lists containing this project

README

        

# go-kafka-demo

### Installation

- Run zookeeper and kafka docker image and expose kafka port externally.

docker-compose.yaml

```yaml
version: "2"

services:
zookeeper:
image: docker.io/bitnami/zookeeper:3.8
ports:
- "2181:2181"
volumes:
- "zookeeper_data:/bitnami"
environment:
- ALLOW_ANONYMOUS_LOGIN=yes
kafka:
image: docker.io/bitnami/kafka:3.1
ports:
- "9093:9093"
volumes:
- "kafka_data:/bitnami"
environment:
- KAFKA_CFG_ZOOKEEPER_CONNECT=zookeeper:2181
- ALLOW_PLAINTEXT_LISTENER=yes
- KAFKA_CFG_LISTENER_SECURITY_PROTOCOL_MAP=CLIENT:PLAINTEXT,EXTERNAL:PLAINTEXT
- KAFKA_CFG_LISTENERS=CLIENT://:9092,EXTERNAL://:9093
- KAFKA_CFG_ADVERTISED_LISTENERS=CLIENT://kafka:9092,EXTERNAL://localhost:9093
- KAFKA_CFG_INTER_BROKER_LISTENER_NAME=CLIENT
depends_on:
- zookeeper

volumes:
zookeeper_data:
driver: local
kafka_data:
driver: local

```

```bash
$ docker-compose up -d
```