https://github.com/thales-eduardo/go-kafka
uma simples implementação de golang+kafka
https://github.com/thales-eduardo/go-kafka
apache-kafka
Last synced: 7 months ago
JSON representation
uma simples implementação de golang+kafka
- Host: GitHub
- URL: https://github.com/thales-eduardo/go-kafka
- Owner: Thales-Eduardo
- Created: 2024-08-11T14:52:29.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-08-11T18:30:32.000Z (about 1 year ago)
- Last Synced: 2025-02-01T09:28:26.409Z (8 months ago)
- Topics: apache-kafka
- Language: Go
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
apt-get install build-essential librdkafka-dev -y
criar tópico
kafka-topics --create --topic=teste --bootstrap-server=localhost:9092 --partitions=3monitorar consumer
kafka-console-consumer --bootstrap-server=localhost:9092 --topic=testemonitorar group
kafka-consumer-groups --bootstrap-server localhost:9092 --describe --group=goapp-group2