zangyk opened a new issue #264: ConsumeMessageOrderlyService can use ReentrantLock URL: https://github.com/apache/rocketmq/issues/264 The ConsumeRequest class code is : final Object objLock = messageQueueLock.fetchLockObject(this.messageQueue); synchronized (objLock) { ...... } it will block the messageQueue and other messageQueue to process we can use ReentrantLock.tryLock()
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
