franz1981 commented on pull request #44: URL: https://github.com/apache/qpid-jms/pull/44#issuecomment-952051837
There're still something to be considered while using this processing model in case JMS Sessions are used on different threads AND share the same connection: - on `main` the Netty thread handling the shared connection issue completion events vs exclusive single threaded thread pools - on this PR the Netty thread handling the shared connection issue completion events vs a shared thread pool If the completions event processing is heavy weight, issuing completion events vs a shared thread pool shouldn't be the bottleneck, but each completion thread processing, while if completion event processing is light-weight, reusing the same completion thread(s), kept busy as much as possible, reduce the amount of context switches and native resources used. -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
