Open rehmatt opened 2 months ago
Just to put this into perspective: If I'm not mistaken, the fact that getConnection
is synchronized on HttpUrlConnector
ultimately means that only one connection at a time may be created across all services handled by Jersey. This is potentially a catastrophic performance regression.
Great finding! I was wondering why my services became slower when I upgraded Jersey.
Hi,
we've recently updated our services from jersey
3.1.2
to3.1.5
and encountered drastically worse response times for our external service calls which are using jerseysHttpUrlConnector
.With downgrading to
3.1.3
everything was fine again, but updating to3.1.4
again let the response times rise by 50% to 120%.Having a look on the changes between
3.1.3
and3.1.4
I saw the following PR: https://github.com/eclipse-ee4j/jersey/pull/5359. It introduced a synchronized block insidegetConnection(URL url, Proxy proxy)
:If I interpret it correctly this will lead to only one thread being able to open a connection with the connector. As we have many threads processing incoming requests with one connector per external service, it might happen that there are many threads which want to get a connection, but only one at a time is possible.
Is this already a known issue? Is my assumption regarding the synchronized block correct?