Imagine I have 3 publishers, A,B and C.
- Publisher A sends messages FOO, BAZ, SOMETHING to SOME/TOPIC
- Publisher B sends messages FOO, SOMETHING to SOME/TOPIC
- Publisher C sends no messages to SOME/TOPIC
What messages would a subscriber to SOME/TOPIC receive?
My motivation for wanting to know this is that Publishers A,B and C are pulling these messages from a data source which is unreliable and they may miss some messages, so I have multiple publishers publishing to the same topic as a form of redundancy. Is that a good or bad idea?