Simone Bordet
Simone Bordet
@gregw @lorban please review this alternative support for Loom, more in line with what suggested by @gregw. It's not complete as we need to verify that all code paths that...
You don't need Netty's event loops. Jetty's `HttpClient` already uses its own event loops, whose number you can configure by configuring the number of selectors. Use a normal `Executor`.
You can find some documentation about selectors here: https://www.eclipse.org/jetty/documentation/jetty-11/programming-guide/index.html#pg-client-io-arch-network About scheduler and executor there is not much to say, one it's a scheduler, and the other is an executor, same...
@lorban the idle timeout of the `ClientConnector` cannot be accessed from this class. I can use that of the request by default, but only if it has been set by...
@joakime yes please
@gregw thoughts?
Closing this but leaving the issue open.
You have a custom server connector `JettyPsServerConnector`, so we cannot tell exactly what's going on - likely it's a problem in this class. Apparently you configure `acceptors=0` and the selector...
@swathikumar4precisely setting `selector=1` should not "solve" the problem. You have a custom `java.nio.Selector` implementation via `psSelector` - I guess that it is broken, but I cannot tell as there is...
@joakime no, this feature has not yet been implemented.