Trying to figure out why none of my apps can talk with redpanda.
- Bring up redpanda,
docker-compose up -d redpanda
- Add topic test
docker-compose exec redpanda rpk topic create test
- In one terminal bring up C++ listener.
docker-compose up developer
- In another terminal, produce a message to topic test from python
docker-compose exec developer python3 ./scripts/produce.py
listener code here C++ libs used , librdkafka and modern-cpp-kafka.
producer code here