3 Replies Latest reply on Dec 15, 2016 11:55 PM by dsatishreddy101

    Configuration of MDB StrictMaxPool in Standalone.xml

    dsatishreddy101

      Hi, I have below configuration in my jboss EAP 6.4 standalone xml.

      And I have an application that has 50 MDBs  deployed and defined with no pool defined specifically for them.  They will all use the default pool StrictMaxPool. 

      Is this configuration saying only 1 MDB is executing at a time or that at all 50 MDB’s could be executing simultaneously? All 50 MDBs could be executing but with max of 1 copy at a time?

       

      <mdb>

      <resource-adapter-ref resource-adapter-name="wmq.jmsra.rar"/>

      <bean-instance-pool-ref pool-name="StrictMaxPool"/>

      </mdb>

      <pools>

      <bean-instance-pools>

      <strict-max-pool name="slsb-strict-max-pool" max-pool-size="1500" instance-acquisition-timeout="5" instance-acquisition-timeout-unit="MINUTES"/>

      <strict-max-pool name="StrictMaxPool" max-pool-size="1" instance-acquisition-timeout="5" instance-acquisition-timeout-unit="MINUTES"/>

      </bean-instance-pools>

      </pools>

       

      Please help me