2 Replies Latest reply on Nov 9, 2010 3:53 AM by elright

    JBPM 4.4 installation reports memory leaks

    elright

      Hello,

       

      I am testing a Windows 7 installation of Jbpm 4.4 on Tomcat 6.0.26, Java SE 1.6.0_22 and PostgreSQL 8.4.1

      Attached I included the log of startup and shutdown. Do I have a configuration problem?

       

      Regards, El

        • 1. Re: JBPM 4.4 installation reports memory leaks
          mwohlf

          the "Dispatch Worker Threads" are probably created by  the JobExecutor,

          you can try to call the jobExecutor's stop() method on shutdown, something like this:

           

          Object object = processEngineImpl.get("jobExecutor");       
          jobExecutor = (JobExecutor) object;
          if (!jobExecutor.isActive()) {
             jobExecutor.stop(true);
          }

           

          no idea what the com.google.inject.internal.Finalizer thread ist for

          • 2. Re: JBPM 4.4 installation reports memory leaks
            elright

            Thanks for replying. Problem is that I am not a developer, so no clue about the where and how. Perhaps this can be corrected in the release distribution? Strange to release a version with severe errors; not sure whether I can consider it seriously.