codersfarm commented on issue #5315:
URL: https://github.com/apache/rocketmq/issues/5315#issuecomment-1285057220

   if disable autoCommit,the bleow code in MQClientInstance should be disable?
   ```
   this.scheduledExecutorService.scheduleAtFixedRate(new Runnable() {
   
               @Override
               public void run() {
                   try {
                       MQClientInstance.this.persistAllConsumerOffset();
                   } catch (Exception e) {
                       log.error("ScheduledTask persistAllConsumerOffset 
exception", e);
                   }
               }
           }, 1000 * 10, this.clientConfig.getPersistConsumerOffsetInterval(), 
TimeUnit.MILLISECONDS);
   ```


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