My application is consuming messages published to a Topic. I have 3 servers where my application code is running. With current implementation, the messages is distributed to
Don't use a topic, use a queue... Topics by design are pub/sub and all subscribers to a topic will receive all published messages. Queues are one in one out, if you have multiple consumers on a queue each get different messages.