2 Replies Latest reply on Jun 16, 2010 2:44 PM by pchandler

    Memory usage per bundle?

    pchandler

      I have some kind of memory leak in ServiceMix. I am trying to figure-out which bundle has the problem. Is there a way to get memory usage per bundle. For details see attachments.

        • 1. Re: Memory usage per bundle?
          gertv

          L.S.,

           

          There's no built-in way to look at the memory usage per bundle in ServiceMix.  The best way to troubleshoot this problem would be by attaching to the running instance with a profiler or by taking a heap dump (e.g. through jconsole) and investigating which type of object is taking up all the memory and what their path to the GC root is (i.e. where are they being referenced so they can't get GC'ed).

           

          Regards,

           

          Gert

          • 2. Re: Memory usage per bundle?
            pchandler

            Thanks.