hongchen2000 commented on issue #10559: URL: https://github.com/apache/ignite/issues/10559#issuecomment-1445223132
SlowClientQueueLimit and MessageQueueLimit are working mechanism to deal with slow clients problem (drop them when they hung and stop processing messages): https://stackoverflow.com/questions/51092741/ignite-tcpcommunicationspi-can-slowclientqueuelimit-be-set-to-same-value-as-me However, I think they are working only for thick clients, (but not for thin clients). The code is In the last two lines of GridNioServer.send0() method, where there is a check by msgQueueLsnr.apply(), which will call the GridNioServerWrapper.checkClientQueueSize(), which will drop the slow client if queue exceeds limit. Could we make the same mechanism working for thin client connections as well? -- 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]
