Jaskey commented on issue #2367:
URL: https://github.com/apache/rocketmq/issues/2367#issuecomment-734045115


   Did you set batch consume size?  Since I saw you only consume one message in 
your listener callbac
   
                ``` System.out.println(list.get(0));```
   
   
   1. please replace to 
           
   
            for () {
                 System.out.println(list.get(0));
            }
   
   2. check you have have another consumer started
   
   
   3. check your queue size. Is your write queue size is not equals to read 
queue size?
   


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

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


Reply via email to