Does Kafka support priority for topic or message?
Kafka is a fast, scalable, distributed in nature by its design, partitioned and replicated commit log service.So there is no priority on topic or message. I also faced same problem that you have.Solution is very simple.Create topics in kafka queue,Let say: high_priority_queue medium_priority_queue low_priority_queue Publish high priority message in high_priority_queue and medium priority message in … Read more