Hi, On Thu, Aug 1, 2019 at 10:45 PM Sean McCauliff <[email protected]> wrote: > > Recently I had several Jetty processes die from OOM because the memory > overhead from the number of accepted TLS connections was more than 1G. Jetty > seems to have an accept rate limiting configuration but no absolute limit on > the number of accepted sockets. Is this correct?
No, Jetty has a way to limit connections: https://www.eclipse.org/jetty/documentation/current/configuring-connectors.html#_limiting_connections Note that keeping around so many connections that result in a OOME may be due to a too large idle timeout (otherwise Jetty will close idle connections). -- Simone Bordet ---- http://cometd.org http://webtide.com Developer advice, training, services and support from the Jetty & CometD experts. _______________________________________________ jetty-users mailing list [email protected] To change your delivery options, retrieve your password, or unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/jetty-users
