startjava commented on issue #17984:
URL: https://github.com/apache/pulsar/issues/17984#issuecomment-1274066448

   @RobertIndie 
   
   but i use :
   ```
   standalone.conf:
   maxMessageSize=5242880
   nettyMaxFrameSizeBytes=5253120
   ```
   
   ```
   @Bean
       public Producer createPulsarProducer_myTopic1() throws 
PulsarClientException {
           Producer<String> stringProducer = 
pulsarClient.newProducer(Schema.STRING).topic(myTopic1).enableBatching(false).enableChunking(true).create();
           // Producer<String> stringProducer = 
pulsarClient.newProducer(Schema.STRING).topic(myTopic1).create();
           return stringProducer;
       }
   ```
   
   i print info :
   ```
   subscriptions getChunkedMessageRate=1
   consumerStats getChunkedMessageRate=1.4833248108659105
   ```
   look print result ,chunking success ! ??
   
   i effect is error ??
   
   


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