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 2022/01/22 03:00:47 UTC

[GitHub] [rocketmq] XiaoyiPeng commented on pull request #3784: #3781 压测生产者内存溢出

XiaoyiPeng commented on pull request #3784:
URL: https://github.com/apache/rocketmq/pull/3784#issuecomment-1019026376


   The `callbackExecutor` has been redefined in issue #3781 ,  and  its queue is bounded with 50000 as you defined in your commit.
   
   So the `publicExecutor` will not be used as `callbackExecutor` when called `getCallbackExecutor()`.
   
   ```java
   @Override
       public ExecutorService getCallbackExecutor() {
           return callbackExecutor != null ? callbackExecutor : publicExecutor;
       }
   ```
   
   So I think your PR can not solve the issue #3781 


-- 
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: dev-unsubscribe@rocketmq.apache.org

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