visortelle commented on issue #22527:
URL: https://github.com/apache/pulsar/issues/22527#issuecomment-2065928960

   @ragaur-tibco I'm also unable to receive messages from non-persistent topics 
for some reason.
   But it looks flaky. Once in about ~5 runs I see some messages from 
non-persistent `topic-c`.
   
   Code:
   
   ```scala
   // Cleanup        
   pulsarAdmin.topics.getList("new-tenant/new-namespace").asScala
                           .foreach(pulsarAdmin.topics.delete(_))
   
   val consumer = pulsarClient.newConsumer()
       .topicsPattern("new-tenant/new-namespace/.*".r.pattern)
       .subscriptionName("new-subscription")
       .patternAutoDiscoveryPeriod(1, TimeUnit.SECONDS)
       .subscriptionTopicsMode(RegexSubscriptionMode.AllTopics)
       .messageListener(new MessageListener[Array[Byte]] {
           override def received(consumer: 
org.apache.pulsar.client.api.Consumer[Array[Byte]], msg: 
org.apache.pulsar.client.api.Message[Array[Byte]]): Unit = {
               println(s"Received: ${msg.getValue.mkString(",")}. From topic: 
${msg.getTopicName}")
               consumer.acknowledge(msg)
           }
       })
       .subscribe()
   
   val topics = Vector(
       s"persistent://new-tenant/new-namespace/topic-a",
       s"persistent://new-tenant/new-namespace/topic-b",
       s"non-persistent://new-tenant/new-namespace/topic-c",
       s"non-persistent://new-tenant/new-namespace/topic-d",
   )
   
   topics.foreach(topic =>
       val producer = pulsarClient.newProducer.topic(topic).create()
   
       val from = 4096L
       val to = from + 10
       for (i <- from until to)
           producer.send(scala.math.BigInt(i).toByteArray)
   
       producer.flush()
       producer.close()
   )
   
   println(s"Sleep started at ${java.time.LocalTime.now()}")
   Thread.sleep(10 * 1000)
   println(s"Sleep finished at ${java.time.LocalTime.now()}")
   
   // All the topics should be discovered at this moment
   topics.foreach(topic =>
       val producer = pulsarClient.newProducer.topic(topic).create()
   
       val from = 4096L
       val to = from + 10
       for (i <- from until to)
           producer.send(scala.math.BigInt(i).toByteArray)
   
       producer.flush()
       producer.close()
   )
   ```
   
   Logs:
   
   ```
   11:18:06.573 [ZScheduler-Worker-4] INFO  o.a.p.c.i.ProducerStatsRecorderImpl 
- Starting Pulsar producer perf with config: 
{"topicName":"persistent://new-tenant/new-namespace/topic-a","producerName":null,"sendTimeoutMs":30000,"blockIfQueueFull":false,"maxPendingMessages":0,"maxPendingMessagesAcrossPartitions":0,"messageRoutingMode":"RoundRobinPartition","hashingScheme":"JavaStringHash","cryptoFailureAction":"FAIL","batchingMaxPublishDelayMicros":1000,"batchingPartitionSwitchFrequencyByPublishDelay":10,"batchingMaxMessages":1000,"batchingMaxBytes":131072,"batchingEnabled":true,"chunkingEnabled":false,"chunkMaxMessageSize":-1,"encryptionKeys":[],"compressionType":"NONE","initialSequenceId":null,"autoUpdatePartitions":true,"autoUpdatePartitionsIntervalSeconds":60,"multiSchema":true,"accessMode":"Shared","lazyStartPartitionedProducers":false,"properties":{},"initialSubscriptionName":null}
   11:18:06.611 [ZScheduler-Worker-4] INFO  o.a.p.c.i.ProducerStatsRecorderImpl 
- Pulsar client config: 
{"serviceUrl":"pulsar://localhost:6650","authPluginClassName":null,"authParams":null,"authParamMap":null,"operationTimeoutMs":30000,"lookupTimeoutMs":30000,"statsIntervalSeconds":60,"numIoThreads":12,"numListenerThreads":12,"connectionsPerBroker":1,"connectionMaxIdleSeconds":180,"useTcpNoDelay":true,"useTls":false,"tlsKeyFilePath":null,"tlsCertificateFilePath":null,"tlsTrustCertsFilePath":null,"tlsAllowInsecureConnection":false,"tlsHostnameVerificationEnable":false,"concurrentLookupRequest":5000,"maxLookupRequest":50000,"maxLookupRedirects":20,"maxNumberOfRejectedRequestPerConnection":50,"keepAliveIntervalSeconds":30,"connectionTimeoutMs":10000,"requestTimeoutMs":60000,"readTimeoutMs":60000,"autoCertRefreshSeconds":300,"initialBackoffIntervalNanos":100000000,"maxBackoffIntervalNanos":60000000000,"enableBusyWait":false,"listenerName":null,"useKeyStoreTls":false,"sslProvider":null,"t
 
lsKeyStoreType":"JKS","tlsKeyStorePath":null,"tlsKeyStorePassword":null,"tlsTrustStoreType":"JKS","tlsTrustStorePath":null,"tlsTrustStorePassword":null,"tlsCiphers":[],"tlsProtocols":[],"memoryLimitBytes":67108864,"proxyServiceUrl":null,"proxyProtocol":null,"enableTransaction":false,"dnsLookupBindAddress":null,"dnsLookupBindPort":0,"dnsServerAddresses":[],"socks5ProxyAddress":null,"socks5ProxyUsername":null,"socks5ProxyPassword":null,"description":null}
   11:18:06.622 [pulsar-client-io-3-3] INFO  
o.a.pulsar.client.impl.ProducerImpl - 
[persistent://new-tenant/new-namespace/topic-a] [null] Creating producer on cnx 
[id: 0xffcc2c45, L:/127.0.0.1:50490 - R:localhost/127.0.0.1:6650]
   11:18:06.683 [pulsar-client-io-3-3] INFO  
o.a.pulsar.client.impl.ProducerImpl - 
[persistent://new-tenant/new-namespace/topic-a] [standalone-0-7019] Created 
producer on cnx [id: 0xffcc2c45, L:/127.0.0.1:50490 - 
R:localhost/127.0.0.1:6650]
   11:18:06.798 [ZScheduler-Worker-4] INFO  o.a.p.c.i.ProducerStatsRecorderImpl 
- [persistent://new-tenant/new-namespace/topic-a] [standalone-0-7019] --- 
Publish throughput: 54.48 msg/s --- 0.00 Mbit/s --- Latency: med: 5.000 ms - 
95pct: 41.000 ms - 99pct: 41.000 ms - 99.9pct: 41.000 ms - max: 41.000 ms --- 
BatchSize: med: 1.000 - 95pct: 1.000 - 99pct: 1.000 - 99.9pct: 1.000 - max: 
1.000 --- MsgSize: med: 2.000 bytes - 95pct: 2.000 bytes - 99pct: 2.000 bytes - 
99.9pct: 2.000 bytes - max: 2.000 bytes --- Ack received rate: 54.48 ack/s --- 
Failed messages: 0 --- Pending messages: 0
   11:18:06.802 [pulsar-client-io-3-3] INFO  
o.a.pulsar.client.impl.ProducerImpl - 
[persistent://new-tenant/new-namespace/topic-a] [standalone-0-7019] Closed 
Producer
   11:18:06.811 [pulsar-client-io-3-3] INFO  
o.a.p.c.i.ProducerStatsRecorderImpl - Starting Pulsar producer perf with 
config: 
{"topicName":"persistent://new-tenant/new-namespace/topic-b","producerName":null,"sendTimeoutMs":30000,"blockIfQueueFull":false,"maxPendingMessages":0,"maxPendingMessagesAcrossPartitions":0,"messageRoutingMode":"RoundRobinPartition","hashingScheme":"JavaStringHash","cryptoFailureAction":"FAIL","batchingMaxPublishDelayMicros":1000,"batchingPartitionSwitchFrequencyByPublishDelay":10,"batchingMaxMessages":1000,"batchingMaxBytes":131072,"batchingEnabled":true,"chunkingEnabled":false,"chunkMaxMessageSize":-1,"encryptionKeys":[],"compressionType":"NONE","initialSequenceId":null,"autoUpdatePartitions":true,"autoUpdatePartitionsIntervalSeconds":60,"multiSchema":true,"accessMode":"Shared","lazyStartPartitionedProducers":false,"properties":{},"initialSubscriptionName":null}
   11:18:06.828 [pulsar-client-io-3-3] INFO  
o.a.p.c.i.ProducerStatsRecorderImpl - Pulsar client config: 
{"serviceUrl":"pulsar://localhost:6650","authPluginClassName":null,"authParams":null,"authParamMap":null,"operationTimeoutMs":30000,"lookupTimeoutMs":30000,"statsIntervalSeconds":60,"numIoThreads":12,"numListenerThreads":12,"connectionsPerBroker":1,"connectionMaxIdleSeconds":180,"useTcpNoDelay":true,"useTls":false,"tlsKeyFilePath":null,"tlsCertificateFilePath":null,"tlsTrustCertsFilePath":null,"tlsAllowInsecureConnection":false,"tlsHostnameVerificationEnable":false,"concurrentLookupRequest":5000,"maxLookupRequest":50000,"maxLookupRedirects":20,"maxNumberOfRejectedRequestPerConnection":50,"keepAliveIntervalSeconds":30,"connectionTimeoutMs":10000,"requestTimeoutMs":60000,"readTimeoutMs":60000,"autoCertRefreshSeconds":300,"initialBackoffIntervalNanos":100000000,"maxBackoffIntervalNanos":60000000000,"enableBusyWait":false,"listenerName":null,"useKeyStoreTls":false,"sslProvider":null,"
 
tlsKeyStoreType":"JKS","tlsKeyStorePath":null,"tlsKeyStorePassword":null,"tlsTrustStoreType":"JKS","tlsTrustStorePath":null,"tlsTrustStorePassword":null,"tlsCiphers":[],"tlsProtocols":[],"memoryLimitBytes":67108864,"proxyServiceUrl":null,"proxyProtocol":null,"enableTransaction":false,"dnsLookupBindAddress":null,"dnsLookupBindPort":0,"dnsServerAddresses":[],"socks5ProxyAddress":null,"socks5ProxyUsername":null,"socks5ProxyPassword":null,"description":null}
   11:18:06.831 [pulsar-client-io-3-3] INFO  
o.a.pulsar.client.impl.ProducerImpl - 
[persistent://new-tenant/new-namespace/topic-b] [null] Creating producer on cnx 
[id: 0xffcc2c45, L:/127.0.0.1:50490 - R:localhost/127.0.0.1:6650]
   11:18:06.874 [pulsar-client-io-3-3] INFO  
o.a.pulsar.client.impl.ProducerImpl - 
[persistent://new-tenant/new-namespace/topic-b] [standalone-0-7020] Created 
producer on cnx [id: 0xffcc2c45, L:/127.0.0.1:50490 - 
R:localhost/127.0.0.1:6650]
   11:18:06.942 [ZScheduler-Worker-4] INFO  o.a.p.c.i.ProducerStatsRecorderImpl 
- [persistent://new-tenant/new-namespace/topic-b] [standalone-0-7020] --- 
Publish throughput: 89.13 msg/s --- 0.00 Mbit/s --- Latency: med: 6.000 ms - 
95pct: 7.000 ms - 99pct: 7.000 ms - 99.9pct: 7.000 ms - max: 7.000 ms --- 
BatchSize: med: 1.000 - 95pct: 1.000 - 99pct: 1.000 - 99.9pct: 1.000 - max: 
1.000 --- MsgSize: med: 2.000 bytes - 95pct: 2.000 bytes - 99pct: 2.000 bytes - 
99.9pct: 2.000 bytes - max: 2.000 bytes --- Ack received rate: 89.13 ack/s --- 
Failed messages: 0 --- Pending messages: 0
   11:18:06.945 [pulsar-client-io-3-3] INFO  
o.a.pulsar.client.impl.ProducerImpl - 
[persistent://new-tenant/new-namespace/topic-b] [standalone-0-7020] Closed 
Producer
   11:18:06.949 [pulsar-client-io-3-3] INFO  
o.a.p.c.i.ProducerStatsRecorderImpl - Starting Pulsar producer perf with 
config: 
{"topicName":"non-persistent://new-tenant/new-namespace/topic-c","producerName":null,"sendTimeoutMs":30000,"blockIfQueueFull":false,"maxPendingMessages":0,"maxPendingMessagesAcrossPartitions":0,"messageRoutingMode":"RoundRobinPartition","hashingScheme":"JavaStringHash","cryptoFailureAction":"FAIL","batchingMaxPublishDelayMicros":1000,"batchingPartitionSwitchFrequencyByPublishDelay":10,"batchingMaxMessages":1000,"batchingMaxBytes":131072,"batchingEnabled":true,"chunkingEnabled":false,"chunkMaxMessageSize":-1,"encryptionKeys":[],"compressionType":"NONE","initialSequenceId":null,"autoUpdatePartitions":true,"autoUpdatePartitionsIntervalSeconds":60,"multiSchema":true,"accessMode":"Shared","lazyStartPartitionedProducers":false,"properties":{},"initialSubscriptionName":null}
   11:18:06.950 [pulsar-client-io-3-3] INFO  
o.a.p.c.i.ProducerStatsRecorderImpl - Pulsar client config: 
{"serviceUrl":"pulsar://localhost:6650","authPluginClassName":null,"authParams":null,"authParamMap":null,"operationTimeoutMs":30000,"lookupTimeoutMs":30000,"statsIntervalSeconds":60,"numIoThreads":12,"numListenerThreads":12,"connectionsPerBroker":1,"connectionMaxIdleSeconds":180,"useTcpNoDelay":true,"useTls":false,"tlsKeyFilePath":null,"tlsCertificateFilePath":null,"tlsTrustCertsFilePath":null,"tlsAllowInsecureConnection":false,"tlsHostnameVerificationEnable":false,"concurrentLookupRequest":5000,"maxLookupRequest":50000,"maxLookupRedirects":20,"maxNumberOfRejectedRequestPerConnection":50,"keepAliveIntervalSeconds":30,"connectionTimeoutMs":10000,"requestTimeoutMs":60000,"readTimeoutMs":60000,"autoCertRefreshSeconds":300,"initialBackoffIntervalNanos":100000000,"maxBackoffIntervalNanos":60000000000,"enableBusyWait":false,"listenerName":null,"useKeyStoreTls":false,"sslProvider":null,"
 
tlsKeyStoreType":"JKS","tlsKeyStorePath":null,"tlsKeyStorePassword":null,"tlsTrustStoreType":"JKS","tlsTrustStorePath":null,"tlsTrustStorePassword":null,"tlsCiphers":[],"tlsProtocols":[],"memoryLimitBytes":67108864,"proxyServiceUrl":null,"proxyProtocol":null,"enableTransaction":false,"dnsLookupBindAddress":null,"dnsLookupBindPort":0,"dnsServerAddresses":[],"socks5ProxyAddress":null,"socks5ProxyUsername":null,"socks5ProxyPassword":null,"description":null}
   11:18:06.953 [pulsar-client-io-3-3] INFO  
o.a.pulsar.client.impl.ProducerImpl - 
[non-persistent://new-tenant/new-namespace/topic-c] [null] Creating producer on 
cnx [id: 0xffcc2c45, L:/127.0.0.1:50490 - R:localhost/127.0.0.1:6650]
   11:18:06.956 [pulsar-client-io-3-3] INFO  
o.a.pulsar.client.impl.ProducerImpl - 
[non-persistent://new-tenant/new-namespace/topic-c] [standalone-0-7021] Created 
producer on cnx [id: 0xffcc2c45, L:/127.0.0.1:50490 - 
R:localhost/127.0.0.1:6650]
   11:18:06.985 [ZScheduler-Worker-4] INFO  o.a.p.c.i.ProducerStatsRecorderImpl 
- [non-persistent://new-tenant/new-namespace/topic-c] [standalone-0-7021] --- 
Publish throughput: 286.08 msg/s --- 0.00 Mbit/s --- Latency: med: 2.000 ms - 
95pct: 3.000 ms - 99pct: 3.000 ms - 99.9pct: 3.000 ms - max: 3.000 ms --- 
BatchSize: med: 1.000 - 95pct: 1.000 - 99pct: 1.000 - 99.9pct: 1.000 - max: 
1.000 --- MsgSize: med: 2.000 bytes - 95pct: 2.000 bytes - 99pct: 2.000 bytes - 
99.9pct: 2.000 bytes - max: 2.000 bytes --- Ack received rate: 286.08 ack/s --- 
Failed messages: 0 --- Pending messages: 0
   11:18:06.988 [pulsar-client-io-3-3] INFO  
o.a.pulsar.client.impl.ProducerImpl - 
[non-persistent://new-tenant/new-namespace/topic-c] [standalone-0-7021] Closed 
Producer
   11:18:06.991 [pulsar-client-io-3-3] INFO  
o.a.p.c.i.ProducerStatsRecorderImpl - Starting Pulsar producer perf with 
config: 
{"topicName":"non-persistent://new-tenant/new-namespace/topic-d","producerName":null,"sendTimeoutMs":30000,"blockIfQueueFull":false,"maxPendingMessages":0,"maxPendingMessagesAcrossPartitions":0,"messageRoutingMode":"RoundRobinPartition","hashingScheme":"JavaStringHash","cryptoFailureAction":"FAIL","batchingMaxPublishDelayMicros":1000,"batchingPartitionSwitchFrequencyByPublishDelay":10,"batchingMaxMessages":1000,"batchingMaxBytes":131072,"batchingEnabled":true,"chunkingEnabled":false,"chunkMaxMessageSize":-1,"encryptionKeys":[],"compressionType":"NONE","initialSequenceId":null,"autoUpdatePartitions":true,"autoUpdatePartitionsIntervalSeconds":60,"multiSchema":true,"accessMode":"Shared","lazyStartPartitionedProducers":false,"properties":{},"initialSubscriptionName":null}
   11:18:06.991 [pulsar-client-io-3-3] INFO  
o.a.p.c.i.ProducerStatsRecorderImpl - Pulsar client config: 
{"serviceUrl":"pulsar://localhost:6650","authPluginClassName":null,"authParams":null,"authParamMap":null,"operationTimeoutMs":30000,"lookupTimeoutMs":30000,"statsIntervalSeconds":60,"numIoThreads":12,"numListenerThreads":12,"connectionsPerBroker":1,"connectionMaxIdleSeconds":180,"useTcpNoDelay":true,"useTls":false,"tlsKeyFilePath":null,"tlsCertificateFilePath":null,"tlsTrustCertsFilePath":null,"tlsAllowInsecureConnection":false,"tlsHostnameVerificationEnable":false,"concurrentLookupRequest":5000,"maxLookupRequest":50000,"maxLookupRedirects":20,"maxNumberOfRejectedRequestPerConnection":50,"keepAliveIntervalSeconds":30,"connectionTimeoutMs":10000,"requestTimeoutMs":60000,"readTimeoutMs":60000,"autoCertRefreshSeconds":300,"initialBackoffIntervalNanos":100000000,"maxBackoffIntervalNanos":60000000000,"enableBusyWait":false,"listenerName":null,"useKeyStoreTls":false,"sslProvider":null,"
 
tlsKeyStoreType":"JKS","tlsKeyStorePath":null,"tlsKeyStorePassword":null,"tlsTrustStoreType":"JKS","tlsTrustStorePath":null,"tlsTrustStorePassword":null,"tlsCiphers":[],"tlsProtocols":[],"memoryLimitBytes":67108864,"proxyServiceUrl":null,"proxyProtocol":null,"enableTransaction":false,"dnsLookupBindAddress":null,"dnsLookupBindPort":0,"dnsServerAddresses":[],"socks5ProxyAddress":null,"socks5ProxyUsername":null,"socks5ProxyPassword":null,"description":null}
   11:18:06.993 [pulsar-client-io-3-3] INFO  
o.a.pulsar.client.impl.ProducerImpl - 
[non-persistent://new-tenant/new-namespace/topic-d] [null] Creating producer on 
cnx [id: 0xffcc2c45, L:/127.0.0.1:50490 - R:localhost/127.0.0.1:6650]
   11:18:06.999 [pulsar-client-io-3-3] INFO  
o.a.pulsar.client.impl.ProducerImpl - 
[non-persistent://new-tenant/new-namespace/topic-d] [standalone-0-7022] Created 
producer on cnx [id: 0xffcc2c45, L:/127.0.0.1:50490 - 
R:localhost/127.0.0.1:6650]
   11:18:07.029 [ZScheduler-Worker-4] INFO  o.a.p.c.i.ProducerStatsRecorderImpl 
- [non-persistent://new-tenant/new-namespace/topic-d] [standalone-0-7022] --- 
Publish throughput: 265.99 msg/s --- 0.00 Mbit/s --- Latency: med: 2.000 ms - 
95pct: 3.000 ms - 99pct: 3.000 ms - 99.9pct: 3.000 ms - max: 3.000 ms --- 
BatchSize: med: 1.000 - 95pct: 1.000 - 99pct: 1.000 - 99.9pct: 1.000 - max: 
1.000 --- MsgSize: med: 2.000 bytes - 95pct: 2.000 bytes - 99pct: 2.000 bytes - 
99.9pct: 2.000 bytes - max: 2.000 bytes --- Ack received rate: 265.99 ack/s --- 
Failed messages: 0 --- Pending messages: 0
   11:18:07.032 [pulsar-client-io-3-3] INFO  
o.a.pulsar.client.impl.ProducerImpl - 
[non-persistent://new-tenant/new-namespace/topic-d] [standalone-0-7022] Closed 
Producer
   Sleep started at 11:18:07.032628
   11:18:07.588 [pulsar-client-io-3-3] INFO  
o.a.p.c.i.ConsumerStatsRecorderImpl - Starting Pulsar consumer status recorder 
with config: 
{"topicNames":[],"topicsPattern":"new-tenant/new-namespace/.*","subscriptionName":"new-subscription","subscriptionType":"Exclusive","subscriptionProperties":null,"subscriptionMode":"Durable","receiverQueueSize":1000,"acknowledgementsGroupTimeMicros":100000,"maxAcknowledgmentGroupSize":1000,"negativeAckRedeliveryDelayMicros":60000000,"maxTotalReceiverQueueSizeAcrossPartitions":50000,"consumerName":"4dbad","ackTimeoutMillis":0,"tickDurationMillis":1000,"priorityLevel":0,"maxPendingChunkedMessage":10,"autoAckOldestChunkedMessageOnQueueFull":false,"expireTimeOfIncompleteChunkedMessageMillis":60000,"cryptoFailureAction":"FAIL","properties":{},"readCompacted":false,"subscriptionInitialPosition":"Latest","patternAutoDiscoveryPeriod":1,"regexSubscriptionMode":"AllTopics","deadLetterPolicy":null,"retryEnable":false,"autoUpdatePartitions":true,"autoUpdatePart
 
itionsIntervalSeconds":60,"replicateSubscriptionState":false,"resetIncludeHead":false,"batchIndexAckEnabled":false,"ackReceiptEnabled":false,"poolMessages":false,"startPaused":false,"autoScaledReceiverQueueSizeEnabled":false,"topicConfigurations":[],"maxPendingChuckedMessage":10}
   11:18:07.589 [pulsar-client-io-3-3] INFO  
o.a.p.c.i.ConsumerStatsRecorderImpl - Pulsar client config: 
{"serviceUrl":"pulsar://localhost:6650","authPluginClassName":null,"authParams":null,"authParamMap":null,"operationTimeoutMs":30000,"lookupTimeoutMs":30000,"statsIntervalSeconds":60,"numIoThreads":12,"numListenerThreads":12,"connectionsPerBroker":1,"connectionMaxIdleSeconds":180,"useTcpNoDelay":true,"useTls":false,"tlsKeyFilePath":null,"tlsCertificateFilePath":null,"tlsTrustCertsFilePath":null,"tlsAllowInsecureConnection":false,"tlsHostnameVerificationEnable":false,"concurrentLookupRequest":5000,"maxLookupRequest":50000,"maxLookupRedirects":20,"maxNumberOfRejectedRequestPerConnection":50,"keepAliveIntervalSeconds":30,"connectionTimeoutMs":10000,"requestTimeoutMs":60000,"readTimeoutMs":60000,"autoCertRefreshSeconds":300,"initialBackoffIntervalNanos":100000000,"maxBackoffIntervalNanos":60000000000,"enableBusyWait":false,"listenerName":null,"useKeyStoreTls":false,"sslProvider":null,"
 
tlsKeyStoreType":"JKS","tlsKeyStorePath":null,"tlsKeyStorePassword":null,"tlsTrustStoreType":"JKS","tlsTrustStorePath":null,"tlsTrustStorePassword":null,"tlsCiphers":[],"tlsProtocols":[],"memoryLimitBytes":67108864,"proxyServiceUrl":null,"proxyProtocol":null,"enableTransaction":false,"dnsLookupBindAddress":null,"dnsLookupBindPort":0,"dnsServerAddresses":[],"socks5ProxyAddress":null,"socks5ProxyUsername":null,"socks5ProxyPassword":null,"description":null}
   11:18:07.599 [pulsar-client-io-3-3] INFO  
o.a.p.c.i.ConsumerStatsRecorderImpl - Starting Pulsar consumer status recorder 
with config: 
{"topicNames":[],"topicsPattern":"new-tenant/new-namespace/.*","subscriptionName":"new-subscription","subscriptionType":"Exclusive","subscriptionProperties":null,"subscriptionMode":"Durable","receiverQueueSize":1000,"acknowledgementsGroupTimeMicros":100000,"maxAcknowledgmentGroupSize":1000,"negativeAckRedeliveryDelayMicros":60000000,"maxTotalReceiverQueueSizeAcrossPartitions":50000,"consumerName":"4dbad","ackTimeoutMillis":0,"tickDurationMillis":1000,"priorityLevel":0,"maxPendingChunkedMessage":10,"autoAckOldestChunkedMessageOnQueueFull":false,"expireTimeOfIncompleteChunkedMessageMillis":60000,"cryptoFailureAction":"FAIL","properties":{},"readCompacted":false,"subscriptionInitialPosition":"Latest","patternAutoDiscoveryPeriod":1,"regexSubscriptionMode":"AllTopics","deadLetterPolicy":null,"retryEnable":false,"autoUpdatePartitions":true,"autoUpdatePart
 
itionsIntervalSeconds":60,"replicateSubscriptionState":false,"resetIncludeHead":false,"batchIndexAckEnabled":false,"ackReceiptEnabled":false,"poolMessages":false,"startPaused":false,"autoScaledReceiverQueueSizeEnabled":false,"topicConfigurations":[],"maxPendingChuckedMessage":10}
   11:18:07.599 [pulsar-client-io-3-3] INFO  
o.a.p.c.i.ConsumerStatsRecorderImpl - Pulsar client config: 
{"serviceUrl":"pulsar://localhost:6650","authPluginClassName":null,"authParams":null,"authParamMap":null,"operationTimeoutMs":30000,"lookupTimeoutMs":30000,"statsIntervalSeconds":60,"numIoThreads":12,"numListenerThreads":12,"connectionsPerBroker":1,"connectionMaxIdleSeconds":180,"useTcpNoDelay":true,"useTls":false,"tlsKeyFilePath":null,"tlsCertificateFilePath":null,"tlsTrustCertsFilePath":null,"tlsAllowInsecureConnection":false,"tlsHostnameVerificationEnable":false,"concurrentLookupRequest":5000,"maxLookupRequest":50000,"maxLookupRedirects":20,"maxNumberOfRejectedRequestPerConnection":50,"keepAliveIntervalSeconds":30,"connectionTimeoutMs":10000,"requestTimeoutMs":60000,"readTimeoutMs":60000,"autoCertRefreshSeconds":300,"initialBackoffIntervalNanos":100000000,"maxBackoffIntervalNanos":60000000000,"enableBusyWait":false,"listenerName":null,"useKeyStoreTls":false,"sslProvider":null,"
 
tlsKeyStoreType":"JKS","tlsKeyStorePath":null,"tlsKeyStorePassword":null,"tlsTrustStoreType":"JKS","tlsTrustStorePath":null,"tlsTrustStorePassword":null,"tlsCiphers":[],"tlsProtocols":[],"memoryLimitBytes":67108864,"proxyServiceUrl":null,"proxyProtocol":null,"enableTransaction":false,"dnsLookupBindAddress":null,"dnsLookupBindPort":0,"dnsServerAddresses":[],"socks5ProxyAddress":null,"socks5ProxyUsername":null,"socks5ProxyPassword":null,"description":null}
   11:18:07.602 [pulsar-client-io-3-3] INFO  
o.a.pulsar.client.impl.ConsumerImpl - 
[persistent://new-tenant/new-namespace/topic-a][new-subscription] Subscribing 
to topic on cnx [id: 0xffcc2c45, L:/127.0.0.1:50490 - 
R:localhost/127.0.0.1:6650], consumerId 0
   11:18:07.611 [pulsar-client-io-3-3] INFO  
o.a.pulsar.client.impl.ConsumerImpl - 
[persistent://new-tenant/new-namespace/topic-b][new-subscription] Subscribing 
to topic on cnx [id: 0xffcc2c45, L:/127.0.0.1:50490 - 
R:localhost/127.0.0.1:6650], consumerId 1
   11:18:07.623 [pulsar-client-io-3-3] INFO  
o.a.pulsar.client.impl.ConsumerImpl - 
[persistent://new-tenant/new-namespace/topic-a][new-subscription] Subscribed to 
topic on localhost/127.0.0.1:6650 -- consumer: 0
   11:18:07.627 [pulsar-client-io-3-3] INFO  
o.a.p.c.impl.MultiTopicsConsumerImpl - [MultiTopicsConsumer-ed64d] 
[new-subscription] Success subscribe new topic 
persistent://new-tenant/new-namespace/topic-a in topics consumer, partitions: 
0, allTopicPartitionsNumber: 2
   11:18:07.628 [pulsar-client-io-3-3] INFO  
o.a.pulsar.client.impl.ConsumerImpl - 
[persistent://new-tenant/new-namespace/topic-b][new-subscription] Subscribed to 
topic on localhost/127.0.0.1:6650 -- consumer: 1
   11:18:07.629 [pulsar-client-io-3-3] INFO  
o.a.p.c.impl.MultiTopicsConsumerImpl - [MultiTopicsConsumer-ed64d] 
[new-subscription] Success subscribe new topic 
persistent://new-tenant/new-namespace/topic-b in topics consumer, partitions: 
0, allTopicPartitionsNumber: 2
   Sleep finished at 11:18:17.034323
   11:18:17.041 [pulsar-client-io-3-3] INFO  
o.a.p.c.i.ProducerStatsRecorderImpl - Starting Pulsar producer perf with 
config: 
{"topicName":"persistent://new-tenant/new-namespace/topic-a","producerName":null,"sendTimeoutMs":30000,"blockIfQueueFull":false,"maxPendingMessages":0,"maxPendingMessagesAcrossPartitions":0,"messageRoutingMode":"RoundRobinPartition","hashingScheme":"JavaStringHash","cryptoFailureAction":"FAIL","batchingMaxPublishDelayMicros":1000,"batchingPartitionSwitchFrequencyByPublishDelay":10,"batchingMaxMessages":1000,"batchingMaxBytes":131072,"batchingEnabled":true,"chunkingEnabled":false,"chunkMaxMessageSize":-1,"encryptionKeys":[],"compressionType":"NONE","initialSequenceId":null,"autoUpdatePartitions":true,"autoUpdatePartitionsIntervalSeconds":60,"multiSchema":true,"accessMode":"Shared","lazyStartPartitionedProducers":false,"properties":{},"initialSubscriptionName":null}
   11:18:17.043 [pulsar-client-io-3-3] INFO  
o.a.p.c.i.ProducerStatsRecorderImpl - Pulsar client config: 
{"serviceUrl":"pulsar://localhost:6650","authPluginClassName":null,"authParams":null,"authParamMap":null,"operationTimeoutMs":30000,"lookupTimeoutMs":30000,"statsIntervalSeconds":60,"numIoThreads":12,"numListenerThreads":12,"connectionsPerBroker":1,"connectionMaxIdleSeconds":180,"useTcpNoDelay":true,"useTls":false,"tlsKeyFilePath":null,"tlsCertificateFilePath":null,"tlsTrustCertsFilePath":null,"tlsAllowInsecureConnection":false,"tlsHostnameVerificationEnable":false,"concurrentLookupRequest":5000,"maxLookupRequest":50000,"maxLookupRedirects":20,"maxNumberOfRejectedRequestPerConnection":50,"keepAliveIntervalSeconds":30,"connectionTimeoutMs":10000,"requestTimeoutMs":60000,"readTimeoutMs":60000,"autoCertRefreshSeconds":300,"initialBackoffIntervalNanos":100000000,"maxBackoffIntervalNanos":60000000000,"enableBusyWait":false,"listenerName":null,"useKeyStoreTls":false,"sslProvider":null,"
 
tlsKeyStoreType":"JKS","tlsKeyStorePath":null,"tlsKeyStorePassword":null,"tlsTrustStoreType":"JKS","tlsTrustStorePath":null,"tlsTrustStorePassword":null,"tlsCiphers":[],"tlsProtocols":[],"memoryLimitBytes":67108864,"proxyServiceUrl":null,"proxyProtocol":null,"enableTransaction":false,"dnsLookupBindAddress":null,"dnsLookupBindPort":0,"dnsServerAddresses":[],"socks5ProxyAddress":null,"socks5ProxyUsername":null,"socks5ProxyPassword":null,"description":null}
   11:18:17.046 [pulsar-client-io-3-3] INFO  
o.a.pulsar.client.impl.ProducerImpl - 
[persistent://new-tenant/new-namespace/topic-a] [null] Creating producer on cnx 
[id: 0xffcc2c45, L:/127.0.0.1:50490 - R:localhost/127.0.0.1:6650]
   11:18:17.058 [pulsar-client-io-3-3] INFO  
o.a.pulsar.client.impl.ProducerImpl - 
[persistent://new-tenant/new-namespace/topic-a] [standalone-0-7023] Created 
producer on cnx [id: 0xffcc2c45, L:/127.0.0.1:50490 - 
R:localhost/127.0.0.1:6650]
   Received: 16,0. From topic: persistent://new-tenant/new-namespace/topic-a
   Received: 16,1. From topic: persistent://new-tenant/new-namespace/topic-a
   Received: 16,2. From topic: persistent://new-tenant/new-namespace/topic-a
   Received: 16,3. From topic: persistent://new-tenant/new-namespace/topic-a
   Received: 16,4. From topic: persistent://new-tenant/new-namespace/topic-a
   Received: 16,5. From topic: persistent://new-tenant/new-namespace/topic-a
   Received: 16,6. From topic: persistent://new-tenant/new-namespace/topic-a
   Received: 16,7. From topic: persistent://new-tenant/new-namespace/topic-a
   Received: 16,8. From topic: persistent://new-tenant/new-namespace/topic-a
   11:18:17.341 [ZScheduler-Worker-4] INFO  o.a.p.c.i.ProducerStatsRecorderImpl 
- [persistent://new-tenant/new-namespace/topic-a] [standalone-0-7023] --- 
Publish throughput: 33.60 msg/s --- 0.00 Mbit/s --- Latency: med: 21.000 ms - 
95pct: 75.000 ms - 99pct: 75.000 ms - 99.9pct: 75.000 ms - max: 75.000 ms --- 
BatchSize: med: 1.000 - 95pct: 1.000 - 99pct: 1.000 - 99.9pct: 1.000 - max: 
1.000 --- MsgSize: med: 2.000 bytes - 95pct: 2.000 bytes - 99pct: 2.000 bytes - 
99.9pct: 2.000 bytes - max: 2.000 bytes --- Ack received rate: 33.60 ack/s --- 
Failed messages: 0 --- Pending messages: 0
   Received: 16,9. From topic: persistent://new-tenant/new-namespace/topic-a
   11:18:17.346 [pulsar-client-io-3-3] INFO  
o.a.pulsar.client.impl.ProducerImpl - 
[persistent://new-tenant/new-namespace/topic-a] [standalone-0-7023] Closed 
Producer
   11:18:17.362 [pulsar-client-io-3-3] INFO  
o.a.p.c.i.ProducerStatsRecorderImpl - Starting Pulsar producer perf with 
config: 
{"topicName":"persistent://new-tenant/new-namespace/topic-b","producerName":null,"sendTimeoutMs":30000,"blockIfQueueFull":false,"maxPendingMessages":0,"maxPendingMessagesAcrossPartitions":0,"messageRoutingMode":"RoundRobinPartition","hashingScheme":"JavaStringHash","cryptoFailureAction":"FAIL","batchingMaxPublishDelayMicros":1000,"batchingPartitionSwitchFrequencyByPublishDelay":10,"batchingMaxMessages":1000,"batchingMaxBytes":131072,"batchingEnabled":true,"chunkingEnabled":false,"chunkMaxMessageSize":-1,"encryptionKeys":[],"compressionType":"NONE","initialSequenceId":null,"autoUpdatePartitions":true,"autoUpdatePartitionsIntervalSeconds":60,"multiSchema":true,"accessMode":"Shared","lazyStartPartitionedProducers":false,"properties":{},"initialSubscriptionName":null}
   11:18:17.363 [pulsar-client-io-3-3] INFO  
o.a.p.c.i.ProducerStatsRecorderImpl - Pulsar client config: 
{"serviceUrl":"pulsar://localhost:6650","authPluginClassName":null,"authParams":null,"authParamMap":null,"operationTimeoutMs":30000,"lookupTimeoutMs":30000,"statsIntervalSeconds":60,"numIoThreads":12,"numListenerThreads":12,"connectionsPerBroker":1,"connectionMaxIdleSeconds":180,"useTcpNoDelay":true,"useTls":false,"tlsKeyFilePath":null,"tlsCertificateFilePath":null,"tlsTrustCertsFilePath":null,"tlsAllowInsecureConnection":false,"tlsHostnameVerificationEnable":false,"concurrentLookupRequest":5000,"maxLookupRequest":50000,"maxLookupRedirects":20,"maxNumberOfRejectedRequestPerConnection":50,"keepAliveIntervalSeconds":30,"connectionTimeoutMs":10000,"requestTimeoutMs":60000,"readTimeoutMs":60000,"autoCertRefreshSeconds":300,"initialBackoffIntervalNanos":100000000,"maxBackoffIntervalNanos":60000000000,"enableBusyWait":false,"listenerName":null,"useKeyStoreTls":false,"sslProvider":null,"
 
tlsKeyStoreType":"JKS","tlsKeyStorePath":null,"tlsKeyStorePassword":null,"tlsTrustStoreType":"JKS","tlsTrustStorePath":null,"tlsTrustStorePassword":null,"tlsCiphers":[],"tlsProtocols":[],"memoryLimitBytes":67108864,"proxyServiceUrl":null,"proxyProtocol":null,"enableTransaction":false,"dnsLookupBindAddress":null,"dnsLookupBindPort":0,"dnsServerAddresses":[],"socks5ProxyAddress":null,"socks5ProxyUsername":null,"socks5ProxyPassword":null,"description":null}
   11:18:17.367 [pulsar-client-io-3-3] INFO  
o.a.pulsar.client.impl.ProducerImpl - 
[persistent://new-tenant/new-namespace/topic-b] [null] Creating producer on cnx 
[id: 0xffcc2c45, L:/127.0.0.1:50490 - R:localhost/127.0.0.1:6650]
   11:18:17.371 [pulsar-client-io-3-3] INFO  
o.a.pulsar.client.impl.ProducerImpl - 
[persistent://new-tenant/new-namespace/topic-b] [standalone-0-7024] Created 
producer on cnx [id: 0xffcc2c45, L:/127.0.0.1:50490 - 
R:localhost/127.0.0.1:6650]
   Received: 16,0. From topic: persistent://new-tenant/new-namespace/topic-b
   Received: 16,1. From topic: persistent://new-tenant/new-namespace/topic-b
   Received: 16,2. From topic: persistent://new-tenant/new-namespace/topic-b
   Received: 16,3. From topic: persistent://new-tenant/new-namespace/topic-b
   Received: 16,4. From topic: persistent://new-tenant/new-namespace/topic-b
   Received: 16,5. From topic: persistent://new-tenant/new-namespace/topic-b
   Received: 16,6. From topic: persistent://new-tenant/new-namespace/topic-b
   Received: 16,7. From topic: persistent://new-tenant/new-namespace/topic-b
   Received: 16,8. From topic: persistent://new-tenant/new-namespace/topic-b
   11:18:17.638 [ZScheduler-Worker-4] INFO  o.a.p.c.i.ProducerStatsRecorderImpl 
- [persistent://new-tenant/new-namespace/topic-b] [standalone-0-7024] --- 
Publish throughput: 36.57 msg/s --- 0.00 Mbit/s --- Latency: med: 22.000 ms - 
95pct: 50.000 ms - 99pct: 50.000 ms - 99.9pct: 50.000 ms - max: 50.000 ms --- 
BatchSize: med: 1.000 - 95pct: 1.000 - 99pct: 1.000 - 99.9pct: 1.000 - max: 
1.000 --- MsgSize: med: 2.000 bytes - 95pct: 2.000 bytes - 99pct: 2.000 bytes - 
99.9pct: 2.000 bytes - max: 2.000 bytes --- Ack received rate: 36.57 ack/s --- 
Failed messages: 0 --- Pending messages: 0
   Received: 16,9. From topic: persistent://new-tenant/new-namespace/topic-b
   11:18:17.643 [pulsar-client-io-3-3] INFO  
o.a.pulsar.client.impl.ProducerImpl - 
[persistent://new-tenant/new-namespace/topic-b] [standalone-0-7024] Closed 
Producer
   11:18:17.647 [pulsar-client-io-3-3] INFO  
o.a.p.c.i.ProducerStatsRecorderImpl - Starting Pulsar producer perf with 
config: 
{"topicName":"non-persistent://new-tenant/new-namespace/topic-c","producerName":null,"sendTimeoutMs":30000,"blockIfQueueFull":false,"maxPendingMessages":0,"maxPendingMessagesAcrossPartitions":0,"messageRoutingMode":"RoundRobinPartition","hashingScheme":"JavaStringHash","cryptoFailureAction":"FAIL","batchingMaxPublishDelayMicros":1000,"batchingPartitionSwitchFrequencyByPublishDelay":10,"batchingMaxMessages":1000,"batchingMaxBytes":131072,"batchingEnabled":true,"chunkingEnabled":false,"chunkMaxMessageSize":-1,"encryptionKeys":[],"compressionType":"NONE","initialSequenceId":null,"autoUpdatePartitions":true,"autoUpdatePartitionsIntervalSeconds":60,"multiSchema":true,"accessMode":"Shared","lazyStartPartitionedProducers":false,"properties":{},"initialSubscriptionName":null}
   11:18:17.648 [pulsar-client-io-3-3] INFO  
o.a.p.c.i.ProducerStatsRecorderImpl - Pulsar client config: 
{"serviceUrl":"pulsar://localhost:6650","authPluginClassName":null,"authParams":null,"authParamMap":null,"operationTimeoutMs":30000,"lookupTimeoutMs":30000,"statsIntervalSeconds":60,"numIoThreads":12,"numListenerThreads":12,"connectionsPerBroker":1,"connectionMaxIdleSeconds":180,"useTcpNoDelay":true,"useTls":false,"tlsKeyFilePath":null,"tlsCertificateFilePath":null,"tlsTrustCertsFilePath":null,"tlsAllowInsecureConnection":false,"tlsHostnameVerificationEnable":false,"concurrentLookupRequest":5000,"maxLookupRequest":50000,"maxLookupRedirects":20,"maxNumberOfRejectedRequestPerConnection":50,"keepAliveIntervalSeconds":30,"connectionTimeoutMs":10000,"requestTimeoutMs":60000,"readTimeoutMs":60000,"autoCertRefreshSeconds":300,"initialBackoffIntervalNanos":100000000,"maxBackoffIntervalNanos":60000000000,"enableBusyWait":false,"listenerName":null,"useKeyStoreTls":false,"sslProvider":null,"
 
tlsKeyStoreType":"JKS","tlsKeyStorePath":null,"tlsKeyStorePassword":null,"tlsTrustStoreType":"JKS","tlsTrustStorePath":null,"tlsTrustStorePassword":null,"tlsCiphers":[],"tlsProtocols":[],"memoryLimitBytes":67108864,"proxyServiceUrl":null,"proxyProtocol":null,"enableTransaction":false,"dnsLookupBindAddress":null,"dnsLookupBindPort":0,"dnsServerAddresses":[],"socks5ProxyAddress":null,"socks5ProxyUsername":null,"socks5ProxyPassword":null,"description":null}
   11:18:17.652 [pulsar-client-io-3-3] INFO  
o.a.pulsar.client.impl.ProducerImpl - 
[non-persistent://new-tenant/new-namespace/topic-c] [null] Creating producer on 
cnx [id: 0xffcc2c45, L:/127.0.0.1:50490 - R:localhost/127.0.0.1:6650]
   11:18:17.663 [pulsar-client-io-3-3] INFO  
o.a.pulsar.client.impl.ProducerImpl - 
[non-persistent://new-tenant/new-namespace/topic-c] [standalone-0-7025] Created 
producer on cnx [id: 0xffcc2c45, L:/127.0.0.1:50490 - 
R:localhost/127.0.0.1:6650]
   11:18:17.687 [pulsar-client-io-3-3] WARN  
o.a.pulsar.client.impl.ConsumerImpl - 
[non-persistent://new-tenant/new-namespace/topic-c] Cannot create a [Durable] 
subscription for a NonPersistentTopic, will use [NonDurable] to subscribe. 
Subscription name: new-subscription
   11:18:17.688 [pulsar-client-io-3-3] INFO  
o.a.p.c.i.ConsumerStatsRecorderImpl - Starting Pulsar consumer status recorder 
with config: 
{"topicNames":[],"topicsPattern":"new-tenant/new-namespace/.*","subscriptionName":"new-subscription","subscriptionType":"Exclusive","subscriptionProperties":null,"subscriptionMode":"NonDurable","receiverQueueSize":1000,"acknowledgementsGroupTimeMicros":100000,"maxAcknowledgmentGroupSize":1000,"negativeAckRedeliveryDelayMicros":60000000,"maxTotalReceiverQueueSizeAcrossPartitions":50000,"consumerName":"4dbad","ackTimeoutMillis":0,"tickDurationMillis":1000,"priorityLevel":0,"maxPendingChunkedMessage":10,"autoAckOldestChunkedMessageOnQueueFull":false,"expireTimeOfIncompleteChunkedMessageMillis":60000,"cryptoFailureAction":"FAIL","properties":{},"readCompacted":false,"subscriptionInitialPosition":"Latest","patternAutoDiscoveryPeriod":1,"regexSubscriptionMode":"AllTopics","deadLetterPolicy":null,"retryEnable":false,"autoUpdatePartitions":true,"autoUpdateP
 
artitionsIntervalSeconds":60,"replicateSubscriptionState":false,"resetIncludeHead":false,"batchIndexAckEnabled":false,"ackReceiptEnabled":false,"poolMessages":false,"startPaused":false,"autoScaledReceiverQueueSizeEnabled":false,"topicConfigurations":[],"maxPendingChuckedMessage":10}
   11:18:17.690 [pulsar-client-io-3-3] INFO  
o.a.p.c.i.ConsumerStatsRecorderImpl - Pulsar client config: 
{"serviceUrl":"pulsar://localhost:6650","authPluginClassName":null,"authParams":null,"authParamMap":null,"operationTimeoutMs":30000,"lookupTimeoutMs":30000,"statsIntervalSeconds":60,"numIoThreads":12,"numListenerThreads":12,"connectionsPerBroker":1,"connectionMaxIdleSeconds":180,"useTcpNoDelay":true,"useTls":false,"tlsKeyFilePath":null,"tlsCertificateFilePath":null,"tlsTrustCertsFilePath":null,"tlsAllowInsecureConnection":false,"tlsHostnameVerificationEnable":false,"concurrentLookupRequest":5000,"maxLookupRequest":50000,"maxLookupRedirects":20,"maxNumberOfRejectedRequestPerConnection":50,"keepAliveIntervalSeconds":30,"connectionTimeoutMs":10000,"requestTimeoutMs":60000,"readTimeoutMs":60000,"autoCertRefreshSeconds":300,"initialBackoffIntervalNanos":100000000,"maxBackoffIntervalNanos":60000000000,"enableBusyWait":false,"listenerName":null,"useKeyStoreTls":false,"sslProvider":null,"
 
tlsKeyStoreType":"JKS","tlsKeyStorePath":null,"tlsKeyStorePassword":null,"tlsTrustStoreType":"JKS","tlsTrustStorePath":null,"tlsTrustStorePassword":null,"tlsCiphers":[],"tlsProtocols":[],"memoryLimitBytes":67108864,"proxyServiceUrl":null,"proxyProtocol":null,"enableTransaction":false,"dnsLookupBindAddress":null,"dnsLookupBindPort":0,"dnsServerAddresses":[],"socks5ProxyAddress":null,"socks5ProxyUsername":null,"socks5ProxyPassword":null,"description":null}
   11:18:17.698 [pulsar-client-io-3-3] INFO  
o.a.pulsar.client.impl.ConsumerImpl - 
[non-persistent://new-tenant/new-namespace/topic-c][new-subscription] 
Subscribing to topic on cnx [id: 0xffcc2c45, L:/127.0.0.1:50490 - 
R:localhost/127.0.0.1:6650], consumerId 2
   11:18:17.714 [pulsar-client-io-3-3] INFO  
o.a.pulsar.client.impl.ConsumerImpl - 
[non-persistent://new-tenant/new-namespace/topic-c][new-subscription] 
Subscribed to topic on localhost/127.0.0.1:6650 -- consumer: 2
   11:18:17.715 [pulsar-client-io-3-3] INFO  
o.a.p.c.impl.MultiTopicsConsumerImpl - [MultiTopicsConsumer-ed64d] 
[new-subscription] Success subscribe new topic 
non-persistent://new-tenant/new-namespace/topic-c in topics consumer, 
partitions: 0, allTopicPartitionsNumber: 3
   Received: 16,4. From topic: non-persistent://new-tenant/new-namespace/topic-c
   Received: 16,5. From topic: non-persistent://new-tenant/new-namespace/topic-c
   Received: 16,6. From topic: non-persistent://new-tenant/new-namespace/topic-c
   Received: 16,7. From topic: non-persistent://new-tenant/new-namespace/topic-c
   Received: 16,8. From topic: non-persistent://new-tenant/new-namespace/topic-c
   Received: 16,9. From topic: non-persistent://new-tenant/new-namespace/topic-c
   11:18:17.784 [ZScheduler-Worker-4] INFO  o.a.p.c.i.ProducerStatsRecorderImpl 
- [non-persistent://new-tenant/new-namespace/topic-c] [standalone-0-7025] --- 
Publish throughput: 74.72 msg/s --- 0.00 Mbit/s --- Latency: med: 14.000 ms - 
95pct: 19.000 ms - 99pct: 19.000 ms - 99.9pct: 19.000 ms - max: 19.000 ms --- 
BatchSize: med: 1.000 - 95pct: 1.000 - 99pct: 1.000 - 99.9pct: 1.000 - max: 
1.000 --- MsgSize: med: 2.000 bytes - 95pct: 2.000 bytes - 99pct: 2.000 bytes - 
99.9pct: 2.000 bytes - max: 2.000 bytes --- Ack received rate: 74.72 ack/s --- 
Failed messages: 0 --- Pending messages: 0
   11:18:17.802 [pulsar-client-io-3-3] INFO  
o.a.pulsar.client.impl.ProducerImpl - 
[non-persistent://new-tenant/new-namespace/topic-c] [standalone-0-7025] Closed 
Producer
   11:18:17.807 [pulsar-client-io-3-3] INFO  
o.a.p.c.i.ProducerStatsRecorderImpl - Starting Pulsar producer perf with 
config: 
{"topicName":"non-persistent://new-tenant/new-namespace/topic-d","producerName":null,"sendTimeoutMs":30000,"blockIfQueueFull":false,"maxPendingMessages":0,"maxPendingMessagesAcrossPartitions":0,"messageRoutingMode":"RoundRobinPartition","hashingScheme":"JavaStringHash","cryptoFailureAction":"FAIL","batchingMaxPublishDelayMicros":1000,"batchingPartitionSwitchFrequencyByPublishDelay":10,"batchingMaxMessages":1000,"batchingMaxBytes":131072,"batchingEnabled":true,"chunkingEnabled":false,"chunkMaxMessageSize":-1,"encryptionKeys":[],"compressionType":"NONE","initialSequenceId":null,"autoUpdatePartitions":true,"autoUpdatePartitionsIntervalSeconds":60,"multiSchema":true,"accessMode":"Shared","lazyStartPartitionedProducers":false,"properties":{},"initialSubscriptionName":null}
   11:18:17.809 [pulsar-client-io-3-3] INFO  
o.a.p.c.i.ProducerStatsRecorderImpl - Pulsar client config: 
{"serviceUrl":"pulsar://localhost:6650","authPluginClassName":null,"authParams":null,"authParamMap":null,"operationTimeoutMs":30000,"lookupTimeoutMs":30000,"statsIntervalSeconds":60,"numIoThreads":12,"numListenerThreads":12,"connectionsPerBroker":1,"connectionMaxIdleSeconds":180,"useTcpNoDelay":true,"useTls":false,"tlsKeyFilePath":null,"tlsCertificateFilePath":null,"tlsTrustCertsFilePath":null,"tlsAllowInsecureConnection":false,"tlsHostnameVerificationEnable":false,"concurrentLookupRequest":5000,"maxLookupRequest":50000,"maxLookupRedirects":20,"maxNumberOfRejectedRequestPerConnection":50,"keepAliveIntervalSeconds":30,"connectionTimeoutMs":10000,"requestTimeoutMs":60000,"readTimeoutMs":60000,"autoCertRefreshSeconds":300,"initialBackoffIntervalNanos":100000000,"maxBackoffIntervalNanos":60000000000,"enableBusyWait":false,"listenerName":null,"useKeyStoreTls":false,"sslProvider":null,"
 
tlsKeyStoreType":"JKS","tlsKeyStorePath":null,"tlsKeyStorePassword":null,"tlsTrustStoreType":"JKS","tlsTrustStorePath":null,"tlsTrustStorePassword":null,"tlsCiphers":[],"tlsProtocols":[],"memoryLimitBytes":67108864,"proxyServiceUrl":null,"proxyProtocol":null,"enableTransaction":false,"dnsLookupBindAddress":null,"dnsLookupBindPort":0,"dnsServerAddresses":[],"socks5ProxyAddress":null,"socks5ProxyUsername":null,"socks5ProxyPassword":null,"description":null}
   11:18:17.813 [pulsar-client-io-3-3] INFO  
o.a.pulsar.client.impl.ProducerImpl - 
[non-persistent://new-tenant/new-namespace/topic-d] [null] Creating producer on 
cnx [id: 0xffcc2c45, L:/127.0.0.1:50490 - R:localhost/127.0.0.1:6650]
   11:18:17.819 [pulsar-client-io-3-3] INFO  
o.a.pulsar.client.impl.ProducerImpl - 
[non-persistent://new-tenant/new-namespace/topic-d] [standalone-0-7026] Created 
producer on cnx [id: 0xffcc2c45, L:/127.0.0.1:50490 - 
R:localhost/127.0.0.1:6650]
   11:18:17.887 [ZScheduler-Worker-4] INFO  o.a.p.c.i.ProducerStatsRecorderImpl 
- [non-persistent://new-tenant/new-namespace/topic-d] [standalone-0-7026] --- 
Publish throughput: 129.68 msg/s --- 0.00 Mbit/s --- Latency: med: 4.000 ms - 
95pct: 18.000 ms - 99pct: 18.000 ms - 99.9pct: 18.000 ms - max: 18.000 ms --- 
BatchSize: med: 1.000 - 95pct: 1.000 - 99pct: 1.000 - 99.9pct: 1.000 - max: 
1.000 --- MsgSize: med: 2.000 bytes - 95pct: 2.000 bytes - 99pct: 2.000 bytes - 
99.9pct: 2.000 bytes - max: 2.000 bytes --- Ack received rate: 129.68 ack/s --- 
Failed messages: 0 --- Pending messages: 0
   11:18:17.891 [pulsar-client-io-3-3] INFO  
o.a.pulsar.client.impl.ProducerImpl - 
[non-persistent://new-tenant/new-namespace/topic-d] [standalone-0-7026] Closed 
Producer
   timestamp=2024-04-19T07:19:02.928725Z level=WARN thread=#zio-fiber-144 
message="Test consumer.consumer_session.ConsumerSessionTest$ - The amount of 
messages delivered to UI shouldn't differ after multiple runs has taken more 
than 1 m to execute. If this is not expected, consider using TestAspect.timeout 
to timeout runaway tests for faster diagnostics."
   11:19:07.592 [pulsar-timer-40-1] INFO  o.a.p.c.i.ConsumerStatsRecorderImpl - 
[persistent://new-tenant/new-namespace/topic-a] [new-subscription] [4dbad] 
Prefetched messages: 0 --- Consume throughput received: 0.17 msgs/s --- 0.00 
Mbit/s --- Ack sent rate: 0.17 ack/s --- Failed messages: 0 --- batch messages: 
0 ---Failed acks: 0
   11:19:07.602 [pulsar-timer-40-1] INFO  o.a.p.c.i.ConsumerStatsRecorderImpl - 
[persistent://new-tenant/new-namespace/topic-b] [new-subscription] [4dbad] 
Prefetched messages: 0 --- Consume throughput received: 0.17 msgs/s --- 0.00 
Mbit/s --- Ack sent rate: 0.17 ack/s --- Failed messages: 0 --- batch messages: 
0 ---Failed acks: 0
   11:19:17.693 [pulsar-timer-40-1] INFO  o.a.p.c.i.ConsumerStatsRecorderImpl - 
[non-persistent://new-tenant/new-namespace/topic-c] [new-subscription] [4dbad] 
Prefetched messages: 0 --- Consume throughput received: 0.10 msgs/s --- 0.00 
Mbit/s --- Ack sent rate: 0.00 ack/s --- Failed messages: 0 --- batch messages: 
0 ---Failed acks: 0
   ```


-- 
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: commits-unsubscr...@pulsar.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Reply via email to