3 Replies Latest reply on Jan 2, 2007 9:58 AM by brian.stansberry

    Clustered MDB load balance

    carlos.grahl

      Hi, all!

      I have 2 machines in clustered environment. The cluster works fine. But I need to configure the MDB pool size individually, on each machine. For example:

      One machine (which is a little bit slow) must have only 10 instances of MDB A, and the other machine (which is fast) must have 30 instances of MDB A. Both MDBs listens to the same JMS Queue.

      How to configure that?

      Thank you in advance.

        • 1. Re: Clustered MDB load balance
          visolvejboss

          Hello,

          You can set the pool size for MDB in the following file on jboss.

          At standardjboss.xml file in the path, <JBOSS_HOME>/server/all/conf/standardjboss.xml

          189 <invoker-proxy-binding>
           190 <name>message-driven-bean</name>
           191 <invoker-mbean>default</invoker-mbean>
           192 <proxy-factory>org.jboss.ejb.plugins.jms.JMSContainerInvoker</proxy-factory>
           193 <proxy-factory-config>
           194 <JMSProviderAdapterJNDI>DefaultJMSProvider</JMSProviderAdapterJNDI>
           195 <ServerSessionPoolFactoryJNDI>StdJMSPool</ServerSessionPoolFactoryJNDI>
           196 <CreateJBossMQDestination>true</CreateJBossMQDestination>
           197 <!-- WARN: Don't set this to zero until a bug in the pooled executor is fixed -->
           198 <MinimumSize>1</MinimumSize>
           199 <MaximumSize>15</MaximumSize>
           200 <KeepAliveMillis>30000</KeepAliveMillis>
           201 <MaxMessages>1</MaxMessages>
           202 <MDBConfig>
           203 <ReconnectIntervalSec>10</ReconnectIntervalSec>
           204 <DLQConfig>
           205 <DestinationQueue>queue/DLQ</DestinationQueue>
           206 <MaxTimesRedelivered>10</MaxTimesRedelivered>
           207 <TimeToLive>0</TimeToLive>
           208 </DLQConfig>
           209 </MDBConfig>
           210 </proxy-factory-config>
           211 </invoker-proxy-binding>


          Hope, this might solve your problem.


          • 2. Re: Clustered MDB load balance
            carlos.grahl

            Thank you for your response.

            Only more one question: It's possible to configure this pool size individually, per machine? Since this MDB is clustered, Jboss accepts individual configuration?

            Thank you,

            Carlos Augusto Grahl

            • 3. Re: Clustered MDB load balance
              brian.stansberry

              Yes, this can be configured per machine.