jinrongluo commented on issue #371: URL: https://github.com/apache/incubator-eventmesh/issues/371#issuecomment-849951276
From the logs, this MQClientException is coming from RocketMQ Client side. `[NettyClientPublicExecutor_2] RocketmqClient(Slf4jLoggerFactory.java:130) - execute the pull request exception` And it happens because thread `NettyClientPublicExecutor_2` is steill sending pull request to the broker while `PullMessageServiceScheduledThread` at the server side has shutdown. In other words, NettyClientPublicExecutor_2 Thread still sending the request while eventMesh-clientmanage-2 Thread is shutting down the `PullMessageService` There need might need some coordination among the worker threads during the unsubscribe process. -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
