codelipenghui commented on issue #15702:
URL: https://github.com/apache/pulsar/issues/15702#issuecomment-1134059546

   @zbentley 
   
   Yes, looks like the doc is incorrect
   
   > How do those two settings interact? 
   
   Here is the code snippet
   
   ```
    config.setReceiverQueueSize(
           std::min(conf_.getReceiverQueueSize(),
                    (int)(conf_.getMaxTotalReceiverQueueSizeAcrossPartitions() 
/ getNumPartitions())));
   ```
   
   > I.e. if I have receiver_queue_size=0 and 
max_total_receiver_queue_size_across_partitions=10, what is the result? What 
about 10 and 0? 10 and 10?
   
   For a partitioned topic, not able to set the receiver queue size to 0 as I 
mentioned here 
https://github.com/apache/pulsar/issues/15704#issuecomment-1134050431


-- 
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.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to