sijie commented on issue #6209: [broker] add feature BrokerDeduplicationAcrossProducers URL: https://github.com/apache/pulsar/pull/6209#issuecomment-581743026 The current behavior for producers with the same producer name that only one producer is allowed to connect and the other producer will be rejected if there is already a producer with the same name connected to the broker. I was thinking of introducing a ProducerGroupType. By default, it is "exclusive". Only one producer connection is allowed for a producer name. That would be the current behavior. Then we can introduce a "Shared" type. This allows multiple producer connections for a producer name. I am not sure it should be called "shared" or something else. But that's the type for allowing multiple producer connections. And you can implement the de-duplication logic across these producer connections. producer ids can be used for differentiating those producer connections. You can implement the de-duplication logic within a producer group.
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
