[jboss-user] [Messaging, JMS & JBossMQ] - Higher JMSPriority not stepping in front of lower JMSPriorit

seoeng do-not-reply at jboss.com
Tue Dec 4 11:07:25 EST 2007


Below is my invoker-proxy-binding and container-configuration for this specific MDB (Bean-Managed).  Here is the use case:

1.  Send JMS Message with JMSPriority 4 to Queue
2.  Send JMS Message with JMSPriority 4 to Queue
3.  Send JMS Message with JMSPriority 7 to Queue

The MDB (Bean-Managed) is processing as follows:

1.  Receives JMS Message #1, starts processing
2.  Receives JMS Message #2, starts processing
3.  Receives JMS Message #3, starts processing

NOTE:  All messages are queued before MDB finishes #1.

What behavior is expected:

1.  Receives JMS Message #1, starts processing
2.  Receives JMS Message #3, starts processing
3.  Receives JMS Message #2, starts processing

Because Message #3 enters the Queue before Message #1 is finished processing in MDB, shouldn't Message #3 be consumed by the MDB next?


  |     <invoker-proxy-binding>
  |       <name>message-driven-bean</name>
  |       <invoker-mbean>default</invoker-mbean>
  |       <proxy-factory>org.jboss.ejb.plugins.jms.JMSContainerInvoker</proxy-factory>
  |       <proxy-factory-config>
  |         <JMSProviderAdapterJNDI>DefaultJMSProvider</JMSProviderAdapterJNDI>
  |         <ServerSessionPoolFactoryJNDI>StdJMSPool</ServerSessionPoolFactoryJNDI>
  |         <CreateJBossMQDestination>true</CreateJBossMQDestination>
  |         <!-- WARN: Don't set this to zero until a bug in the pooled executor is fixed -->
  |         <MinimumSize>1</MinimumSize>
  |         <MaximumSize>1</MaximumSize>
  |         <KeepAliveMillis>30000</KeepAliveMillis>
  |         <MaxMessages>1</MaxMessages>
  |         <MDBConfig>
  |           <ReconnectIntervalSec>10</ReconnectIntervalSec>
  |           <DLQConfig>
  |             <DestinationQueue>queue/DLQ</DestinationQueue>
  |             <MaxTimesRedelivered>10</MaxTimesRedelivered>
  |             <TimeToLive>0</TimeToLive>
  |           </DLQConfig>
  |         </MDBConfig>
  |       </proxy-factory-config>
  |     </invoker-proxy-binding>
  | 
  | 	    <container-configuration>
  | 	      <container-name>MDBConfig</container-name>
  | 	      <call-logging>false</call-logging>
  | 	      <invoker-proxy-binding-name>website-crawler-message-driven-bean</invoker-proxy-binding-name>
  | 	      <container-interceptors>
  | 	        <interceptor>org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor</interceptor>
  | 	        <interceptor>org.jboss.ejb.plugins.LogInterceptor</interceptor>
  | 	        <interceptor>org.jboss.ejb.plugins.RunAsSecurityInterceptor</interceptor>
  | 	        <!-- CMT -->
  | 	        <interceptor transaction="Container">org.jboss.ejb.plugins.TxInterceptorCMT</interceptor>
  | 	        <interceptor transaction="Container">org.jboss.ejb.plugins.CallValidationInterceptor</interceptor>
  | 	        <interceptor transaction="Container">org.jboss.ejb.plugins.MessageDrivenInstanceInterceptor</interceptor>
  | 	        <!-- BMT -->
  | 	        <interceptor transaction="Bean">org.jboss.ejb.plugins.MessageDrivenInstanceInterceptor</interceptor>
  | 	        <interceptor transaction="Bean">org.jboss.ejb.plugins.MessageDrivenTxInterceptorBMT</interceptor>
  | 	        <interceptor transaction="Bean">org.jboss.ejb.plugins.CallValidationInterceptor</interceptor>
  | 	        <interceptor>org.jboss.resource.connectionmanager.CachedConnectionInterceptor</interceptor>
  | 	      </container-interceptors>
  | 	      <instance-pool>org.jboss.ejb.plugins.MessageDrivenInstancePool</instance-pool>
  | 	      <instance-cache></instance-cache>
  | 	      <persistence-manager></persistence-manager>
  | 	      <container-pool-conf>
  | 	        <MaximumSize>1</MaximumSize>
  | 	      </container-pool-conf>
  | 	    </container-configuration>
  | 

View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4110239#4110239

Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4110239



More information about the jboss-user mailing list