You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@rocketmq.apache.org by GitBox <gi...@apache.org> on 2020/11/26 03:02:06 UTC

[GitHub] [rocketmq] Jaskey commented on issue #2367: consumer only consume part 'delay message'

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:
users@infra.apache.org