I have a producer producer who wants to send some_persistent_message to dbConsumer and some_Notification_message to notificationConsumer
Producer1 is sending the message with keys
db_key: some_persistent_message
notify_key:some_Notifiction_message
On the consumer side, I have a consumer group App1_group with the two consumers dbConsumer and notificationConsumer
At this point in time, my dbConsumer is always getting messages of some_Notification_message because of my consumer ending up owning a specific partition which is always getting notify_key:some_Notifiction_message
Is it possible to send some_persistent_message to dbConsumer
and some_Notification_message to notification_consumer?
