2 Replies Latest reply on Aug 18, 2009 11:54 AM by droberts18

    MDB Pool Settings

    droberts18

      I am using JBoss 4.3 and having problems controlling the pool settings.

      How can I control the MDB pool size? Can I use the JMX console verify the changes? Specifically the min and max instances in the pool?

      I have tried using the pool annotation and changing setting in the standardjboss.xml with no affect.

      Any pointers are appreciated.

        • 1. Re: MDB Pool Settings
          bershath27

          use minSession , maxSession activation config properties

          • 2. Re: MDB Pool Settings
            droberts18

            Thanks that helped.

            I found that I also had to edit the ejb3-inteceptors-apo.xml file. There was a point cut that needed changing:

            <annotation expr="!class(@org.jboss.annotation.ejb.PoolClass)">
             @org.jboss.annotation.ejb.PoolClass (value=org.jboss.ejb3.StrictMaxPool.class, maxSize=30, timeout=10000)
             </annotation>
            


            However, there still seems to an upper limit of only 99 MDB instances. Despite changing any of the aforementioned properties. Do you know how to get past this limit?