Hello,
I'm using kafka as a large work queue and microservices as consumers to process and async as much work as I can.
We have 2 very different types of data (analytics/telemetry and customer data) that we'd like to segment into a separate kafka cluster, and I want to ask directly after having spent a while going in circles.
-
Is it technically possible to set up multiple microservices that each read from their own kafka cluster? (I was setting up a separate config for each microservice, but it seems like they're stepping on each other)
-
Is it possible to tune the number of consumers on a topic explicitly? or is it all implicit based on server * worker counts?