Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jetty-users] OutOfMemory errors

Yes, that is what I mentioned in the end of the mail that was taken
from a heap dump. It shows this as the top consumer. That means
org.eclipse.jetty.io.PooledBuffers occupies the highest memory. Is
that a pooled buffer ? Where can I configure this pool ?

---------------------------------------------------------------------------------------------------------------
org.eclipse.jetty.server.ssl.SslSelectChannelConnector @ 0x81581498|
       192 |    14,677,920 |     51.87%
|- org.eclipse.jetty.http.HttpBuffersImpl @ 0x815a4248             |
        88 |    14,673,288 |     51.85%
  |- org.eclipse.jetty.io.PooledBuffers @ 0x8157af50              |
       56 |    14,607,160 |     51.62%
---------------------------------------------------------------------------------------------------------------

On Thu, Jul 9, 2015 at 6:25 AM, John English <john.foreign@xxxxxxxxx> wrote:
> On 08/07/2015 22:48, radiatejava wrote:
>>
>> Problem is about once a month JVM is reporting OutOfMemory error and
>> the application dies. This is urgent for us. Heap dump does not show
>> anything suspicious. I am putting the stack trace here. Any help is
>> appreciated.
>
>
> Have you tried using something like the Eclipse analyser to look for memory
> leaks in a dump taken using JMX? The place where the OOME occurs is usually
> much less interesting than the leak that used up all the memory to make it
> happen...
>
> --
> John English
>
> _______________________________________________
> jetty-users mailing list
> jetty-users@xxxxxxxxxxx
> To change your delivery options, retrieve your password, or unsubscribe from
> this list, visit
> https://dev.eclipse.org/mailman/listinfo/jetty-users


Back to the top