tomaswolf commented on issue #853: URL: https://github.com/apache/mina-sshd/issues/853#issuecomment-3576254970
There is `CoreModuleProperties.NIO_WORKERS`, and if that is not sufficient, you could instantiate an `IoServiceFactory` with your own executor factory. But are you sure the problem is the number of IO threads? Connecting to a host involves a key exchange, which involves cryptographic operations, and authentication, which may involve cryptographic operations (for instance for public-key authentication). Perhaps the bottleneck is in these cryptographic operations. Maybe you can get some speed-up by having multiple application threads handling the SSH sessions, so that key exchange and authentication for different sessions can run concurrently. -- 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]
