darksungg edited a comment on issue #6832:
URL: https://github.com/apache/pulsar/issues/6832#issuecomment-620144387


   Adding to this it seems that testing the issue, having 3 consumers on 1 
client for each partition does not work, the second consumer gets stuck at 
.subscribe().
   
   I've tried via the tutorial and it did not work possible the above problem 
(gets stuck at subscribe() also)
   
   ConsumerBuilder consumerBuilder = pulsarClient.newConsumer()
           .subscriptionName(subscription);
   
   // Subscribe to all topics in a namespace
   Pattern allTopicsInNamespace = 
Pattern.compile("persistent://public/default/.*");
   Consumer allTopicsConsumer = consumerBuilder
           .topicsPattern(allTopicsInNamespace)
           .subscribe();


----------------------------------------------------------------
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:
us...@infra.apache.org


Reply via email to