2019-09-09 07:18:46 UTC - Ravi Shah: What is the max limit for producer queue?
[11:48 AM] I am getting Error occurred while producer handler was sending msg from /127.0.0.1:63212:org.apache.pulsar.client.api.PulsarClientException$ProducerQueueIsFullError: Producer send queue is full ---- 2019-09-09 08:14:28 UTC - jia zhai: It is set by: ProducerConfigurationData.maxPendingMessages ---- 2019-09-09 08:15:46 UTC - Ravi Shah: I tried this. But it fails when i hit concurrent request like 10M. ---- 2019-09-09 08:16:21 UTC - jia zhai: default value seems be 1000? ---- 2019-09-09 08:16:32 UTC - Ravi Shah: yes ---- 2019-09-09 08:17:34 UTC - Ravi Shah: I changed it to large number and the tried concurrent calls ---- 2019-09-09 08:19:03 UTC - jia zhai: For 10M reqeusts, what was the value in your setting? ---- 2019-09-09 08:20:21 UTC - Ravi Shah: largest number in js ---- 2019-09-09 08:23:54 UTC - Ravi Shah: I tried more tests where i set maxPendingMessages to 20K 1. set concurrency to 1 and hit 1M reqs - It worked (strange as value is set to 20K) 2. set concurrency 100 hit 1 M reqs - Failed with producer queue full error ----