xwm1992 commented on issue #371: URL: https://github.com/apache/incubator-eventmesh/issues/371#issuecomment-851119737
> 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 might need some coordination among the worker threads during the unsubscribe process. @jinrongluo Well, based on your description, I understand that this error is a normal phenomenon. You are unsubscribing in the consumption process, with the unsubscribe command this will close the channel between the client and broker, so client can't send any pull request to broker. So,what you are hoping for? -- 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]
