I have a set of kafka-python consumers that consume from different kafka topics continuously and parallely.
My question is how to kick off the consumers in parallel using single python script? And what is the best way to manage(start/stop/monitor) these consumers.
if I write ex: run.py
import consumer1, consumer2, consumer3
consumer1.start()
consumer2.start()
consumer3.start()
It just hangs on consumer1.start() as the script does not return any value and keeps running.