1 Reply Latest reply on Nov 12, 2002 4:24 PM by lazybonezz

    memory leak

    lazybonezz

      using jboss 3.0.4, Java 1.3.1 Hotspot

      I have a BMP EJB. If I set the container cache max capacity in jboss.xml to 10 and then sequentially create a large number of beans (eg 300,000), accessing their data, memory use increases very quickly.

      My test case (a simple loop) is deliberately not creating any other objects so it looks as if JBoss is the culprit.

      This is obviously a very serious bug.

        • 1. Re: memory leak
          lazybonezz

          I used java -Xrunhprof to profile JBoss and HPjmeter to list residual (potentially leaked) objects. Seems I should have been closing database connections obtained with getConnection() as there were a large number remaining. I assumed that pooled connections shouldn't be closed.