Ludovic Orban

Results 180 comments of Ludovic Orban

@garydgregory see https://github.com/jetty/jetty.project/pull/12210#issuecomment-2348325466

@strogiyotec flaky tests are generally stable; it usually requires some persuasion to reproduce them, like automatically re-running the test until it fails, loading the machine on which it is running...

We started investigating with @sbordet and it looks like there is a race condition in the proxy code. More work is needed to really understand what's going on and to...

See #11857 for an alternative which adds a `cancel()` method to `Callback`.

Abandoned in favor of https://github.com/jetty/jetty.project/pull/11951

Memory leaks are notoriously hard to track down, and sometimes hard to differentiate from normal (but large) memory consumption. In your MAT screenshot, I can see that the retained bucket...

Caddy must be doing something slightly differently from nginx that's triggering the leak in Jetty, but it's hard to be more precise than that. Something else that may help: we...

A buffer leak was found and fixed in 10.0.x/11.0.x, see: https://github.com/jetty/jetty.project/pull/12896

On top of what @joakime recommended, I would advise you to collect a server dump as that will help understand the buffer pool's internal state. To mitigate the problem, you...

Buffer leaks can happen pretty much anywhere in the code, so we will need some help from your side to reduce the scope of where it might be. Without a...