2013-12-09 21:15:16,140 [main ] INFO ClassPathXmlApplicationContext - Refreshing org.springframework.context.support.ClassPathXmlApplicationContext@6b5635fa: startup date [Mon Dec 09 21:15:16 CET 2013]; root of context hierarchy 2013-12-09 21:15:16,200 [main ] INFO XmlBeanDefinitionReader - Loading XML bean definitions from class path resource [org/apache/activemq/bugs/amqdbfailover/spring.xml] 2013-12-09 21:15:16,906 [main ] INFO DefaultListableBeanFactory - Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@4f86b169: defining beans [coreActiveMQBroker1,mysql-ds]; root of factory hierarchy 2013-12-09 21:15:17,133 [main ] INFO PListStoreImpl - PListStore:[/Users/pfox/SR/00976477/retest/ConsumerProducerDBFailoverTest/target/data1/coreActiveMQBroker1/tmp_storage] started 2013-12-09 21:15:17,139 [main ] INFO BrokerService - Using Persistence Adapter: JDBCPersistenceAdapter(org.apache.commons.dbcp.BasicDataSource@34430a24) 2013-12-09 21:15:17,397 [main ] INFO JDBCPersistenceAdapter - Database adapter driver override recognized for : [mysql-ab_jdbc_driver] - adapter: class org.apache.activemq.store.jdbc.adapter.MySqlJDBCAdapter 2013-12-09 21:15:17,401 [main ] DEBUG DefaultJDBCAdapter - Executing SQL: DROP TABLE ACTIVEMQ_ACKS 2013-12-09 21:15:17,452 [main ] DEBUG DefaultJDBCAdapter - Executing SQL: DROP TABLE ACTIVEMQ_MSGS 2013-12-09 21:15:17,510 [main ] DEBUG DefaultJDBCAdapter - Executing SQL: DROP TABLE ACTIVEMQ_LOCK 2013-12-09 21:15:17,567 [main ] DEBUG DefaultJDBCAdapter - Executing SQL: CREATE TABLE ACTIVEMQ_MSGS(ID BIGINT NOT NULL, CONTAINER VARCHAR(250), MSGID_PROD VARCHAR(250), MSGID_SEQ BIGINT, EXPIRATION BIGINT, MSG LONGBLOB, PRIMARY KEY ( ID ) ) 2013-12-09 21:15:17,684 [main ] DEBUG DefaultJDBCAdapter - Executing SQL: CREATE INDEX ACTIVEMQ_MSGS_MIDX ON ACTIVEMQ_MSGS (MSGID_PROD,MSGID_SEQ) 2013-12-09 21:15:17,895 [main ] DEBUG DefaultJDBCAdapter - Executing SQL: CREATE INDEX ACTIVEMQ_MSGS_CIDX ON ACTIVEMQ_MSGS (CONTAINER) 2013-12-09 21:15:18,093 [main ] DEBUG DefaultJDBCAdapter - Executing SQL: CREATE INDEX ACTIVEMQ_MSGS_EIDX ON ACTIVEMQ_MSGS (EXPIRATION) 2013-12-09 21:15:18,300 [main ] DEBUG DefaultJDBCAdapter - Executing SQL: CREATE TABLE ACTIVEMQ_ACKS(CONTAINER VARCHAR(250) NOT NULL, SUB_DEST VARCHAR(250), CLIENT_ID VARCHAR(250) NOT NULL, SUB_NAME VARCHAR(250) NOT NULL, SELECTOR VARCHAR(250), LAST_ACKED_ID BIGINT, PRIMARY KEY ( CONTAINER, CLIENT_ID, SUB_NAME)) 2013-12-09 21:15:18,400 [main ] DEBUG DefaultJDBCAdapter - Executing SQL: ALTER TABLE ACTIVEMQ_MSGS ADD PRIORITY BIGINT 2013-12-09 21:15:18,649 [main ] DEBUG DefaultJDBCAdapter - Executing SQL: CREATE INDEX ACTIVEMQ_MSGS_PIDX ON ACTIVEMQ_MSGS (PRIORITY) 2013-12-09 21:15:18,849 [main ] DEBUG DefaultJDBCAdapter - Executing SQL: ALTER TABLE ACTIVEMQ_MSGS ADD XID VARCHAR(250) 2013-12-09 21:15:19,116 [main ] DEBUG DefaultJDBCAdapter - Executing SQL: ALTER TABLE ACTIVEMQ_ACKS ADD PRIORITY BIGINT DEFAULT 5 NOT NULL 2013-12-09 21:15:19,448 [main ] DEBUG DefaultJDBCAdapter - Executing SQL: ALTER TABLE ACTIVEMQ_ACKS ADD XID VARCHAR(250) 2013-12-09 21:15:19,696 [main ] DEBUG DefaultJDBCAdapter - Executing SQL: ALTER TABLE ACTIVEMQ_ACKS DROP PRIMARY KEY 2013-12-09 21:15:19,945 [main ] DEBUG DefaultJDBCAdapter - Executing SQL: ALTER TABLE ACTIVEMQ_ACKS ADD PRIMARY KEY (CONTAINER, CLIENT_ID, SUB_NAME, PRIORITY) 2013-12-09 21:15:20,194 [main ] DEBUG DefaultJDBCAdapter - Executing SQL: CREATE INDEX ACTIVEMQ_MSGS_XIDX ON ACTIVEMQ_MSGS (XID) 2013-12-09 21:15:20,394 [main ] DEBUG DefaultJDBCAdapter - Executing SQL: CREATE INDEX ACTIVEMQ_ACKS_XIDX ON ACTIVEMQ_ACKS (XID) 2013-12-09 21:15:20,602 [main ] DEBUG DefaultJDBCAdapter - Executing SQL: CREATE TABLE ACTIVEMQ_LOCK( ID BIGINT NOT NULL, TIME BIGINT, BROKER_NAME VARCHAR(250), PRIMARY KEY (ID) ) 2013-12-09 21:15:20,702 [main ] DEBUG DefaultJDBCAdapter - Executing SQL: INSERT INTO ACTIVEMQ_LOCK(ID) VALUES (1) 2013-12-09 21:15:20,753 [main ] INFO JDBCPersistenceAdapter - Persistence store purged. 2013-12-09 21:15:20,755 [main ] DEBUG DefaultJDBCAdapter - Executing SQL: CREATE TABLE ACTIVEMQ_MSGS(ID BIGINT NOT NULL, CONTAINER VARCHAR(250), MSGID_PROD VARCHAR(250), MSGID_SEQ BIGINT, EXPIRATION BIGINT, MSG LONGBLOB, PRIMARY KEY ( ID ) ) 2013-12-09 21:15:20,757 [main ] DEBUG DefaultJDBCAdapter - Could not create JDBC tables; The message table already existed. Failure was: CREATE TABLE ACTIVEMQ_MSGS(ID BIGINT NOT NULL, CONTAINER VARCHAR(250), MSGID_PROD VARCHAR(250), MSGID_SEQ BIGINT, EXPIRATION BIGINT, MSG LONGBLOB, PRIMARY KEY ( ID ) ) Message: Table 'ACTIVEMQ_MSGS' already exists SQLState: 42S01 Vendor code: 1050 2013-12-09 21:15:20,758 [main ] DEBUG DefaultJDBCAdapter - Executing SQL: CREATE INDEX ACTIVEMQ_MSGS_MIDX ON ACTIVEMQ_MSGS (MSGID_PROD,MSGID_SEQ) 2013-12-09 21:15:20,759 [main ] DEBUG DefaultJDBCAdapter - Could not create JDBC tables; The message table already existed. Failure was: CREATE INDEX ACTIVEMQ_MSGS_MIDX ON ACTIVEMQ_MSGS (MSGID_PROD,MSGID_SEQ) Message: Duplicate key name 'ACTIVEMQ_MSGS_MIDX' SQLState: 42000 Vendor code: 1061 2013-12-09 21:15:20,760 [main ] DEBUG DefaultJDBCAdapter - Executing SQL: CREATE INDEX ACTIVEMQ_MSGS_CIDX ON ACTIVEMQ_MSGS (CONTAINER) 2013-12-09 21:15:20,761 [main ] DEBUG DefaultJDBCAdapter - Could not create JDBC tables; The message table already existed. Failure was: CREATE INDEX ACTIVEMQ_MSGS_CIDX ON ACTIVEMQ_MSGS (CONTAINER) Message: Duplicate key name 'ACTIVEMQ_MSGS_CIDX' SQLState: 42000 Vendor code: 1061 2013-12-09 21:15:20,762 [main ] DEBUG DefaultJDBCAdapter - Executing SQL: CREATE INDEX ACTIVEMQ_MSGS_EIDX ON ACTIVEMQ_MSGS (EXPIRATION) 2013-12-09 21:15:20,764 [main ] DEBUG DefaultJDBCAdapter - Could not create JDBC tables; The message table already existed. Failure was: CREATE INDEX ACTIVEMQ_MSGS_EIDX ON ACTIVEMQ_MSGS (EXPIRATION) Message: Duplicate key name 'ACTIVEMQ_MSGS_EIDX' SQLState: 42000 Vendor code: 1061 2013-12-09 21:15:20,765 [main ] DEBUG DefaultJDBCAdapter - Executing SQL: CREATE TABLE ACTIVEMQ_ACKS(CONTAINER VARCHAR(250) NOT NULL, SUB_DEST VARCHAR(250), CLIENT_ID VARCHAR(250) NOT NULL, SUB_NAME VARCHAR(250) NOT NULL, SELECTOR VARCHAR(250), LAST_ACKED_ID BIGINT, PRIMARY KEY ( CONTAINER, CLIENT_ID, SUB_NAME)) 2013-12-09 21:15:20,767 [main ] DEBUG DefaultJDBCAdapter - Could not create JDBC tables; The message table already existed. Failure was: CREATE TABLE ACTIVEMQ_ACKS(CONTAINER VARCHAR(250) NOT NULL, SUB_DEST VARCHAR(250), CLIENT_ID VARCHAR(250) NOT NULL, SUB_NAME VARCHAR(250) NOT NULL, SELECTOR VARCHAR(250), LAST_ACKED_ID BIGINT, PRIMARY KEY ( CONTAINER, CLIENT_ID, SUB_NAME)) Message: Table 'ACTIVEMQ_ACKS' already exists SQLState: 42S01 Vendor code: 1050 2013-12-09 21:15:20,769 [main ] DEBUG DefaultJDBCAdapter - Executing SQL: ALTER TABLE ACTIVEMQ_MSGS ADD PRIORITY BIGINT 2013-12-09 21:15:20,770 [main ] DEBUG DefaultJDBCAdapter - Could not create JDBC tables; The message table already existed. Failure was: ALTER TABLE ACTIVEMQ_MSGS ADD PRIORITY BIGINT Message: Duplicate column name 'PRIORITY' SQLState: 42S21 Vendor code: 1060 2013-12-09 21:15:20,770 [main ] DEBUG DefaultJDBCAdapter - Executing SQL: CREATE INDEX ACTIVEMQ_MSGS_PIDX ON ACTIVEMQ_MSGS (PRIORITY) 2013-12-09 21:15:20,772 [main ] DEBUG DefaultJDBCAdapter - Could not create JDBC tables; The message table already existed. Failure was: CREATE INDEX ACTIVEMQ_MSGS_PIDX ON ACTIVEMQ_MSGS (PRIORITY) Message: Duplicate key name 'ACTIVEMQ_MSGS_PIDX' SQLState: 42000 Vendor code: 1061 2013-12-09 21:15:20,772 [main ] DEBUG DefaultJDBCAdapter - Executing SQL: ALTER TABLE ACTIVEMQ_MSGS ADD XID VARCHAR(250) 2013-12-09 21:15:20,773 [main ] DEBUG DefaultJDBCAdapter - Could not create JDBC tables; The message table already existed. Failure was: ALTER TABLE ACTIVEMQ_MSGS ADD XID VARCHAR(250) Message: Duplicate column name 'XID' SQLState: 42S21 Vendor code: 1060 2013-12-09 21:15:20,774 [main ] DEBUG DefaultJDBCAdapter - Executing SQL: ALTER TABLE ACTIVEMQ_ACKS ADD PRIORITY BIGINT DEFAULT 5 NOT NULL 2013-12-09 21:15:20,775 [main ] DEBUG DefaultJDBCAdapter - Could not create JDBC tables; The message table already existed. Failure was: ALTER TABLE ACTIVEMQ_ACKS ADD PRIORITY BIGINT DEFAULT 5 NOT NULL Message: Duplicate column name 'PRIORITY' SQLState: 42S21 Vendor code: 1060 2013-12-09 21:15:20,776 [main ] DEBUG DefaultJDBCAdapter - Executing SQL: ALTER TABLE ACTIVEMQ_ACKS ADD XID VARCHAR(250) 2013-12-09 21:15:20,777 [main ] DEBUG DefaultJDBCAdapter - Could not create JDBC tables; The message table already existed. Failure was: ALTER TABLE ACTIVEMQ_ACKS ADD XID VARCHAR(250) Message: Duplicate column name 'XID' SQLState: 42S21 Vendor code: 1060 2013-12-09 21:15:20,778 [main ] DEBUG DefaultJDBCAdapter - Executing SQL: ALTER TABLE ACTIVEMQ_ACKS DROP PRIMARY KEY 2013-12-09 21:15:21,026 [main ] DEBUG DefaultJDBCAdapter - Executing SQL: ALTER TABLE ACTIVEMQ_ACKS ADD PRIMARY KEY (CONTAINER, CLIENT_ID, SUB_NAME, PRIORITY) 2013-12-09 21:15:21,292 [main ] DEBUG DefaultJDBCAdapter - Executing SQL: CREATE INDEX ACTIVEMQ_MSGS_XIDX ON ACTIVEMQ_MSGS (XID) 2013-12-09 21:15:21,293 [main ] DEBUG DefaultJDBCAdapter - Could not create JDBC tables; The message table already existed. Failure was: CREATE INDEX ACTIVEMQ_MSGS_XIDX ON ACTIVEMQ_MSGS (XID) Message: Duplicate key name 'ACTIVEMQ_MSGS_XIDX' SQLState: 42000 Vendor code: 1061 2013-12-09 21:15:21,293 [main ] DEBUG DefaultJDBCAdapter - Executing SQL: CREATE INDEX ACTIVEMQ_ACKS_XIDX ON ACTIVEMQ_ACKS (XID) 2013-12-09 21:15:21,294 [main ] DEBUG DefaultJDBCAdapter - Could not create JDBC tables; The message table already existed. Failure was: CREATE INDEX ACTIVEMQ_ACKS_XIDX ON ACTIVEMQ_ACKS (XID) Message: Duplicate key name 'ACTIVEMQ_ACKS_XIDX' SQLState: 42000 Vendor code: 1061 2013-12-09 21:15:21,294 [main ] DEBUG DefaultJDBCAdapter - Executing SQL: CREATE TABLE ACTIVEMQ_LOCK( ID BIGINT NOT NULL, TIME BIGINT, BROKER_NAME VARCHAR(250), PRIMARY KEY (ID) ) 2013-12-09 21:15:21,295 [main ] DEBUG DefaultJDBCAdapter - Could not create JDBC tables; The message table already existed. Failure was: CREATE TABLE ACTIVEMQ_LOCK( ID BIGINT NOT NULL, TIME BIGINT, BROKER_NAME VARCHAR(250), PRIMARY KEY (ID) ) Message: Table 'ACTIVEMQ_LOCK' already exists SQLState: 42S01 Vendor code: 1050 2013-12-09 21:15:21,296 [main ] DEBUG DefaultJDBCAdapter - Executing SQL: INSERT INTO ACTIVEMQ_LOCK(ID) VALUES (1) 2013-12-09 21:15:21,297 [main ] DEBUG DefaultJDBCAdapter - Could not create JDBC tables; The message table already existed. Failure was: INSERT INTO ACTIVEMQ_LOCK(ID) VALUES (1) Message: Duplicate entry '1' for key 'PRIMARY' SQLState: 23000 Vendor code: 1062 2013-12-09 21:15:21,298 [main ] INFO LeaseDatabaseLocker - coreActiveMQBroker1 attempting to acquire exclusive lease to become the master 2013-12-09 21:15:21,298 [main ] DEBUG LeaseDatabaseLocker - coreActiveMQBroker1 locking Query is UPDATE ACTIVEMQ_LOCK SET BROKER_NAME=?, TIME=? WHERE (TIME IS NULL OR TIME < ?) AND ID = 1 2013-12-09 21:15:21,320 [main ] INFO LeaseDatabaseLocker - coreActiveMQBroker1 diff adjust from db: -1320, db time: 2013-12-09 21:15:20.0 2013-12-09 21:15:21,374 [main ] DEBUG LeaseDatabaseLocker - coreActiveMQBroker1, lease keepAlive Query is UPDATE ACTIVEMQ_LOCK SET BROKER_NAME=?, TIME=? WHERE BROKER_NAME=? AND ID = 1 2013-12-09 21:15:21,449 [main ] INFO LeaseDatabaseLocker - coreActiveMQBroker1, becoming master with lease expiry Mon Dec 09 21:15:20 CET 2013 on dataSource: org.apache.commons.dbcp.BasicDataSource@34430a24 2013-12-09 21:15:21,454 [ Scheduled Task] DEBUG JDBCPersistenceAdapter - Cleaning up old messages. 2013-12-09 21:15:21,455 [ Scheduled Task] DEBUG DefaultJDBCAdapter - Executing SQL: DELETE FROM ACTIVEMQ_MSGS WHERE (PRIORITY=? AND ID <= ( SELECT min(ACTIVEMQ_ACKS.LAST_ACKED_ID) FROM ACTIVEMQ_ACKS WHERE ACTIVEMQ_ACKS.CONTAINER=ACTIVEMQ_MSGS.CONTAINER AND ACTIVEMQ_ACKS.PRIORITY=?) ) 2013-12-09 21:15:21,457 [ Scheduled Task] DEBUG DefaultJDBCAdapter - Deleted 0 old message(s) at priority: 0 2013-12-09 21:15:21,457 [ Scheduled Task] DEBUG JDBCPersistenceAdapter - Cleanup done. 2013-12-09 21:15:21,599 [main ] INFO BrokerService - Apache ActiveMQ 5.9.0.redhat-610164 (coreActiveMQBroker1, ID:sideshow.home-57960-1386620121463-0:1) is starting 2013-12-09 21:15:21,616 [main ] DEBUG TransportConnector - Publishing: tcp://127.0.0.1:1666 for broker transport URI: tcp://127.0.0.1:1666?closeAsync=false 2013-12-09 21:15:21,685 [main ] INFO TransportServerThreadSupport - Listening for connections at: tcp://localhost.home:1666?closeAsync=false 2013-12-09 21:15:21,686 [main ] INFO TransportConnector - Connector openwire started 2013-12-09 21:15:21,687 [main ] INFO BrokerService - Apache ActiveMQ 5.9.0.redhat-610164 (coreActiveMQBroker1, ID:sideshow.home-57960-1386620121463-0:1) started 2013-12-09 21:15:21,687 [main ] INFO BrokerService - For help or more information please see: http://activemq.apache.org 2013-12-09 21:15:21,696 [main ] DEBUG AbstractRegion - coreActiveMQBroker1 adding destination: topic://ActiveMQ.Advisory.MasterBroker 2013-12-09 21:15:21,704 [main ] DEBUG TaskRunnerFactory - Initialized TaskRunnerFactory[ActiveMQ BrokerService[coreActiveMQBroker1] Task] using ExecutorService: java.util.concurrent.ThreadPoolExecutor@4b9c5afa[Running, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0] 2013-12-09 21:15:21,736 [main ] DEBUG TaskRunnerFactory - Initialized TaskRunnerFactory[ActiveMQ Task] using ExecutorService: java.util.concurrent.ThreadPoolExecutor@4f304f2f[Running, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0] 2013-12-09 21:15:21,745 [main ] DEBUG FailoverTransport - Reconnect was triggered but transport is not started yet. Wait for start to connect the transport. 2013-12-09 21:15:21,749 [main ] DEBUG FailoverTransport - Started unconnected 2013-12-09 21:15:21,750 [main ] DEBUG FailoverTransport - Waking up reconnect task 2013-12-09 21:15:21,750 [ActiveMQ Task-1] DEBUG FailoverTransport - urlList connectionList:[tcp://localhost:1666?trace=true], from: [tcp://localhost:1666?trace=true] 2013-12-09 21:15:21,789 [ActiveMQ Task-1] DEBUG FailoverTransport - Attempting 0th connect to: tcp://localhost:1666?trace=true 2013-12-09 21:15:21,790 [ActiveMQ Task-1] DEBUG WireFormatNegotiator - Sending: WireFormatInfo { version=10, properties={MaxFrameSize=9223372036854775807, CacheSize=1024, CacheEnabled=true, SizePrefixDisabled=false, MaxInactivityDurationInitalDelay=10000, TcpNoDelayEnabled=true, MaxInactivityDuration=30000, TightEncodingEnabled=true, StackTraceEnabled=true}, magic=[A,c,t,i,v,e,M,Q]} 2013-12-09 21:15:21,791 [ActiveMQ Task-1] DEBUG Connection:1 - SENDING: WireFormatInfo { version=10, properties={MaxFrameSize=9223372036854775807, CacheSize=1024, CacheEnabled=true, SizePrefixDisabled=false, MaxInactivityDurationInitalDelay=10000, TcpNoDelayEnabled=true, MaxInactivityDuration=30000, TightEncodingEnabled=true, StackTraceEnabled=true}, magic=[A,c,t,i,v,e,M,Q]} 2013-12-09 21:15:21,793 [ActiveMQ Task-1] DEBUG FailoverTransport - Connection established 2013-12-09 21:15:21,793 [ActiveMQ Task-1] INFO FailoverTransport - Successfully connected to tcp://localhost:1666?trace=true 2013-12-09 21:15:21,800 [Broker1] Task-1] DEBUG WireFormatNegotiator - Sending: WireFormatInfo { version=10, properties={MaxFrameSize=9223372036854775807, CacheSize=1024, CacheEnabled=true, SizePrefixDisabled=false, MaxInactivityDurationInitalDelay=10000, TcpNoDelayEnabled=true, MaxInactivityDuration=30000, TightEncodingEnabled=true, StackTraceEnabled=true}, magic=[A,c,t,i,v,e,M,Q]} 2013-12-09 21:15:21,802 [.0.1:57961@1666] DEBUG InactivityMonitor - Using min of local: WireFormatInfo { version=10, properties={MaxFrameSize=9223372036854775807, CacheSize=1024, CacheEnabled=true, SizePrefixDisabled=false, MaxInactivityDurationInitalDelay=10000, TcpNoDelayEnabled=true, MaxInactivityDuration=30000, TightEncodingEnabled=true, StackTraceEnabled=true}, magic=[A,c,t,i,v,e,M,Q]} and remote: WireFormatInfo { version=10, properties={CacheSize=1024, MaxFrameSize=9223372036854775807, CacheEnabled=true, SizePrefixDisabled=false, TcpNoDelayEnabled=true, MaxInactivityDurationInitalDelay=10000, MaxInactivityDuration=30000, TightEncodingEnabled=true, StackTraceEnabled=true}, magic=[A,c,t,i,v,e,M,Q]} 2013-12-09 21:15:21,802 [.0.1:1666@57961] DEBUG Connection:1 - RECEIVED: WireFormatInfo { version=10, properties={CacheSize=1024, MaxFrameSize=9223372036854775807, CacheEnabled=true, SizePrefixDisabled=false, TcpNoDelayEnabled=true, MaxInactivityDurationInitalDelay=10000, MaxInactivityDuration=30000, TightEncodingEnabled=true, StackTraceEnabled=true}, magic=[A,c,t,i,v,e,M,Q]} 2013-12-09 21:15:21,804 [.0.1:57961@1666] DEBUG WireFormatNegotiator - Received WireFormat: WireFormatInfo { version=10, properties={CacheSize=1024, MaxFrameSize=9223372036854775807, CacheEnabled=true, SizePrefixDisabled=false, TcpNoDelayEnabled=true, MaxInactivityDurationInitalDelay=10000, MaxInactivityDuration=30000, TightEncodingEnabled=true, StackTraceEnabled=true}, magic=[A,c,t,i,v,e,M,Q]} 2013-12-09 21:15:21,804 [.0.1:1666@57961] DEBUG InactivityMonitor - Using min of local: WireFormatInfo { version=10, properties={MaxFrameSize=9223372036854775807, CacheSize=1024, CacheEnabled=true, SizePrefixDisabled=false, MaxInactivityDurationInitalDelay=10000, TcpNoDelayEnabled=true, MaxInactivityDuration=30000, TightEncodingEnabled=true, StackTraceEnabled=true}, magic=[A,c,t,i,v,e,M,Q]} and remote: WireFormatInfo { version=10, properties={CacheSize=1024, MaxFrameSize=9223372036854775807, CacheEnabled=true, SizePrefixDisabled=false, TcpNoDelayEnabled=true, MaxInactivityDurationInitalDelay=10000, MaxInactivityDuration=30000, TightEncodingEnabled=true, StackTraceEnabled=true}, magic=[A,c,t,i,v,e,M,Q]} 2013-12-09 21:15:21,805 [.0.1:57961@1666] DEBUG WireFormatNegotiator - tcp:///127.0.0.1:57961@1666 before negotiation: OpenWireFormat{version=10, cacheEnabled=false, stackTraceEnabled=false, tightEncodingEnabled=false, sizePrefixDisabled=false, maxFrameSize=9223372036854775807} 2013-12-09 21:15:21,805 [.0.1:1666@57961] DEBUG WireFormatNegotiator - Received WireFormat: WireFormatInfo { version=10, properties={CacheSize=1024, MaxFrameSize=9223372036854775807, CacheEnabled=true, SizePrefixDisabled=false, TcpNoDelayEnabled=true, MaxInactivityDurationInitalDelay=10000, MaxInactivityDuration=30000, TightEncodingEnabled=true, StackTraceEnabled=true}, magic=[A,c,t,i,v,e,M,Q]} 2013-12-09 21:15:21,806 [.0.1:57961@1666] DEBUG WireFormatNegotiator - tcp:///127.0.0.1:57961@1666 after negotiation: OpenWireFormat{version=10, cacheEnabled=true, stackTraceEnabled=true, tightEncodingEnabled=true, sizePrefixDisabled=false, maxFrameSize=9223372036854775807} 2013-12-09 21:15:21,807 [.0.1:1666@57961] DEBUG WireFormatNegotiator - tcp://localhost/127.0.0.1:1666@57961 before negotiation: OpenWireFormat{version=10, cacheEnabled=false, stackTraceEnabled=false, tightEncodingEnabled=false, sizePrefixDisabled=false, maxFrameSize=9223372036854775807} 2013-12-09 21:15:21,808 [.0.1:1666@57961] DEBUG WireFormatNegotiator - tcp://localhost/127.0.0.1:1666@57961 after negotiation: OpenWireFormat{version=10, cacheEnabled=true, stackTraceEnabled=true, tightEncodingEnabled=true, sizePrefixDisabled=false, maxFrameSize=9223372036854775807} 2013-12-09 21:15:21,810 [main ] DEBUG Connection:1 - SENDING: ConnectionInfo {commandId = 1, responseRequired = true, connectionId = ID:sideshow.home-57960-1386620121463-3:1, clientId = ID:sideshow.home-57960-1386620121463-2:1, clientIp = null, userName = admin, password = *****, brokerPath = null, brokerMasterConnector = false, manageable = true, clientMaster = true, faultTolerant = true, failoverReconnect = false} 2013-12-09 21:15:21,810 [.0.1:1666@57961] DEBUG Connection:1 - RECEIVED: BrokerInfo {commandId = 0, responseRequired = false, brokerId = ID:sideshow.home-57960-1386620121463-0:1, brokerURL = tcp://127.0.0.1:1666, slaveBroker = false, masterBroker = false, faultTolerantConfiguration = false, networkConnection = false, duplexConnection = false, peerBrokerInfos = null, brokerName = coreActiveMQBroker1, connectionId = 0, brokerUploadUrl = null, networkProperties = null} 2013-12-09 21:15:21,811 [.0.1:57961@1666] DEBUG TransportConnection - Setting up new connection id: ID:sideshow.home-57960-1386620121463-3:1, address: tcp://127.0.0.1:57961, info: ConnectionInfo {commandId = 1, responseRequired = true, connectionId = ID:sideshow.home-57960-1386620121463-3:1, clientId = ID:sideshow.home-57960-1386620121463-2:1, clientIp = null, userName = admin, password = *****, brokerPath = null, brokerMasterConnector = false, manageable = true, clientMaster = true, faultTolerant = true, failoverReconnect = false} 2013-12-09 21:15:21,812 [.0.1:57961@1666] DEBUG AbstractRegion - coreActiveMQBroker1 adding destination: topic://ActiveMQ.Advisory.Connection 2013-12-09 21:15:21,814 [.0.1:1666@57961] DEBUG Connection:1 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 1} 2013-12-09 21:15:21,815 [.0.1:1666@57961] DEBUG Connection:1 - RECEIVED: ConnectionControl {commandId = 0, responseRequired = false, suspend = false, resume = false, close = false, exit = false, faultTolerant = false, connectedBrokers = , reconnectTo = , token = null, rebalanceConnection = false} 2013-12-09 21:15:21,817 [main ] DEBUG Connection:1 - SENDING: ConsumerInfo {commandId = 2, responseRequired = true, consumerId = ID:sideshow.home-57960-1386620121463-3:1:-1:1, destination = ActiveMQ.Advisory.TempQueue,ActiveMQ.Advisory.TempTopic, prefetchSize = 1000, maximumPendingMessageLimit = 0, browser = false, dispatchAsync = true, selector = null, clientId = null, subscriptionName = null, noLocal = true, exclusive = false, retroactive = false, priority = 0, brokerPath = null, optimizedAcknowledge = false, noRangeAcks = false, additionalPredicate = null} 2013-12-09 21:15:21,819 [.0.1:57961@1666] DEBUG AbstractRegion - coreActiveMQBroker1 adding consumer: ID:sideshow.home-57960-1386620121463-3:1:-1:1 for destination: ActiveMQ.Advisory.TempQueue,ActiveMQ.Advisory.TempTopic 2013-12-09 21:15:21,827 [.0.1:1666@57961] DEBUG Connection:1 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 2} 2013-12-09 21:15:21,839 [main ] DEBUG Connection:1 - SENDING: SessionInfo {commandId = 3, responseRequired = false, sessionId = ID:sideshow.home-57960-1386620121463-3:1:1} 2013-12-09 21:15:21,845 [main ] DEBUG Connection:1 - SENDING: ProducerInfo {commandId = 4, responseRequired = true, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, brokerPath = null, dispatchAsync = false, windowSize = 0} 2013-12-09 21:15:21,845 [.0.1:57961@1666] DEBUG AbstractRegion - coreActiveMQBroker1 adding destination: queue://test_queue_z0 2013-12-09 21:15:21,869 [.0.1:57961@1666] DEBUG Queue - test_queue_z0 toPageIn: 0, Inflight: 0, pagedInMessages.size 0, enqueueCount: 0, dequeueCount: 0 2013-12-09 21:15:21,871 [.0.1:57961@1666] DEBUG AbstractRegion - coreActiveMQBroker1 adding destination: topic://ActiveMQ.Advisory.Queue 2013-12-09 21:15:21,871 [.0.1:57961@1666] DEBUG AbstractRegion - coreActiveMQBroker1 adding destination: topic://ActiveMQ.Advisory.Producer.Queue.test_queue_z0 2013-12-09 21:15:21,872 [.0.1:1666@57961] DEBUG Connection:1 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 4} 2013-12-09 21:15:21,874 [pool-2-thread-1] DEBUG Connection:1 - SENDING: ActiveMQTextMessage {commandId = 5, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:1, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620121873, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 1} 2013-12-09 21:15:22,215 [.0.1:57961@1666] WARN JDBCPersistenceAdapter - JDBC Failure: Borrow prepareStatement from pool failed org.apache.commons.dbcp.SQLNestedException: Borrow prepareStatement from pool failed at org.apache.commons.dbcp.PoolingConnection.prepareStatement(PoolingConnection.java:113) at org.apache.commons.dbcp.DelegatingConnection.prepareStatement(DelegatingConnection.java:281) at org.apache.commons.dbcp.PoolingDataSource$PoolGuardConnectionWrapper.prepareStatement(PoolingDataSource.java:313) at org.apache.activemq.store.jdbc.adapter.DefaultJDBCAdapter.doAddMessage(DefaultJDBCAdapter.java:218) at org.apache.activemq.store.jdbc.JDBCMessageStore.addMessage(JDBCMessageStore.java:123) at org.apache.activemq.store.memory.MemoryTransactionStore.addMessage(MemoryTransactionStore.java:327) at org.apache.activemq.store.memory.MemoryTransactionStore$1.asyncAddQueueMessage(MemoryTransactionStore.java:154) at org.apache.activemq.broker.region.Queue.doMessageSend(Queue.java:842) at org.apache.activemq.broker.region.Queue.send(Queue.java:700) at org.apache.activemq.broker.region.AbstractRegion.send(AbstractRegion.java:394) at org.apache.activemq.broker.region.RegionBroker.send(RegionBroker.java:441) at org.apache.activemq.broker.BrokerFilter.send(BrokerFilter.java:147) at org.apache.activemq.broker.CompositeDestinationBroker.send(CompositeDestinationBroker.java:96) at org.apache.activemq.broker.TransactionBroker.send(TransactionBroker.java:307) at org.apache.activemq.broker.MutableBrokerFilter.send(MutableBrokerFilter.java:152) at org.apache.activemq.broker.TransportConnection.processMessage(TransportConnection.java:467) at org.apache.activemq.command.ActiveMQMessage.visit(ActiveMQMessage.java:751) at org.apache.activemq.broker.TransportConnection.service(TransportConnection.java:292) at org.apache.activemq.broker.TransportConnection$1.onCommand(TransportConnection.java:149) at org.apache.activemq.transport.MutexTransport.onCommand(MutexTransport.java:50) at org.apache.activemq.transport.WireFormatNegotiator.onCommand(WireFormatNegotiator.java:113) at org.apache.activemq.transport.AbstractInactivityMonitor.onCommand(AbstractInactivityMonitor.java:270) at org.apache.activemq.transport.TransportSupport.doConsume(TransportSupport.java:83) at org.apache.activemq.transport.tcp.TcpTransport.doRun(TcpTransport.java:214) at org.apache.activemq.transport.tcp.TcpTransport.run(TcpTransport.java:196) at java.lang.Thread.run(Thread.java:722) Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operations allowed after connection closed. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.Util.getInstance(Util.java:386) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1015) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:989) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:975) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:920) at com.mysql.jdbc.ConnectionImpl.throwConnectionClosedException(ConnectionImpl.java:1304) at com.mysql.jdbc.ConnectionImpl.checkClosed(ConnectionImpl.java:1296) at com.mysql.jdbc.ConnectionImpl.prepareStatement(ConnectionImpl.java:4511) at com.mysql.jdbc.ConnectionImpl.prepareStatement(ConnectionImpl.java:4476) at org.apache.commons.dbcp.PoolingConnection.makeObject(PoolingConnection.java:285) at org.apache.commons.pool.impl.GenericKeyedObjectPool.borrowObject(GenericKeyedObjectPool.java:1220) at org.apache.commons.dbcp.PoolingConnection.prepareStatement(PoolingConnection.java:107) ... 25 more Caused by: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet successfully received from the server was 345 milliseconds ago. The last packet sent successfully to the server was 336 milliseconds ago. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1121) at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3603) at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3492) at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:4043) at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2503) at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2664) at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2809) at com.mysql.jdbc.ConnectionImpl.setTransactionIsolation(ConnectionImpl.java:5639) at org.apache.commons.dbcp.DelegatingConnection.setTransactionIsolation(DelegatingConnection.java:380) at org.apache.commons.dbcp.DelegatingConnection.setTransactionIsolation(DelegatingConnection.java:380) at org.apache.commons.dbcp.PoolingDataSource$PoolGuardConnectionWrapper.setTransactionIsolation(PoolingDataSource.java:343) at org.apache.activemq.store.jdbc.TransactionContext.getConnection(TransactionContext.java:72) ... 23 more Caused by: java.io.EOFException: Can not read response from server. Expected to read 4 bytes, read 0 bytes before connection was unexpectedly lost. at com.mysql.jdbc.MysqlIO.readFully(MysqlIO.java:3052) at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3503) ... 33 more 2013-12-09 21:15:22,231 [.0.1:57961@1666] DEBUG Service - Error occured while processing sync command: ActiveMQTextMessage {commandId = 5, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:1, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620121873, arrival = 0, brokerInTime = 1386620121876, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1e6c33df, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 1}, exception: java.io.IOException: Failed to broker message: ID:sideshow.home-57960-1386620121463-3:1:1:1:1 in container: org.apache.commons.dbcp.SQLNestedException: Borrow prepareStatement from pool failed java.io.IOException: Failed to broker message: ID:sideshow.home-57960-1386620121463-3:1:1:1:1 in container: org.apache.commons.dbcp.SQLNestedException: Borrow prepareStatement from pool failed at org.apache.activemq.util.IOExceptionSupport.create(IOExceptionSupport.java:33) at org.apache.activemq.store.jdbc.JDBCMessageStore.addMessage(JDBCMessageStore.java:127) at org.apache.activemq.store.memory.MemoryTransactionStore.addMessage(MemoryTransactionStore.java:327) at org.apache.activemq.store.memory.MemoryTransactionStore$1.asyncAddQueueMessage(MemoryTransactionStore.java:154) at org.apache.activemq.broker.region.Queue.doMessageSend(Queue.java:842) at org.apache.activemq.broker.region.Queue.send(Queue.java:700) at org.apache.activemq.broker.region.AbstractRegion.send(AbstractRegion.java:394) at org.apache.activemq.broker.region.RegionBroker.send(RegionBroker.java:441) at org.apache.activemq.broker.BrokerFilter.send(BrokerFilter.java:147) at org.apache.activemq.broker.CompositeDestinationBroker.send(CompositeDestinationBroker.java:96) at org.apache.activemq.broker.TransactionBroker.send(TransactionBroker.java:307) at org.apache.activemq.broker.MutableBrokerFilter.send(MutableBrokerFilter.java:152) at org.apache.activemq.broker.TransportConnection.processMessage(TransportConnection.java:467) at org.apache.activemq.command.ActiveMQMessage.visit(ActiveMQMessage.java:751) at org.apache.activemq.broker.TransportConnection.service(TransportConnection.java:292) at org.apache.activemq.broker.TransportConnection$1.onCommand(TransportConnection.java:149) at org.apache.activemq.transport.MutexTransport.onCommand(MutexTransport.java:50) at org.apache.activemq.transport.WireFormatNegotiator.onCommand(WireFormatNegotiator.java:113) at org.apache.activemq.transport.AbstractInactivityMonitor.onCommand(AbstractInactivityMonitor.java:270) at org.apache.activemq.transport.TransportSupport.doConsume(TransportSupport.java:83) at org.apache.activemq.transport.tcp.TcpTransport.doRun(TcpTransport.java:214) at org.apache.activemq.transport.tcp.TcpTransport.run(TcpTransport.java:196) at java.lang.Thread.run(Thread.java:722) Caused by: org.apache.commons.dbcp.SQLNestedException: Borrow prepareStatement from pool failed at org.apache.commons.dbcp.PoolingConnection.prepareStatement(PoolingConnection.java:113) at org.apache.commons.dbcp.DelegatingConnection.prepareStatement(DelegatingConnection.java:281) at org.apache.commons.dbcp.PoolingDataSource$PoolGuardConnectionWrapper.prepareStatement(PoolingDataSource.java:313) at org.apache.activemq.store.jdbc.adapter.DefaultJDBCAdapter.doAddMessage(DefaultJDBCAdapter.java:218) at org.apache.activemq.store.jdbc.JDBCMessageStore.addMessage(JDBCMessageStore.java:123) ... 21 more Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operations allowed after connection closed. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.Util.getInstance(Util.java:386) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1015) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:989) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:975) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:920) at com.mysql.jdbc.ConnectionImpl.throwConnectionClosedException(ConnectionImpl.java:1304) at com.mysql.jdbc.ConnectionImpl.checkClosed(ConnectionImpl.java:1296) at com.mysql.jdbc.ConnectionImpl.prepareStatement(ConnectionImpl.java:4511) at com.mysql.jdbc.ConnectionImpl.prepareStatement(ConnectionImpl.java:4476) at org.apache.commons.dbcp.PoolingConnection.makeObject(PoolingConnection.java:285) at org.apache.commons.pool.impl.GenericKeyedObjectPool.borrowObject(GenericKeyedObjectPool.java:1220) at org.apache.commons.dbcp.PoolingConnection.prepareStatement(PoolingConnection.java:107) ... 25 more Caused by: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet successfully received from the server was 345 milliseconds ago. The last packet sent successfully to the server was 336 milliseconds ago. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1121) at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3603) at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3492) at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:4043) at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2503) at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2664) at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2809) at com.mysql.jdbc.ConnectionImpl.setTransactionIsolation(ConnectionImpl.java:5639) at org.apache.commons.dbcp.DelegatingConnection.setTransactionIsolation(DelegatingConnection.java:380) at org.apache.commons.dbcp.DelegatingConnection.setTransactionIsolation(DelegatingConnection.java:380) at org.apache.commons.dbcp.PoolingDataSource$PoolGuardConnectionWrapper.setTransactionIsolation(PoolingDataSource.java:343) at org.apache.activemq.store.jdbc.TransactionContext.getConnection(TransactionContext.java:72) ... 23 more Caused by: java.io.EOFException: Can not read response from server. Expected to read 4 bytes, read 0 bytes before connection was unexpectedly lost. at com.mysql.jdbc.MysqlIO.readFully(MysqlIO.java:3052) at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3503) ... 33 more 2013-12-09 21:15:22,247 [.0.1:1666@57961] DEBUG Connection:1 - RECEIVED: ExceptionResponse {commandId = 0, responseRequired = false, correlationId = 5, exception = java.io.IOException: Failed to broker message: ID:sideshow.home-57960-1386620121463-3:1:1:1:1 in container: org.apache.commons.dbcp.SQLNestedException: Borrow prepareStatement from pool failed} 2013-12-09 21:15:22,248 [pool-2-thread-1] INFO MyProducer - Received exception when sending message : javax.jms.JMSException: Failed to broker message: ID:sideshow.home-57960-1386620121463-3:1:1:1:1 in container: org.apache.commons.dbcp.SQLNestedException: Borrow prepareStatement from pool failed at org.apache.activemq.util.JMSExceptionSupport.create(JMSExceptionSupport.java:54) at org.apache.activemq.ActiveMQConnection.syncSendPacket(ActiveMQConnection.java:1405) at org.apache.activemq.ActiveMQConnection.syncSendPacket(ActiveMQConnection.java:1333) at org.apache.activemq.ActiveMQSession.send(ActiveMQSession.java:1811) at org.apache.activemq.ActiveMQMessageProducer.send(ActiveMQMessageProducer.java:289) at org.apache.activemq.ActiveMQMessageProducer.send(ActiveMQMessageProducer.java:224) at org.apache.activemq.ActiveMQMessageProducerSupport.send(ActiveMQMessageProducerSupport.java:241) at org.apache.activemq.bugs.ConsumerProducerDBFailoverTest$MyProducer.sendRetry(ConsumerProducerDBFailoverTest.java:272) at org.apache.activemq.bugs.ConsumerProducerDBFailoverTest$MyProducer.call(ConsumerProducerDBFailoverTest.java:292) at org.apache.activemq.bugs.ConsumerProducerDBFailoverTest$MyProducer.call(ConsumerProducerDBFailoverTest.java:237) at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:334) at java.util.concurrent.FutureTask.run(FutureTask.java:166) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603) at java.lang.Thread.run(Thread.java:722) Caused by: java.io.IOException: Failed to broker message: ID:sideshow.home-57960-1386620121463-3:1:1:1:1 in container: org.apache.commons.dbcp.SQLNestedException: Borrow prepareStatement from pool failed at org.apache.activemq.util.IOExceptionSupport.create(IOExceptionSupport.java:33) at org.apache.activemq.store.jdbc.JDBCMessageStore.addMessage(JDBCMessageStore.java:127) at org.apache.activemq.store.memory.MemoryTransactionStore.addMessage(MemoryTransactionStore.java:327) at org.apache.activemq.store.memory.MemoryTransactionStore$1.asyncAddQueueMessage(MemoryTransactionStore.java:154) at org.apache.activemq.broker.region.Queue.doMessageSend(Queue.java:842) at org.apache.activemq.broker.region.Queue.send(Queue.java:700) at org.apache.activemq.broker.region.AbstractRegion.send(AbstractRegion.java:394) at org.apache.activemq.broker.region.RegionBroker.send(RegionBroker.java:441) at org.apache.activemq.broker.BrokerFilter.send(BrokerFilter.java:147) at org.apache.activemq.broker.CompositeDestinationBroker.send(CompositeDestinationBroker.java:96) at org.apache.activemq.broker.TransactionBroker.send(TransactionBroker.java:307) at org.apache.activemq.broker.MutableBrokerFilter.send(MutableBrokerFilter.java:152) at org.apache.activemq.broker.TransportConnection.processMessage(TransportConnection.java:467) at org.apache.activemq.command.ActiveMQMessage.visit(ActiveMQMessage.java:751) at org.apache.activemq.broker.TransportConnection.service(TransportConnection.java:292) at org.apache.activemq.broker.TransportConnection$1.onCommand(TransportConnection.java:149) at org.apache.activemq.transport.MutexTransport.onCommand(MutexTransport.java:50) at org.apache.activemq.transport.WireFormatNegotiator.onCommand(WireFormatNegotiator.java:113) at org.apache.activemq.transport.AbstractInactivityMonitor.onCommand(AbstractInactivityMonitor.java:270) at org.apache.activemq.transport.TransportSupport.doConsume(TransportSupport.java:83) at org.apache.activemq.transport.tcp.TcpTransport.doRun(TcpTransport.java:214) at org.apache.activemq.transport.tcp.TcpTransport.run(TcpTransport.java:196) ... 1 more Caused by: java.lang.Throwable: org.apache.commons.dbcp.SQLNestedException: Borrow prepareStatement from pool failed at org.apache.commons.dbcp.PoolingConnection.prepareStatement(PoolingConnection.java:113) at org.apache.commons.dbcp.DelegatingConnection.prepareStatement(DelegatingConnection.java:281) at org.apache.commons.dbcp.PoolingDataSource$PoolGuardConnectionWrapper.prepareStatement(PoolingDataSource.java:313) at org.apache.activemq.store.jdbc.adapter.DefaultJDBCAdapter.doAddMessage(DefaultJDBCAdapter.java:218) at org.apache.activemq.store.jdbc.JDBCMessageStore.addMessage(JDBCMessageStore.java:123) ... 21 more Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operations allowed after connection closed. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.Util.getInstance(Util.java:386) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1015) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:989) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:975) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:920) at com.mysql.jdbc.ConnectionImpl.throwConnectionClosedException(ConnectionImpl.java:1304) at com.mysql.jdbc.ConnectionImpl.checkClosed(ConnectionImpl.java:1296) at com.mysql.jdbc.ConnectionImpl.prepareStatement(ConnectionImpl.java:4511) at com.mysql.jdbc.ConnectionImpl.prepareStatement(ConnectionImpl.java:4476) at org.apache.commons.dbcp.PoolingConnection.makeObject(PoolingConnection.java:285) at org.apache.commons.pool.impl.GenericKeyedObjectPool.borrowObject(GenericKeyedObjectPool.java:1220) at org.apache.commons.dbcp.PoolingConnection.prepareStatement(PoolingConnection.java:107) ... 25 more Caused by: java.lang.Throwable: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet successfully received from the server was 345 milliseconds ago. The last packet sent successfully to the server was 336 milliseconds ago. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1121) at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3603) at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3492) at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:4043) at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2503) at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2664) at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2809) at com.mysql.jdbc.ConnectionImpl.setTransactionIsolation(ConnectionImpl.java:5639) at org.apache.commons.dbcp.DelegatingConnection.setTransactionIsolation(DelegatingConnection.java:380) at org.apache.commons.dbcp.DelegatingConnection.setTransactionIsolation(DelegatingConnection.java:380) at org.apache.commons.dbcp.PoolingDataSource$PoolGuardConnectionWrapper.setTransactionIsolation(PoolingDataSource.java:343) at org.apache.activemq.store.jdbc.TransactionContext.getConnection(TransactionContext.java:72) ... 23 more Caused by: java.io.EOFException: Can not read response from server. Expected to read 4 bytes, read 0 bytes before connection was unexpectedly lost. at com.mysql.jdbc.MysqlIO.readFully(MysqlIO.java:3052) at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3503) ... 33 more 2013-12-09 21:15:22,261 [pool-2-thread-1] INFO MyProducer - Retrying message ID:sideshow.home-57960-1386620121463-3:1:1:1:1 2013-12-09 21:15:22,262 [pool-2-thread-1] DEBUG Connection:1 - SENDING: ActiveMQTextMessage {commandId = 6, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:2, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620122261, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 1} 2013-12-09 21:15:22,265 [.0.1:57961@1666] WARN JDBCPersistenceAdapter - JDBC Failure: Borrow prepareStatement from pool failed org.apache.commons.dbcp.SQLNestedException: Borrow prepareStatement from pool failed at org.apache.commons.dbcp.PoolingConnection.prepareStatement(PoolingConnection.java:113) at org.apache.commons.dbcp.DelegatingConnection.prepareStatement(DelegatingConnection.java:281) at org.apache.commons.dbcp.PoolingDataSource$PoolGuardConnectionWrapper.prepareStatement(PoolingDataSource.java:313) at org.apache.activemq.store.jdbc.adapter.DefaultJDBCAdapter.doAddMessage(DefaultJDBCAdapter.java:218) at org.apache.activemq.store.jdbc.JDBCMessageStore.addMessage(JDBCMessageStore.java:123) at org.apache.activemq.store.memory.MemoryTransactionStore.addMessage(MemoryTransactionStore.java:327) at org.apache.activemq.store.memory.MemoryTransactionStore$1.asyncAddQueueMessage(MemoryTransactionStore.java:154) at org.apache.activemq.broker.region.Queue.doMessageSend(Queue.java:842) at org.apache.activemq.broker.region.Queue.send(Queue.java:700) at org.apache.activemq.broker.region.AbstractRegion.send(AbstractRegion.java:394) at org.apache.activemq.broker.region.RegionBroker.send(RegionBroker.java:441) at org.apache.activemq.broker.BrokerFilter.send(BrokerFilter.java:147) at org.apache.activemq.broker.CompositeDestinationBroker.send(CompositeDestinationBroker.java:96) at org.apache.activemq.broker.TransactionBroker.send(TransactionBroker.java:307) at org.apache.activemq.broker.MutableBrokerFilter.send(MutableBrokerFilter.java:152) at org.apache.activemq.broker.TransportConnection.processMessage(TransportConnection.java:467) at org.apache.activemq.command.ActiveMQMessage.visit(ActiveMQMessage.java:751) at org.apache.activemq.broker.TransportConnection.service(TransportConnection.java:292) at org.apache.activemq.broker.TransportConnection$1.onCommand(TransportConnection.java:149) at org.apache.activemq.transport.MutexTransport.onCommand(MutexTransport.java:50) at org.apache.activemq.transport.WireFormatNegotiator.onCommand(WireFormatNegotiator.java:113) at org.apache.activemq.transport.AbstractInactivityMonitor.onCommand(AbstractInactivityMonitor.java:270) at org.apache.activemq.transport.TransportSupport.doConsume(TransportSupport.java:83) at org.apache.activemq.transport.tcp.TcpTransport.doRun(TcpTransport.java:214) at org.apache.activemq.transport.tcp.TcpTransport.run(TcpTransport.java:196) at java.lang.Thread.run(Thread.java:722) Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operations allowed after connection closed. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.Util.getInstance(Util.java:386) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1015) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:989) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:975) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:920) at com.mysql.jdbc.ConnectionImpl.throwConnectionClosedException(ConnectionImpl.java:1304) at com.mysql.jdbc.ConnectionImpl.checkClosed(ConnectionImpl.java:1296) at com.mysql.jdbc.ConnectionImpl.prepareStatement(ConnectionImpl.java:4511) at com.mysql.jdbc.ConnectionImpl.prepareStatement(ConnectionImpl.java:4476) at org.apache.commons.dbcp.PoolingConnection.makeObject(PoolingConnection.java:285) at org.apache.commons.pool.impl.GenericKeyedObjectPool.borrowObject(GenericKeyedObjectPool.java:1220) at org.apache.commons.dbcp.PoolingConnection.prepareStatement(PoolingConnection.java:107) ... 25 more Caused by: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet successfully received from the server was 815 milliseconds ago. The last packet sent successfully to the server was 1 milliseconds ago. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1121) at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3603) at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3492) at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:4043) at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2503) at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2664) at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2809) at com.mysql.jdbc.ConnectionImpl.setTransactionIsolation(ConnectionImpl.java:5639) at org.apache.commons.dbcp.DelegatingConnection.setTransactionIsolation(DelegatingConnection.java:380) at org.apache.commons.dbcp.DelegatingConnection.setTransactionIsolation(DelegatingConnection.java:380) at org.apache.commons.dbcp.PoolingDataSource$PoolGuardConnectionWrapper.setTransactionIsolation(PoolingDataSource.java:343) at org.apache.activemq.store.jdbc.TransactionContext.getConnection(TransactionContext.java:72) ... 23 more Caused by: java.net.SocketException: Connection reset at java.net.SocketInputStream.read(SocketInputStream.java:189) at java.net.SocketInputStream.read(SocketInputStream.java:121) at com.mysql.jdbc.util.ReadAheadInputStream.fill(ReadAheadInputStream.java:114) at com.mysql.jdbc.util.ReadAheadInputStream.readFromUnderlyingStreamIfNecessary(ReadAheadInputStream.java:161) at com.mysql.jdbc.util.ReadAheadInputStream.read(ReadAheadInputStream.java:189) at com.mysql.jdbc.MysqlIO.readFully(MysqlIO.java:3049) at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3503) ... 33 more 2013-12-09 21:15:22,275 [.0.1:57961@1666] DEBUG Service - Error occured while processing sync command: ActiveMQTextMessage {commandId = 6, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:2, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620122261, arrival = 0, brokerInTime = 1386620122263, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@95e7f59, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 1}, exception: java.io.IOException: Failed to broker message: ID:sideshow.home-57960-1386620121463-3:1:1:1:2 in container: org.apache.commons.dbcp.SQLNestedException: Borrow prepareStatement from pool failed java.io.IOException: Failed to broker message: ID:sideshow.home-57960-1386620121463-3:1:1:1:2 in container: org.apache.commons.dbcp.SQLNestedException: Borrow prepareStatement from pool failed at org.apache.activemq.util.IOExceptionSupport.create(IOExceptionSupport.java:33) at org.apache.activemq.store.jdbc.JDBCMessageStore.addMessage(JDBCMessageStore.java:127) at org.apache.activemq.store.memory.MemoryTransactionStore.addMessage(MemoryTransactionStore.java:327) at org.apache.activemq.store.memory.MemoryTransactionStore$1.asyncAddQueueMessage(MemoryTransactionStore.java:154) at org.apache.activemq.broker.region.Queue.doMessageSend(Queue.java:842) at org.apache.activemq.broker.region.Queue.send(Queue.java:700) at org.apache.activemq.broker.region.AbstractRegion.send(AbstractRegion.java:394) at org.apache.activemq.broker.region.RegionBroker.send(RegionBroker.java:441) at org.apache.activemq.broker.BrokerFilter.send(BrokerFilter.java:147) at org.apache.activemq.broker.CompositeDestinationBroker.send(CompositeDestinationBroker.java:96) at org.apache.activemq.broker.TransactionBroker.send(TransactionBroker.java:307) at org.apache.activemq.broker.MutableBrokerFilter.send(MutableBrokerFilter.java:152) at org.apache.activemq.broker.TransportConnection.processMessage(TransportConnection.java:467) at org.apache.activemq.command.ActiveMQMessage.visit(ActiveMQMessage.java:751) at org.apache.activemq.broker.TransportConnection.service(TransportConnection.java:292) at org.apache.activemq.broker.TransportConnection$1.onCommand(TransportConnection.java:149) at org.apache.activemq.transport.MutexTransport.onCommand(MutexTransport.java:50) at org.apache.activemq.transport.WireFormatNegotiator.onCommand(WireFormatNegotiator.java:113) at org.apache.activemq.transport.AbstractInactivityMonitor.onCommand(AbstractInactivityMonitor.java:270) at org.apache.activemq.transport.TransportSupport.doConsume(TransportSupport.java:83) at org.apache.activemq.transport.tcp.TcpTransport.doRun(TcpTransport.java:214) at org.apache.activemq.transport.tcp.TcpTransport.run(TcpTransport.java:196) at java.lang.Thread.run(Thread.java:722) Caused by: org.apache.commons.dbcp.SQLNestedException: Borrow prepareStatement from pool failed at org.apache.commons.dbcp.PoolingConnection.prepareStatement(PoolingConnection.java:113) at org.apache.commons.dbcp.DelegatingConnection.prepareStatement(DelegatingConnection.java:281) at org.apache.commons.dbcp.PoolingDataSource$PoolGuardConnectionWrapper.prepareStatement(PoolingDataSource.java:313) at org.apache.activemq.store.jdbc.adapter.DefaultJDBCAdapter.doAddMessage(DefaultJDBCAdapter.java:218) at org.apache.activemq.store.jdbc.JDBCMessageStore.addMessage(JDBCMessageStore.java:123) ... 21 more Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operations allowed after connection closed. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.Util.getInstance(Util.java:386) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1015) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:989) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:975) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:920) at com.mysql.jdbc.ConnectionImpl.throwConnectionClosedException(ConnectionImpl.java:1304) at com.mysql.jdbc.ConnectionImpl.checkClosed(ConnectionImpl.java:1296) at com.mysql.jdbc.ConnectionImpl.prepareStatement(ConnectionImpl.java:4511) at com.mysql.jdbc.ConnectionImpl.prepareStatement(ConnectionImpl.java:4476) at org.apache.commons.dbcp.PoolingConnection.makeObject(PoolingConnection.java:285) at org.apache.commons.pool.impl.GenericKeyedObjectPool.borrowObject(GenericKeyedObjectPool.java:1220) at org.apache.commons.dbcp.PoolingConnection.prepareStatement(PoolingConnection.java:107) ... 25 more Caused by: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet successfully received from the server was 815 milliseconds ago. The last packet sent successfully to the server was 1 milliseconds ago. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1121) at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3603) at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3492) at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:4043) at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2503) at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2664) at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2809) at com.mysql.jdbc.ConnectionImpl.setTransactionIsolation(ConnectionImpl.java:5639) at org.apache.commons.dbcp.DelegatingConnection.setTransactionIsolation(DelegatingConnection.java:380) at org.apache.commons.dbcp.DelegatingConnection.setTransactionIsolation(DelegatingConnection.java:380) at org.apache.commons.dbcp.PoolingDataSource$PoolGuardConnectionWrapper.setTransactionIsolation(PoolingDataSource.java:343) at org.apache.activemq.store.jdbc.TransactionContext.getConnection(TransactionContext.java:72) ... 23 more Caused by: java.net.SocketException: Connection reset at java.net.SocketInputStream.read(SocketInputStream.java:189) at java.net.SocketInputStream.read(SocketInputStream.java:121) at com.mysql.jdbc.util.ReadAheadInputStream.fill(ReadAheadInputStream.java:114) at com.mysql.jdbc.util.ReadAheadInputStream.readFromUnderlyingStreamIfNecessary(ReadAheadInputStream.java:161) at com.mysql.jdbc.util.ReadAheadInputStream.read(ReadAheadInputStream.java:189) at com.mysql.jdbc.MysqlIO.readFully(MysqlIO.java:3049) at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3503) ... 33 more 2013-12-09 21:15:22,291 [.0.1:1666@57961] DEBUG Connection:1 - RECEIVED: ExceptionResponse {commandId = 0, responseRequired = false, correlationId = 6, exception = java.io.IOException: Failed to broker message: ID:sideshow.home-57960-1386620121463-3:1:1:1:2 in container: org.apache.commons.dbcp.SQLNestedException: Borrow prepareStatement from pool failed} 2013-12-09 21:15:22,292 [pool-2-thread-1] INFO MyProducer - Received exception when sending message : javax.jms.JMSException: Failed to broker message: ID:sideshow.home-57960-1386620121463-3:1:1:1:2 in container: org.apache.commons.dbcp.SQLNestedException: Borrow prepareStatement from pool failed at org.apache.activemq.util.JMSExceptionSupport.create(JMSExceptionSupport.java:54) at org.apache.activemq.ActiveMQConnection.syncSendPacket(ActiveMQConnection.java:1405) at org.apache.activemq.ActiveMQConnection.syncSendPacket(ActiveMQConnection.java:1333) at org.apache.activemq.ActiveMQSession.send(ActiveMQSession.java:1811) at org.apache.activemq.ActiveMQMessageProducer.send(ActiveMQMessageProducer.java:289) at org.apache.activemq.ActiveMQMessageProducer.send(ActiveMQMessageProducer.java:224) at org.apache.activemq.ActiveMQMessageProducerSupport.send(ActiveMQMessageProducerSupport.java:241) at org.apache.activemq.bugs.ConsumerProducerDBFailoverTest$MyProducer.sendRetry(ConsumerProducerDBFailoverTest.java:272) at org.apache.activemq.bugs.ConsumerProducerDBFailoverTest$MyProducer.call(ConsumerProducerDBFailoverTest.java:292) at org.apache.activemq.bugs.ConsumerProducerDBFailoverTest$MyProducer.call(ConsumerProducerDBFailoverTest.java:237) at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:334) at java.util.concurrent.FutureTask.run(FutureTask.java:166) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603) at java.lang.Thread.run(Thread.java:722) Caused by: java.io.IOException: Failed to broker message: ID:sideshow.home-57960-1386620121463-3:1:1:1:2 in container: org.apache.commons.dbcp.SQLNestedException: Borrow prepareStatement from pool failed at org.apache.activemq.util.IOExceptionSupport.create(IOExceptionSupport.java:33) at org.apache.activemq.store.jdbc.JDBCMessageStore.addMessage(JDBCMessageStore.java:127) at org.apache.activemq.store.memory.MemoryTransactionStore.addMessage(MemoryTransactionStore.java:327) at org.apache.activemq.store.memory.MemoryTransactionStore$1.asyncAddQueueMessage(MemoryTransactionStore.java:154) at org.apache.activemq.broker.region.Queue.doMessageSend(Queue.java:842) at org.apache.activemq.broker.region.Queue.send(Queue.java:700) at org.apache.activemq.broker.region.AbstractRegion.send(AbstractRegion.java:394) at org.apache.activemq.broker.region.RegionBroker.send(RegionBroker.java:441) at org.apache.activemq.broker.BrokerFilter.send(BrokerFilter.java:147) at org.apache.activemq.broker.CompositeDestinationBroker.send(CompositeDestinationBroker.java:96) at org.apache.activemq.broker.TransactionBroker.send(TransactionBroker.java:307) at org.apache.activemq.broker.MutableBrokerFilter.send(MutableBrokerFilter.java:152) at org.apache.activemq.broker.TransportConnection.processMessage(TransportConnection.java:467) at org.apache.activemq.command.ActiveMQMessage.visit(ActiveMQMessage.java:751) at org.apache.activemq.broker.TransportConnection.service(TransportConnection.java:292) at org.apache.activemq.broker.TransportConnection$1.onCommand(TransportConnection.java:149) at org.apache.activemq.transport.MutexTransport.onCommand(MutexTransport.java:50) at org.apache.activemq.transport.WireFormatNegotiator.onCommand(WireFormatNegotiator.java:113) at org.apache.activemq.transport.AbstractInactivityMonitor.onCommand(AbstractInactivityMonitor.java:270) at org.apache.activemq.transport.TransportSupport.doConsume(TransportSupport.java:83) at org.apache.activemq.transport.tcp.TcpTransport.doRun(TcpTransport.java:214) at org.apache.activemq.transport.tcp.TcpTransport.run(TcpTransport.java:196) ... 1 more Caused by: java.lang.Throwable: org.apache.commons.dbcp.SQLNestedException: Borrow prepareStatement from pool failed at org.apache.commons.dbcp.PoolingConnection.prepareStatement(PoolingConnection.java:113) at org.apache.commons.dbcp.DelegatingConnection.prepareStatement(DelegatingConnection.java:281) at org.apache.commons.dbcp.PoolingDataSource$PoolGuardConnectionWrapper.prepareStatement(PoolingDataSource.java:313) at org.apache.activemq.store.jdbc.adapter.DefaultJDBCAdapter.doAddMessage(DefaultJDBCAdapter.java:218) at org.apache.activemq.store.jdbc.JDBCMessageStore.addMessage(JDBCMessageStore.java:123) ... 21 more Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operations allowed after connection closed. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.Util.getInstance(Util.java:386) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1015) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:989) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:975) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:920) at com.mysql.jdbc.ConnectionImpl.throwConnectionClosedException(ConnectionImpl.java:1304) at com.mysql.jdbc.ConnectionImpl.checkClosed(ConnectionImpl.java:1296) at com.mysql.jdbc.ConnectionImpl.prepareStatement(ConnectionImpl.java:4511) at com.mysql.jdbc.ConnectionImpl.prepareStatement(ConnectionImpl.java:4476) at org.apache.commons.dbcp.PoolingConnection.makeObject(PoolingConnection.java:285) at org.apache.commons.pool.impl.GenericKeyedObjectPool.borrowObject(GenericKeyedObjectPool.java:1220) at org.apache.commons.dbcp.PoolingConnection.prepareStatement(PoolingConnection.java:107) ... 25 more Caused by: java.lang.Throwable: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet successfully received from the server was 815 milliseconds ago. The last packet sent successfully to the server was 1 milliseconds ago. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1121) at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3603) at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3492) at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:4043) at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2503) at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2664) at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2809) at com.mysql.jdbc.ConnectionImpl.setTransactionIsolation(ConnectionImpl.java:5639) at org.apache.commons.dbcp.DelegatingConnection.setTransactionIsolation(DelegatingConnection.java:380) at org.apache.commons.dbcp.DelegatingConnection.setTransactionIsolation(DelegatingConnection.java:380) at org.apache.commons.dbcp.PoolingDataSource$PoolGuardConnectionWrapper.setTransactionIsolation(PoolingDataSource.java:343) at org.apache.activemq.store.jdbc.TransactionContext.getConnection(TransactionContext.java:72) ... 23 more Caused by: java.net.SocketException: Connection reset at java.net.SocketInputStream.read(SocketInputStream.java:189) at java.net.SocketInputStream.read(SocketInputStream.java:121) at com.mysql.jdbc.util.ReadAheadInputStream.fill(ReadAheadInputStream.java:114) at com.mysql.jdbc.util.ReadAheadInputStream.readFromUnderlyingStreamIfNecessary(ReadAheadInputStream.java:161) at com.mysql.jdbc.util.ReadAheadInputStream.read(ReadAheadInputStream.java:189) at com.mysql.jdbc.MysqlIO.readFully(MysqlIO.java:3049) at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3503) ... 33 more 2013-12-09 21:15:22,302 [pool-2-thread-1] INFO MyProducer - Retrying message ID:sideshow.home-57960-1386620121463-3:1:1:1:2 2013-12-09 21:15:22,303 [pool-2-thread-1] DEBUG Connection:1 - SENDING: ActiveMQTextMessage {commandId = 7, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:3, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620122303, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 1} 2013-12-09 21:15:22,307 [.0.1:57961@1666] WARN JDBCPersistenceAdapter - Could not get JDBC connection: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1121) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:355) at com.mysql.jdbc.ConnectionImpl.coreConnect(ConnectionImpl.java:2479) at com.mysql.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:2516) at com.mysql.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:2301) at com.mysql.jdbc.ConnectionImpl.(ConnectionImpl.java:834) at com.mysql.jdbc.JDBC4Connection.(JDBC4Connection.java:47) at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:416) at com.mysql.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:317) at org.apache.commons.dbcp.DriverConnectionFactory.createConnection(DriverConnectionFactory.java:38) at org.apache.commons.dbcp.PoolableConnectionFactory.makeObject(PoolableConnectionFactory.java:582) at org.apache.commons.pool.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:1188) at org.apache.commons.dbcp.PoolingDataSource.getConnection(PoolingDataSource.java:106) at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:1044) at org.apache.activemq.store.jdbc.TransactionContext.getConnection(TransactionContext.java:56) at org.apache.activemq.store.jdbc.adapter.DefaultJDBCAdapter.doAddMessage(DefaultJDBCAdapter.java:218) at org.apache.activemq.store.jdbc.JDBCMessageStore.addMessage(JDBCMessageStore.java:123) at org.apache.activemq.store.memory.MemoryTransactionStore.addMessage(MemoryTransactionStore.java:327) at org.apache.activemq.store.memory.MemoryTransactionStore$1.asyncAddQueueMessage(MemoryTransactionStore.java:154) at org.apache.activemq.broker.region.Queue.doMessageSend(Queue.java:842) at org.apache.activemq.broker.region.Queue.send(Queue.java:700) at org.apache.activemq.broker.region.AbstractRegion.send(AbstractRegion.java:394) at org.apache.activemq.broker.region.RegionBroker.send(RegionBroker.java:441) at org.apache.activemq.broker.BrokerFilter.send(BrokerFilter.java:147) at org.apache.activemq.broker.CompositeDestinationBroker.send(CompositeDestinationBroker.java:96) at org.apache.activemq.broker.TransactionBroker.send(TransactionBroker.java:307) at org.apache.activemq.broker.MutableBrokerFilter.send(MutableBrokerFilter.java:152) at org.apache.activemq.broker.TransportConnection.processMessage(TransportConnection.java:467) at org.apache.activemq.command.ActiveMQMessage.visit(ActiveMQMessage.java:751) at org.apache.activemq.broker.TransportConnection.service(TransportConnection.java:292) at org.apache.activemq.broker.TransportConnection$1.onCommand(TransportConnection.java:149) at org.apache.activemq.transport.MutexTransport.onCommand(MutexTransport.java:50) at org.apache.activemq.transport.WireFormatNegotiator.onCommand(WireFormatNegotiator.java:113) at org.apache.activemq.transport.AbstractInactivityMonitor.onCommand(AbstractInactivityMonitor.java:270) at org.apache.activemq.transport.TransportSupport.doConsume(TransportSupport.java:83) at org.apache.activemq.transport.tcp.TcpTransport.doRun(TcpTransport.java:214) at org.apache.activemq.transport.tcp.TcpTransport.run(TcpTransport.java:196) at java.lang.Thread.run(Thread.java:722) Caused by: java.net.ConnectException: Connection refused at java.net.PlainSocketImpl.socketConnect(Native Method) at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:339) at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:200) at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:182) at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:391) at java.net.Socket.connect(Socket.java:579) at java.net.Socket.connect(Socket.java:528) at java.net.Socket.(Socket.java:425) at java.net.Socket.(Socket.java:241) at com.mysql.jdbc.StandardSocketFactory.connect(StandardSocketFactory.java:259) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:305) ... 41 more 2013-12-09 21:15:22,328 [.0.1:57961@1666] INFO DefaultIOExceptionHandler - Initiating stop/restart of transports on BrokerService[coreActiveMQBroker1] due to IO exception, java.io.IOException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. java.io.IOException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. at org.apache.activemq.util.IOExceptionSupport.create(IOExceptionSupport.java:45) at org.apache.activemq.store.jdbc.TransactionContext.getConnection(TransactionContext.java:66) at org.apache.activemq.store.jdbc.adapter.DefaultJDBCAdapter.doAddMessage(DefaultJDBCAdapter.java:218) at org.apache.activemq.store.jdbc.JDBCMessageStore.addMessage(JDBCMessageStore.java:123) at org.apache.activemq.store.memory.MemoryTransactionStore.addMessage(MemoryTransactionStore.java:327) at org.apache.activemq.store.memory.MemoryTransactionStore$1.asyncAddQueueMessage(MemoryTransactionStore.java:154) at org.apache.activemq.broker.region.Queue.doMessageSend(Queue.java:842) at org.apache.activemq.broker.region.Queue.send(Queue.java:700) at org.apache.activemq.broker.region.AbstractRegion.send(AbstractRegion.java:394) at org.apache.activemq.broker.region.RegionBroker.send(RegionBroker.java:441) at org.apache.activemq.broker.BrokerFilter.send(BrokerFilter.java:147) at org.apache.activemq.broker.CompositeDestinationBroker.send(CompositeDestinationBroker.java:96) at org.apache.activemq.broker.TransactionBroker.send(TransactionBroker.java:307) at org.apache.activemq.broker.MutableBrokerFilter.send(MutableBrokerFilter.java:152) at org.apache.activemq.broker.TransportConnection.processMessage(TransportConnection.java:467) at org.apache.activemq.command.ActiveMQMessage.visit(ActiveMQMessage.java:751) at org.apache.activemq.broker.TransportConnection.service(TransportConnection.java:292) at org.apache.activemq.broker.TransportConnection$1.onCommand(TransportConnection.java:149) at org.apache.activemq.transport.MutexTransport.onCommand(MutexTransport.java:50) at org.apache.activemq.transport.WireFormatNegotiator.onCommand(WireFormatNegotiator.java:113) at org.apache.activemq.transport.AbstractInactivityMonitor.onCommand(AbstractInactivityMonitor.java:270) at org.apache.activemq.transport.TransportSupport.doConsume(TransportSupport.java:83) at org.apache.activemq.transport.tcp.TcpTransport.doRun(TcpTransport.java:214) at org.apache.activemq.transport.tcp.TcpTransport.run(TcpTransport.java:196) at java.lang.Thread.run(Thread.java:722) Caused by: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1121) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:355) at com.mysql.jdbc.ConnectionImpl.coreConnect(ConnectionImpl.java:2479) at com.mysql.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:2516) at com.mysql.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:2301) at com.mysql.jdbc.ConnectionImpl.(ConnectionImpl.java:834) at com.mysql.jdbc.JDBC4Connection.(JDBC4Connection.java:47) at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:416) at com.mysql.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:317) at org.apache.commons.dbcp.DriverConnectionFactory.createConnection(DriverConnectionFactory.java:38) at org.apache.commons.dbcp.PoolableConnectionFactory.makeObject(PoolableConnectionFactory.java:582) at org.apache.commons.pool.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:1188) at org.apache.commons.dbcp.PoolingDataSource.getConnection(PoolingDataSource.java:106) at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:1044) at org.apache.activemq.store.jdbc.TransactionContext.getConnection(TransactionContext.java:56) ... 23 more Caused by: java.net.ConnectException: Connection refused at java.net.PlainSocketImpl.socketConnect(Native Method) at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:339) at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:200) at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:182) at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:391) at java.net.Socket.connect(Socket.java:579) at java.net.Socket.connect(Socket.java:528) at java.net.Socket.(Socket.java:425) at java.net.Socket.(Socket.java:241) at com.mysql.jdbc.StandardSocketFactory.connect(StandardSocketFactory.java:259) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:305) ... 41 more 2013-12-09 21:15:22,337 [.0.1:57961@1666] DEBUG Service - Error occured while processing sync command: ActiveMQTextMessage {commandId = 7, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:3, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620122303, arrival = 0, brokerInTime = 1386620122304, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@fe8f616, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 1}, exception: org.apache.activemq.broker.SuppressReplyException: Stop/RestartTransportsInitiated org.apache.activemq.broker.SuppressReplyException: Stop/RestartTransportsInitiated at org.apache.activemq.util.DefaultIOExceptionHandler.handle(DefaultIOExceptionHandler.java:124) at org.apache.activemq.broker.BrokerService.handleIOException(BrokerService.java:2528) at org.apache.activemq.store.jdbc.TransactionContext.getConnection(TransactionContext.java:67) at org.apache.activemq.store.jdbc.adapter.DefaultJDBCAdapter.doAddMessage(DefaultJDBCAdapter.java:218) at org.apache.activemq.store.jdbc.JDBCMessageStore.addMessage(JDBCMessageStore.java:123) at org.apache.activemq.store.memory.MemoryTransactionStore.addMessage(MemoryTransactionStore.java:327) at org.apache.activemq.store.memory.MemoryTransactionStore$1.asyncAddQueueMessage(MemoryTransactionStore.java:154) at org.apache.activemq.broker.region.Queue.doMessageSend(Queue.java:842) at org.apache.activemq.broker.region.Queue.send(Queue.java:700) at org.apache.activemq.broker.region.AbstractRegion.send(AbstractRegion.java:394) at org.apache.activemq.broker.region.RegionBroker.send(RegionBroker.java:441) at org.apache.activemq.broker.BrokerFilter.send(BrokerFilter.java:147) at org.apache.activemq.broker.CompositeDestinationBroker.send(CompositeDestinationBroker.java:96) at org.apache.activemq.broker.TransactionBroker.send(TransactionBroker.java:307) at org.apache.activemq.broker.MutableBrokerFilter.send(MutableBrokerFilter.java:152) at org.apache.activemq.broker.TransportConnection.processMessage(TransportConnection.java:467) at org.apache.activemq.command.ActiveMQMessage.visit(ActiveMQMessage.java:751) at org.apache.activemq.broker.TransportConnection.service(TransportConnection.java:292) at org.apache.activemq.broker.TransportConnection$1.onCommand(TransportConnection.java:149) at org.apache.activemq.transport.MutexTransport.onCommand(MutexTransport.java:50) at org.apache.activemq.transport.WireFormatNegotiator.onCommand(WireFormatNegotiator.java:113) at org.apache.activemq.transport.AbstractInactivityMonitor.onCommand(AbstractInactivityMonitor.java:270) at org.apache.activemq.transport.TransportSupport.doConsume(TransportSupport.java:83) at org.apache.activemq.transport.tcp.TcpTransport.doRun(TcpTransport.java:214) at org.apache.activemq.transport.tcp.TcpTransport.run(TcpTransport.java:196) at java.lang.Thread.run(Thread.java:722) Caused by: java.io.IOException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. at org.apache.activemq.util.IOExceptionSupport.create(IOExceptionSupport.java:45) at org.apache.activemq.store.jdbc.TransactionContext.getConnection(TransactionContext.java:66) ... 23 more Caused by: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1121) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:355) at com.mysql.jdbc.ConnectionImpl.coreConnect(ConnectionImpl.java:2479) at com.mysql.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:2516) at com.mysql.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:2301) at com.mysql.jdbc.ConnectionImpl.(ConnectionImpl.java:834) at com.mysql.jdbc.JDBC4Connection.(JDBC4Connection.java:47) at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:416) at com.mysql.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:317) at org.apache.commons.dbcp.DriverConnectionFactory.createConnection(DriverConnectionFactory.java:38) at org.apache.commons.dbcp.PoolableConnectionFactory.makeObject(PoolableConnectionFactory.java:582) at org.apache.commons.pool.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:1188) at org.apache.commons.dbcp.PoolingDataSource.getConnection(PoolingDataSource.java:106) at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:1044) at org.apache.activemq.store.jdbc.TransactionContext.getConnection(TransactionContext.java:56) ... 23 more Caused by: java.net.ConnectException: Connection refused at java.net.PlainSocketImpl.socketConnect(Native Method) at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:339) at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:200) at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:182) at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:391) at java.net.Socket.connect(Socket.java:579) at java.net.Socket.connect(Socket.java:528) at java.net.Socket.(Socket.java:425) at java.net.Socket.(Socket.java:241) at com.mysql.jdbc.StandardSocketFactory.connect(StandardSocketFactory.java:259) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:305) ... 41 more 2013-12-09 21:15:22,345 [.0.1:57961@1666] INFO TransportConnection - Suppressing reply to: ActiveMQTextMessage {commandId = 7, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:3, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620122303, arrival = 0, brokerInTime = 1386620122304, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@fe8f616, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 1} on: org.apache.activemq.broker.SuppressReplyException: Stop/RestartTransportsInitiated, cause: java.io.IOException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. 2013-12-09 21:15:22,346 [.0.1:57961@1666] WARN Service - Async error occurred: org.apache.activemq.broker.SuppressReplyException: Stop/RestartTransportsInitiated at org.apache.activemq.util.DefaultIOExceptionHandler.handle(DefaultIOExceptionHandler.java:124) at org.apache.activemq.broker.BrokerService.handleIOException(BrokerService.java:2528) at org.apache.activemq.store.jdbc.TransactionContext.getConnection(TransactionContext.java:67) at org.apache.activemq.store.jdbc.adapter.DefaultJDBCAdapter.doAddMessage(DefaultJDBCAdapter.java:218) at org.apache.activemq.store.jdbc.JDBCMessageStore.addMessage(JDBCMessageStore.java:123) at org.apache.activemq.store.memory.MemoryTransactionStore.addMessage(MemoryTransactionStore.java:327) at org.apache.activemq.store.memory.MemoryTransactionStore$1.asyncAddQueueMessage(MemoryTransactionStore.java:154) at org.apache.activemq.broker.region.Queue.doMessageSend(Queue.java:842) at org.apache.activemq.broker.region.Queue.send(Queue.java:700) at org.apache.activemq.broker.region.AbstractRegion.send(AbstractRegion.java:394) at org.apache.activemq.broker.region.RegionBroker.send(RegionBroker.java:441) at org.apache.activemq.broker.BrokerFilter.send(BrokerFilter.java:147) at org.apache.activemq.broker.CompositeDestinationBroker.send(CompositeDestinationBroker.java:96) at org.apache.activemq.broker.TransactionBroker.send(TransactionBroker.java:307) at org.apache.activemq.broker.MutableBrokerFilter.send(MutableBrokerFilter.java:152) at org.apache.activemq.broker.TransportConnection.processMessage(TransportConnection.java:467) at org.apache.activemq.command.ActiveMQMessage.visit(ActiveMQMessage.java:751) at org.apache.activemq.broker.TransportConnection.service(TransportConnection.java:292) at org.apache.activemq.broker.TransportConnection$1.onCommand(TransportConnection.java:149) at org.apache.activemq.transport.MutexTransport.onCommand(MutexTransport.java:50) at org.apache.activemq.transport.WireFormatNegotiator.onCommand(WireFormatNegotiator.java:113) at org.apache.activemq.transport.AbstractInactivityMonitor.onCommand(AbstractInactivityMonitor.java:270) at org.apache.activemq.transport.TransportSupport.doConsume(TransportSupport.java:83) at org.apache.activemq.transport.tcp.TcpTransport.doRun(TcpTransport.java:214) at org.apache.activemq.transport.tcp.TcpTransport.run(TcpTransport.java:196) at java.lang.Thread.run(Thread.java:722) Caused by: java.io.IOException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. at org.apache.activemq.util.IOExceptionSupport.create(IOExceptionSupport.java:45) at org.apache.activemq.store.jdbc.TransactionContext.getConnection(TransactionContext.java:66) ... 23 more Caused by: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1121) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:355) at com.mysql.jdbc.ConnectionImpl.coreConnect(ConnectionImpl.java:2479) at com.mysql.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:2516) at com.mysql.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:2301) at com.mysql.jdbc.ConnectionImpl.(ConnectionImpl.java:834) at com.mysql.jdbc.JDBC4Connection.(JDBC4Connection.java:47) at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:416) at com.mysql.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:317) at org.apache.commons.dbcp.DriverConnectionFactory.createConnection(DriverConnectionFactory.java:38) at org.apache.commons.dbcp.PoolableConnectionFactory.makeObject(PoolableConnectionFactory.java:582) at org.apache.commons.pool.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:1188) at org.apache.commons.dbcp.PoolingDataSource.getConnection(PoolingDataSource.java:106) at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:1044) at org.apache.activemq.store.jdbc.TransactionContext.getConnection(TransactionContext.java:56) ... 23 more Caused by: java.net.ConnectException: Connection refused at java.net.PlainSocketImpl.socketConnect(Native Method) at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:339) at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:200) at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:182) at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:391) at java.net.Socket.connect(Socket.java:579) at java.net.Socket.connect(Socket.java:528) at java.net.Socket.(Socket.java:425) at java.net.Socket.(Socket.java:241) at com.mysql.jdbc.StandardSocketFactory.connect(StandardSocketFactory.java:259) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:305) ... 41 more 2013-12-09 21:15:22,359 [.0.1:1666@57961] DEBUG Connection:1 - RECEIVED: ConnectionError {commandId = 0, responseRequired = false} 2013-12-09 21:15:22,360 [1666?trace=true] DEBUG ActiveMQConnection - Async exception with no exception listener: java.lang.Throwable: org.apache.activemq.broker.SuppressReplyException: Stop/RestartTransportsInitiated java.lang.Throwable: org.apache.activemq.broker.SuppressReplyException: Stop/RestartTransportsInitiated at org.apache.activemq.util.DefaultIOExceptionHandler.handle(DefaultIOExceptionHandler.java:124) at org.apache.activemq.broker.BrokerService.handleIOException(BrokerService.java:2528) at org.apache.activemq.store.jdbc.TransactionContext.getConnection(TransactionContext.java:67) at org.apache.activemq.store.jdbc.adapter.DefaultJDBCAdapter.doAddMessage(DefaultJDBCAdapter.java:218) at org.apache.activemq.store.jdbc.JDBCMessageStore.addMessage(JDBCMessageStore.java:123) at org.apache.activemq.store.memory.MemoryTransactionStore.addMessage(MemoryTransactionStore.java:327) at org.apache.activemq.store.memory.MemoryTransactionStore$1.asyncAddQueueMessage(MemoryTransactionStore.java:154) at org.apache.activemq.broker.region.Queue.doMessageSend(Queue.java:842) at org.apache.activemq.broker.region.Queue.send(Queue.java:700) at org.apache.activemq.broker.region.AbstractRegion.send(AbstractRegion.java:394) at org.apache.activemq.broker.region.RegionBroker.send(RegionBroker.java:441) at org.apache.activemq.broker.BrokerFilter.send(BrokerFilter.java:147) at org.apache.activemq.broker.CompositeDestinationBroker.send(CompositeDestinationBroker.java:96) at org.apache.activemq.broker.TransactionBroker.send(TransactionBroker.java:307) at org.apache.activemq.broker.MutableBrokerFilter.send(MutableBrokerFilter.java:152) at org.apache.activemq.broker.TransportConnection.processMessage(TransportConnection.java:467) at org.apache.activemq.command.ActiveMQMessage.visit(ActiveMQMessage.java:751) at org.apache.activemq.broker.TransportConnection.service(TransportConnection.java:292) at org.apache.activemq.broker.TransportConnection$1.onCommand(TransportConnection.java:149) at org.apache.activemq.transport.MutexTransport.onCommand(MutexTransport.java:50) at org.apache.activemq.transport.WireFormatNegotiator.onCommand(WireFormatNegotiator.java:113) at org.apache.activemq.transport.AbstractInactivityMonitor.onCommand(AbstractInactivityMonitor.java:270) at org.apache.activemq.transport.TransportSupport.doConsume(TransportSupport.java:83) at org.apache.activemq.transport.tcp.TcpTransport.doRun(TcpTransport.java:214) at org.apache.activemq.transport.tcp.TcpTransport.run(TcpTransport.java:196) at java.lang.Thread.run(Thread.java:722) Caused by: java.io.IOException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. at org.apache.activemq.util.IOExceptionSupport.create(IOExceptionSupport.java:45) at org.apache.activemq.store.jdbc.TransactionContext.getConnection(TransactionContext.java:66) ... 23 more Caused by: java.lang.Throwable: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1121) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:355) at com.mysql.jdbc.ConnectionImpl.coreConnect(ConnectionImpl.java:2479) at com.mysql.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:2516) at com.mysql.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:2301) at com.mysql.jdbc.ConnectionImpl.(ConnectionImpl.java:834) at com.mysql.jdbc.JDBC4Connection.(JDBC4Connection.java:47) at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:416) at com.mysql.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:317) at org.apache.commons.dbcp.DriverConnectionFactory.createConnection(DriverConnectionFactory.java:38) at org.apache.commons.dbcp.PoolableConnectionFactory.makeObject(PoolableConnectionFactory.java:582) at org.apache.commons.pool.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:1188) at org.apache.commons.dbcp.PoolingDataSource.getConnection(PoolingDataSource.java:106) at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:1044) at org.apache.activemq.store.jdbc.TransactionContext.getConnection(TransactionContext.java:56) ... 23 more Caused by: java.net.ConnectException: Connection refused at java.net.PlainSocketImpl.socketConnect(Native Method) at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:339) at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:200) at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:182) at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:391) at java.net.Socket.connect(Socket.java:579) at java.net.Socket.connect(Socket.java:528) at java.net.Socket.(Socket.java:425) at java.net.Socket.(Socket.java:241) at com.mysql.jdbc.StandardSocketFactory.connect(StandardSocketFactory.java:259) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:305) ... 41 more 2013-12-09 21:15:23,791 [Broker1] Task-2] DEBUG TransportConnection - Stopping connection: tcp://127.0.0.1:57961 2013-12-09 21:15:23,791 [Broker1] Task-2] DEBUG TcpTransport - Stopping transport tcp:///127.0.0.1:57961@1666 2013-12-09 21:15:23,792 [Broker1] Task-2] DEBUG TaskRunnerFactory - Initialized TaskRunnerFactory[ActiveMQ Task] using ExecutorService: java.util.concurrent.ThreadPoolExecutor@172d762c[Running, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0] 2013-12-09 21:15:23,793 [ActiveMQ Task-1] DEBUG TcpTransport - Closed socket Socket[addr=/127.0.0.1,port=57961,localport=1666] 2013-12-09 21:15:23,793 [.0.1:1666@57961] DEBUG Connection:1 - RECEIVED Exception: java.io.EOFException java.io.EOFException at java.io.DataInputStream.readInt(DataInputStream.java:392) at org.apache.activemq.openwire.OpenWireFormat.unmarshal(OpenWireFormat.java:275) at org.apache.activemq.transport.tcp.TcpTransport.readCommand(TcpTransport.java:221) at org.apache.activemq.transport.tcp.TcpTransport.doRun(TcpTransport.java:213) at org.apache.activemq.transport.tcp.TcpTransport.run(TcpTransport.java:196) at java.lang.Thread.run(Thread.java:722) 2013-12-09 21:15:23,794 [Broker1] Task-2] DEBUG ThreadPoolUtils - Forcing shutdown of ExecutorService: java.util.concurrent.ThreadPoolExecutor@172d762c[Running, pool size = 1, active threads = 0, queued tasks = 0, completed tasks = 1] 2013-12-09 21:15:23,794 [Broker1] Task-2] DEBUG TransportConnection - Stopped transport: tcp://127.0.0.1:57961 2013-12-09 21:15:23,795 [Broker1] Task-2] DEBUG TransportConnection - Cleaning up connection resources: tcp://127.0.0.1:57961 2013-12-09 21:15:23,795 [Broker1] Task-2] DEBUG TransportConnection - remove connection id: ID:sideshow.home-57960-1386620121463-3:1 2013-12-09 21:15:23,795 [.0.1:1666@57961] DEBUG ThreadPoolUtils - Shutdown of ExecutorService: java.util.concurrent.ThreadPoolExecutor@318d8242[Terminated, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0] is shutdown: true and terminated: true took: 0.000 seconds. 2013-12-09 21:15:23,795 [Broker1] Task-2] DEBUG AbstractRegion - coreActiveMQBroker1 removing consumer: ID:sideshow.home-57960-1386620121463-3:1:-1:1 for destination: ActiveMQ.Advisory.TempQueue,ActiveMQ.Advisory.TempTopic 2013-12-09 21:15:23,795 [.0.1:1666@57961] DEBUG TcpTransport - Stopping transport tcp://localhost/127.0.0.1:1666@57961 2013-12-09 21:15:23,796 [.0.1:1666@57961] DEBUG TaskRunnerFactory - Initialized TaskRunnerFactory[ActiveMQ Task] using ExecutorService: java.util.concurrent.ThreadPoolExecutor@6301bfed[Running, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0] 2013-12-09 21:15:23,797 [ActiveMQ Task-1] DEBUG TcpTransport - Closed socket Socket[addr=localhost/127.0.0.1,port=1666,localport=57961] 2013-12-09 21:15:23,797 [.0.1:1666@57961] DEBUG ThreadPoolUtils - Forcing shutdown of ExecutorService: java.util.concurrent.ThreadPoolExecutor@6301bfed[Running, pool size = 1, active threads = 0, queued tasks = 0, completed tasks = 1] 2013-12-09 21:15:23,797 [Broker1] Task-2] DEBUG TransportConnection - Connection Stopped: tcp://127.0.0.1:57961 2013-12-09 21:15:23,798 [.0.1:1666@57961] WARN FailoverTransport - Transport (tcp://127.0.0.1:1666) failed, reason: java.io.EOFException, attempting to automatically reconnect 2013-12-09 21:15:23,798 [stop transports] INFO TransportConnector - Connector openwire stopped 2013-12-09 21:15:23,798 [ActiveMQ Task-2] DEBUG FailoverTransport - urlList connectionList:[tcp://localhost:1666?trace=true], from: [tcp://localhost:1666?trace=true] 2013-12-09 21:15:23,798 [stop transports] INFO DefaultIOExceptionHandler - Successfully stopped transports on BrokerService[coreActiveMQBroker1] 2013-12-09 21:15:23,799 [ActiveMQ Task-2] DEBUG FailoverTransport - Waiting 10 ms before attempting connection. 2013-12-09 21:15:23,799 [tart transports] DEBUG LeaseDatabaseLocker - coreActiveMQBroker1, lease keepAlive Query is UPDATE ACTIVEMQ_LOCK SET BROKER_NAME=?, TIME=? WHERE BROKER_NAME=? AND ID = 1 2013-12-09 21:15:23,802 [tart transports] WARN LeaseDatabaseLocker - coreActiveMQBroker1, failed to update lease: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1121) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:355) at com.mysql.jdbc.ConnectionImpl.coreConnect(ConnectionImpl.java:2479) at com.mysql.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:2516) at com.mysql.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:2301) at com.mysql.jdbc.ConnectionImpl.(ConnectionImpl.java:834) at com.mysql.jdbc.JDBC4Connection.(JDBC4Connection.java:47) at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:416) at com.mysql.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:317) at org.apache.commons.dbcp.DriverConnectionFactory.createConnection(DriverConnectionFactory.java:38) at org.apache.commons.dbcp.PoolableConnectionFactory.makeObject(PoolableConnectionFactory.java:582) at org.apache.commons.pool.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:1188) at org.apache.commons.dbcp.PoolingDataSource.getConnection(PoolingDataSource.java:106) at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:1044) at org.apache.activemq.store.jdbc.AbstractJDBCLocker.getConnection(AbstractJDBCLocker.java:80) at org.apache.activemq.store.jdbc.LeaseDatabaseLocker.keepAlive(LeaseDatabaseLocker.java:178) at org.apache.activemq.store.jdbc.JDBCIOExceptionHandler.hasLockOwnership(JDBCIOExceptionHandler.java:44) at org.apache.activemq.util.DefaultIOExceptionHandler$1$1.run(DefaultIOExceptionHandler.java:93) Caused by: java.net.ConnectException: Connection refused at java.net.PlainSocketImpl.socketConnect(Native Method) at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:339) at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:200) at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:182) at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:391) at java.net.Socket.connect(Socket.java:579) at java.net.Socket.connect(Socket.java:528) at java.net.Socket.(Socket.java:425) at java.net.Socket.(Socket.java:241) at com.mysql.jdbc.StandardSocketFactory.connect(StandardSocketFactory.java:259) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:305) ... 21 more 2013-12-09 21:15:23,809 [tart transports] DEBUG JDBCPersistenceAdapter - Could not get JDBC connection for checkpoint: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. 2013-12-09 21:15:23,809 [tart transports] INFO DefaultIOExceptionHandler - waiting for broker persistence adapter checkpoint to succeed before restarting transports 2013-12-09 21:15:23,811 [ActiveMQ Task-2] DEBUG FailoverTransport - Attempting 0th connect to: tcp://localhost:1666?trace=true 2013-12-09 21:15:23,811 [ActiveMQ Task-2] DEBUG FailoverTransport - Connect fail to: tcp://localhost:1666?trace=true, reason: java.net.ConnectException: Connection refused 2013-12-09 21:15:23,811 [ActiveMQ Task-2] DEBUG TcpTransport - Stopping transport tcp://localhost:1666?trace=true 2013-12-09 21:15:23,812 [ActiveMQ Task-2] DEBUG TaskRunnerFactory - Initialized TaskRunnerFactory[ActiveMQ Task] using ExecutorService: java.util.concurrent.ThreadPoolExecutor@587b8882[Running, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0] 2013-12-09 21:15:23,812 [ActiveMQ Task-1] DEBUG TcpTransport - Closed socket Socket[unconnected] 2013-12-09 21:15:23,812 [ActiveMQ Task-2] DEBUG ThreadPoolUtils - Forcing shutdown of ExecutorService: java.util.concurrent.ThreadPoolExecutor@587b8882[Running, pool size = 1, active threads = 0, queued tasks = 0, completed tasks = 1] 2013-12-09 21:15:23,813 [ActiveMQ Task-2] DEBUG FailoverTransport - Waiting 10 ms before attempting connection 2013-12-09 21:15:23,824 [ActiveMQ Task-2] DEBUG FailoverTransport - urlList connectionList:[tcp://localhost:1666?trace=true], from: [tcp://localhost:1666?trace=true] 2013-12-09 21:15:23,824 [ActiveMQ Task-2] DEBUG FailoverTransport - Waiting 20 ms before attempting connection. 2013-12-09 21:15:23,845 [ActiveMQ Task-2] DEBUG FailoverTransport - Attempting 1th connect to: tcp://localhost:1666?trace=true 2013-12-09 21:15:23,846 [ActiveMQ Task-2] DEBUG FailoverTransport - Connect fail to: tcp://localhost:1666?trace=true, reason: java.net.ConnectException: Connection refused 2013-12-09 21:15:23,846 [ActiveMQ Task-2] DEBUG TcpTransport - Stopping transport tcp://localhost:1666?trace=true 2013-12-09 21:15:23,846 [ActiveMQ Task-2] DEBUG TaskRunnerFactory - Initialized TaskRunnerFactory[ActiveMQ Task] using ExecutorService: java.util.concurrent.ThreadPoolExecutor@512d1c73[Running, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0] 2013-12-09 21:15:23,847 [ActiveMQ Task-1] DEBUG TcpTransport - Closed socket Socket[unconnected] 2013-12-09 21:15:23,847 [ActiveMQ Task-2] DEBUG ThreadPoolUtils - Forcing shutdown of ExecutorService: java.util.concurrent.ThreadPoolExecutor@512d1c73[Running, pool size = 1, active threads = 0, queued tasks = 0, completed tasks = 1] 2013-12-09 21:15:23,848 [ActiveMQ Task-2] DEBUG FailoverTransport - Waiting 20 ms before attempting connection 2013-12-09 21:15:23,869 [ActiveMQ Task-2] DEBUG FailoverTransport - urlList connectionList:[tcp://localhost:1666?trace=true], from: [tcp://localhost:1666?trace=true] 2013-12-09 21:15:23,869 [ActiveMQ Task-2] DEBUG FailoverTransport - Waiting 40 ms before attempting connection. 2013-12-09 21:15:23,910 [ActiveMQ Task-2] DEBUG FailoverTransport - Attempting 2th connect to: tcp://localhost:1666?trace=true 2013-12-09 21:15:23,911 [ActiveMQ Task-2] DEBUG FailoverTransport - Connect fail to: tcp://localhost:1666?trace=true, reason: java.net.ConnectException: Connection refused 2013-12-09 21:15:23,911 [ActiveMQ Task-2] DEBUG TcpTransport - Stopping transport tcp://localhost:1666?trace=true 2013-12-09 21:15:23,911 [ActiveMQ Task-2] DEBUG TaskRunnerFactory - Initialized TaskRunnerFactory[ActiveMQ Task] using ExecutorService: java.util.concurrent.ThreadPoolExecutor@25f05eee[Running, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0] 2013-12-09 21:15:23,912 [ActiveMQ Task-1] DEBUG TcpTransport - Closed socket Socket[unconnected] 2013-12-09 21:15:23,912 [ActiveMQ Task-2] DEBUG ThreadPoolUtils - Forcing shutdown of ExecutorService: java.util.concurrent.ThreadPoolExecutor@25f05eee[Running, pool size = 1, active threads = 0, queued tasks = 0, completed tasks = 1] 2013-12-09 21:15:23,912 [ActiveMQ Task-2] DEBUG FailoverTransport - Waiting 40 ms before attempting connection 2013-12-09 21:15:23,954 [ActiveMQ Task-2] DEBUG FailoverTransport - urlList connectionList:[tcp://localhost:1666?trace=true], from: [tcp://localhost:1666?trace=true] 2013-12-09 21:15:23,954 [ActiveMQ Task-2] DEBUG FailoverTransport - Waiting 80 ms before attempting connection. 2013-12-09 21:15:24,035 [ActiveMQ Task-2] DEBUG FailoverTransport - Attempting 3th connect to: tcp://localhost:1666?trace=true 2013-12-09 21:15:24,036 [ActiveMQ Task-2] DEBUG FailoverTransport - Connect fail to: tcp://localhost:1666?trace=true, reason: java.net.ConnectException: Connection refused 2013-12-09 21:15:24,036 [ActiveMQ Task-2] DEBUG TcpTransport - Stopping transport tcp://localhost:1666?trace=true 2013-12-09 21:15:24,037 [ActiveMQ Task-2] DEBUG TaskRunnerFactory - Initialized TaskRunnerFactory[ActiveMQ Task] using ExecutorService: java.util.concurrent.ThreadPoolExecutor@1e8372d1[Running, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0] 2013-12-09 21:15:24,037 [ActiveMQ Task-1] DEBUG TcpTransport - Closed socket Socket[unconnected] 2013-12-09 21:15:24,038 [ActiveMQ Task-2] DEBUG ThreadPoolUtils - Forcing shutdown of ExecutorService: java.util.concurrent.ThreadPoolExecutor@1e8372d1[Running, pool size = 1, active threads = 0, queued tasks = 0, completed tasks = 1] 2013-12-09 21:15:24,038 [ActiveMQ Task-2] DEBUG FailoverTransport - Waiting 80 ms before attempting connection 2013-12-09 21:15:24,119 [ActiveMQ Task-2] DEBUG FailoverTransport - urlList connectionList:[tcp://localhost:1666?trace=true], from: [tcp://localhost:1666?trace=true] 2013-12-09 21:15:24,119 [ActiveMQ Task-2] DEBUG FailoverTransport - Waiting 160 ms before attempting connection. 2013-12-09 21:15:24,281 [ActiveMQ Task-2] DEBUG FailoverTransport - Attempting 4th connect to: tcp://localhost:1666?trace=true 2013-12-09 21:15:24,281 [ActiveMQ Task-2] DEBUG FailoverTransport - Connect fail to: tcp://localhost:1666?trace=true, reason: java.net.ConnectException: Connection refused 2013-12-09 21:15:24,281 [ActiveMQ Task-2] DEBUG TcpTransport - Stopping transport tcp://localhost:1666?trace=true 2013-12-09 21:15:24,282 [ActiveMQ Task-2] DEBUG TaskRunnerFactory - Initialized TaskRunnerFactory[ActiveMQ Task] using ExecutorService: java.util.concurrent.ThreadPoolExecutor@5a0c10b6[Running, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0] 2013-12-09 21:15:24,282 [ActiveMQ Task-1] DEBUG TcpTransport - Closed socket Socket[unconnected] 2013-12-09 21:15:24,282 [ActiveMQ Task-2] DEBUG ThreadPoolUtils - Forcing shutdown of ExecutorService: java.util.concurrent.ThreadPoolExecutor@5a0c10b6[Running, pool size = 1, active threads = 0, queued tasks = 0, completed tasks = 1] 2013-12-09 21:15:24,283 [ActiveMQ Task-2] DEBUG FailoverTransport - Waiting 160 ms before attempting connection 2013-12-09 21:15:24,444 [ActiveMQ Task-2] DEBUG FailoverTransport - urlList connectionList:[tcp://localhost:1666?trace=true], from: [tcp://localhost:1666?trace=true] 2013-12-09 21:15:24,444 [ActiveMQ Task-2] DEBUG FailoverTransport - Waiting 320 ms before attempting connection. 2013-12-09 21:15:24,766 [ActiveMQ Task-2] DEBUG FailoverTransport - Attempting 5th connect to: tcp://localhost:1666?trace=true 2013-12-09 21:15:24,766 [ActiveMQ Task-2] DEBUG FailoverTransport - Connect fail to: tcp://localhost:1666?trace=true, reason: java.net.ConnectException: Connection refused 2013-12-09 21:15:24,767 [ActiveMQ Task-2] DEBUG TcpTransport - Stopping transport tcp://localhost:1666?trace=true 2013-12-09 21:15:24,767 [ActiveMQ Task-2] DEBUG TaskRunnerFactory - Initialized TaskRunnerFactory[ActiveMQ Task] using ExecutorService: java.util.concurrent.ThreadPoolExecutor@7fa38051[Running, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0] 2013-12-09 21:15:24,768 [ActiveMQ Task-1] DEBUG TcpTransport - Closed socket Socket[unconnected] 2013-12-09 21:15:24,768 [ActiveMQ Task-2] DEBUG ThreadPoolUtils - Forcing shutdown of ExecutorService: java.util.concurrent.ThreadPoolExecutor@7fa38051[Running, pool size = 1, active threads = 0, queued tasks = 0, completed tasks = 1] 2013-12-09 21:15:24,768 [ActiveMQ Task-2] DEBUG FailoverTransport - Waiting 320 ms before attempting connection 2013-12-09 21:15:25,089 [ActiveMQ Task-2] DEBUG FailoverTransport - urlList connectionList:[tcp://localhost:1666?trace=true], from: [tcp://localhost:1666?trace=true] 2013-12-09 21:15:25,090 [ActiveMQ Task-2] DEBUG FailoverTransport - Waiting 640 ms before attempting connection. 2013-12-09 21:15:25,731 [ActiveMQ Task-2] DEBUG FailoverTransport - Attempting 6th connect to: tcp://localhost:1666?trace=true 2013-12-09 21:15:25,731 [ActiveMQ Task-2] DEBUG FailoverTransport - Connect fail to: tcp://localhost:1666?trace=true, reason: java.net.ConnectException: Connection refused 2013-12-09 21:15:25,732 [ActiveMQ Task-2] DEBUG TcpTransport - Stopping transport tcp://localhost:1666?trace=true 2013-12-09 21:15:25,732 [ActiveMQ Task-2] DEBUG TaskRunnerFactory - Initialized TaskRunnerFactory[ActiveMQ Task] using ExecutorService: java.util.concurrent.ThreadPoolExecutor@6cd9d32d[Running, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0] 2013-12-09 21:15:25,732 [ActiveMQ Task-1] DEBUG TcpTransport - Closed socket Socket[unconnected] 2013-12-09 21:15:25,733 [ActiveMQ Task-2] DEBUG ThreadPoolUtils - Forcing shutdown of ExecutorService: java.util.concurrent.ThreadPoolExecutor@6cd9d32d[Running, pool size = 1, active threads = 0, queued tasks = 0, completed tasks = 1] 2013-12-09 21:15:25,733 [ActiveMQ Task-2] DEBUG FailoverTransport - Waiting 640 ms before attempting connection 2013-12-09 21:15:26,374 [ActiveMQ Task-2] DEBUG FailoverTransport - urlList connectionList:[tcp://localhost:1666?trace=true], from: [tcp://localhost:1666?trace=true] 2013-12-09 21:15:26,374 [ActiveMQ Task-2] DEBUG FailoverTransport - Waiting 1280 ms before attempting connection. 2013-12-09 21:15:26,454 [ Scheduled Task] DEBUG LeaseDatabaseLocker - coreActiveMQBroker1, lease keepAlive Query is UPDATE ACTIVEMQ_LOCK SET BROKER_NAME=?, TIME=? WHERE BROKER_NAME=? AND ID = 1 2013-12-09 21:15:26,457 [ Scheduled Task] WARN LeaseDatabaseLocker - coreActiveMQBroker1, failed to update lease: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1121) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:355) at com.mysql.jdbc.ConnectionImpl.coreConnect(ConnectionImpl.java:2479) at com.mysql.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:2516) at com.mysql.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:2301) at com.mysql.jdbc.ConnectionImpl.(ConnectionImpl.java:834) at com.mysql.jdbc.JDBC4Connection.(JDBC4Connection.java:47) at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:416) at com.mysql.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:317) at org.apache.commons.dbcp.DriverConnectionFactory.createConnection(DriverConnectionFactory.java:38) at org.apache.commons.dbcp.PoolableConnectionFactory.makeObject(PoolableConnectionFactory.java:582) at org.apache.commons.pool.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:1188) at org.apache.commons.dbcp.PoolingDataSource.getConnection(PoolingDataSource.java:106) at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:1044) at org.apache.activemq.store.jdbc.AbstractJDBCLocker.getConnection(AbstractJDBCLocker.java:80) at org.apache.activemq.store.jdbc.LeaseDatabaseLocker.keepAlive(LeaseDatabaseLocker.java:178) at org.apache.activemq.broker.LockableServiceSupport.keepLockAlive(LockableServiceSupport.java:125) at org.apache.activemq.broker.LockableServiceSupport$1.run(LockableServiceSupport.java:98) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471) at java.util.concurrent.FutureTask$Sync.innerRunAndReset(FutureTask.java:351) at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:178) at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:178) at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603) at java.lang.Thread.run(Thread.java:722) Caused by: java.net.ConnectException: Connection refused at java.net.PlainSocketImpl.socketConnect(Native Method) at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:339) at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:200) at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:182) at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:391) at java.net.Socket.connect(Socket.java:579) at java.net.Socket.connect(Socket.java:528) at java.net.Socket.(Socket.java:425) at java.net.Socket.(Socket.java:241) at com.mysql.jdbc.StandardSocketFactory.connect(StandardSocketFactory.java:259) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:305) ... 29 more 2013-12-09 21:15:26,462 [ Scheduled Task] WARN LockableServiceSupport - locker keepAlive resulted in org.apache.activemq.broker.SuppressReplyException: Stop/RestartTransportsInitiated at org.apache.activemq.util.DefaultIOExceptionHandler.handle(DefaultIOExceptionHandler.java:124) at org.apache.activemq.broker.BrokerService.handleIOException(BrokerService.java:2528) at org.apache.activemq.store.jdbc.LeaseDatabaseLocker.keepAlive(LeaseDatabaseLocker.java:197) at org.apache.activemq.broker.LockableServiceSupport.keepLockAlive(LockableServiceSupport.java:125) at org.apache.activemq.broker.LockableServiceSupport$1.run(LockableServiceSupport.java:98) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471) at java.util.concurrent.FutureTask$Sync.innerRunAndReset(FutureTask.java:351) at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:178) at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:178) at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603) at java.lang.Thread.run(Thread.java:722) Caused by: java.io.IOException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. at org.apache.activemq.util.IOExceptionSupport.create(IOExceptionSupport.java:45) at org.apache.activemq.store.jdbc.LeaseDatabaseLocker.keepAlive(LeaseDatabaseLocker.java:196) ... 10 more Caused by: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1121) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:355) at com.mysql.jdbc.ConnectionImpl.coreConnect(ConnectionImpl.java:2479) at com.mysql.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:2516) at com.mysql.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:2301) at com.mysql.jdbc.ConnectionImpl.(ConnectionImpl.java:834) at com.mysql.jdbc.JDBC4Connection.(JDBC4Connection.java:47) at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:416) at com.mysql.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:317) at org.apache.commons.dbcp.DriverConnectionFactory.createConnection(DriverConnectionFactory.java:38) at org.apache.commons.dbcp.PoolableConnectionFactory.makeObject(PoolableConnectionFactory.java:582) at org.apache.commons.pool.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:1188) at org.apache.commons.dbcp.PoolingDataSource.getConnection(PoolingDataSource.java:106) at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:1044) at org.apache.activemq.store.jdbc.AbstractJDBCLocker.getConnection(AbstractJDBCLocker.java:80) at org.apache.activemq.store.jdbc.LeaseDatabaseLocker.keepAlive(LeaseDatabaseLocker.java:178) ... 10 more Caused by: java.net.ConnectException: Connection refused at java.net.PlainSocketImpl.socketConnect(Native Method) at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:339) at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:200) at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:182) at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:391) at java.net.Socket.connect(Socket.java:579) at java.net.Socket.connect(Socket.java:528) at java.net.Socket.(Socket.java:425) at java.net.Socket.(Socket.java:241) at com.mysql.jdbc.StandardSocketFactory.connect(StandardSocketFactory.java:259) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:305) ... 29 more 2013-12-09 21:15:27,655 [ActiveMQ Task-2] DEBUG FailoverTransport - Attempting 7th connect to: tcp://localhost:1666?trace=true 2013-12-09 21:15:27,656 [ActiveMQ Task-2] DEBUG FailoverTransport - Connect fail to: tcp://localhost:1666?trace=true, reason: java.net.ConnectException: Connection refused 2013-12-09 21:15:27,656 [ActiveMQ Task-2] DEBUG TcpTransport - Stopping transport tcp://localhost:1666?trace=true 2013-12-09 21:15:27,656 [ActiveMQ Task-2] DEBUG TaskRunnerFactory - Initialized TaskRunnerFactory[ActiveMQ Task] using ExecutorService: java.util.concurrent.ThreadPoolExecutor@bc52f87[Running, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0] 2013-12-09 21:15:27,657 [ActiveMQ Task-1] DEBUG TcpTransport - Closed socket Socket[unconnected] 2013-12-09 21:15:27,657 [ActiveMQ Task-2] DEBUG ThreadPoolUtils - Forcing shutdown of ExecutorService: java.util.concurrent.ThreadPoolExecutor@bc52f87[Running, pool size = 1, active threads = 0, queued tasks = 0, completed tasks = 1] 2013-12-09 21:15:27,657 [ActiveMQ Task-2] DEBUG FailoverTransport - Waiting 1280 ms before attempting connection 2013-12-09 21:15:28,810 [tart transports] DEBUG LeaseDatabaseLocker - coreActiveMQBroker1, lease keepAlive Query is UPDATE ACTIVEMQ_LOCK SET BROKER_NAME=?, TIME=? WHERE BROKER_NAME=? AND ID = 1 2013-12-09 21:15:28,813 [tart transports] WARN LeaseDatabaseLocker - coreActiveMQBroker1, failed to update lease: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1121) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:355) at com.mysql.jdbc.ConnectionImpl.coreConnect(ConnectionImpl.java:2479) at com.mysql.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:2516) at com.mysql.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:2301) at com.mysql.jdbc.ConnectionImpl.(ConnectionImpl.java:834) at com.mysql.jdbc.JDBC4Connection.(JDBC4Connection.java:47) at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:416) at com.mysql.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:317) at org.apache.commons.dbcp.DriverConnectionFactory.createConnection(DriverConnectionFactory.java:38) at org.apache.commons.dbcp.PoolableConnectionFactory.makeObject(PoolableConnectionFactory.java:582) at org.apache.commons.pool.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:1188) at org.apache.commons.dbcp.PoolingDataSource.getConnection(PoolingDataSource.java:106) at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:1044) at org.apache.activemq.store.jdbc.AbstractJDBCLocker.getConnection(AbstractJDBCLocker.java:80) at org.apache.activemq.store.jdbc.LeaseDatabaseLocker.keepAlive(LeaseDatabaseLocker.java:178) at org.apache.activemq.store.jdbc.JDBCIOExceptionHandler.hasLockOwnership(JDBCIOExceptionHandler.java:44) at org.apache.activemq.util.DefaultIOExceptionHandler$1$1.run(DefaultIOExceptionHandler.java:93) Caused by: java.net.ConnectException: Connection refused at java.net.PlainSocketImpl.socketConnect(Native Method) at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:339) at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:200) at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:182) at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:391) at java.net.Socket.connect(Socket.java:579) at java.net.Socket.connect(Socket.java:528) at java.net.Socket.(Socket.java:425) at java.net.Socket.(Socket.java:241) at com.mysql.jdbc.StandardSocketFactory.connect(StandardSocketFactory.java:259) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:305) ... 21 more 2013-12-09 21:15:28,820 [tart transports] DEBUG JDBCPersistenceAdapter - Could not get JDBC connection for checkpoint: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. 2013-12-09 21:15:28,821 [tart transports] INFO DefaultIOExceptionHandler - waiting for broker persistence adapter checkpoint to succeed before restarting transports 2013-12-09 21:15:28,939 [ActiveMQ Task-2] DEBUG FailoverTransport - urlList connectionList:[tcp://localhost:1666?trace=true], from: [tcp://localhost:1666?trace=true] 2013-12-09 21:15:28,939 [ActiveMQ Task-2] DEBUG FailoverTransport - Waiting 2560 ms before attempting connection. 2013-12-09 21:15:31,454 [ Scheduled Task] DEBUG LeaseDatabaseLocker - coreActiveMQBroker1, lease keepAlive Query is UPDATE ACTIVEMQ_LOCK SET BROKER_NAME=?, TIME=? WHERE BROKER_NAME=? AND ID = 1 2013-12-09 21:15:31,457 [ Scheduled Task] WARN LeaseDatabaseLocker - coreActiveMQBroker1, failed to update lease: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1121) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:355) at com.mysql.jdbc.ConnectionImpl.coreConnect(ConnectionImpl.java:2479) at com.mysql.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:2516) at com.mysql.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:2301) at com.mysql.jdbc.ConnectionImpl.(ConnectionImpl.java:834) at com.mysql.jdbc.JDBC4Connection.(JDBC4Connection.java:47) at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:416) at com.mysql.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:317) at org.apache.commons.dbcp.DriverConnectionFactory.createConnection(DriverConnectionFactory.java:38) at org.apache.commons.dbcp.PoolableConnectionFactory.makeObject(PoolableConnectionFactory.java:582) at org.apache.commons.pool.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:1188) at org.apache.commons.dbcp.PoolingDataSource.getConnection(PoolingDataSource.java:106) at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:1044) at org.apache.activemq.store.jdbc.AbstractJDBCLocker.getConnection(AbstractJDBCLocker.java:80) at org.apache.activemq.store.jdbc.LeaseDatabaseLocker.keepAlive(LeaseDatabaseLocker.java:178) at org.apache.activemq.broker.LockableServiceSupport.keepLockAlive(LockableServiceSupport.java:125) at org.apache.activemq.broker.LockableServiceSupport$1.run(LockableServiceSupport.java:98) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471) at java.util.concurrent.FutureTask$Sync.innerRunAndReset(FutureTask.java:351) at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:178) at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:178) at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603) at java.lang.Thread.run(Thread.java:722) Caused by: java.net.ConnectException: Connection refused at java.net.PlainSocketImpl.socketConnect(Native Method) at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:339) at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:200) at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:182) at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:391) at java.net.Socket.connect(Socket.java:579) at java.net.Socket.connect(Socket.java:528) at java.net.Socket.(Socket.java:425) at java.net.Socket.(Socket.java:241) at com.mysql.jdbc.StandardSocketFactory.connect(StandardSocketFactory.java:259) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:305) ... 29 more 2013-12-09 21:15:31,462 [ Scheduled Task] WARN LockableServiceSupport - locker keepAlive resulted in org.apache.activemq.broker.SuppressReplyException: Stop/RestartTransportsInitiated at org.apache.activemq.util.DefaultIOExceptionHandler.handle(DefaultIOExceptionHandler.java:124) at org.apache.activemq.broker.BrokerService.handleIOException(BrokerService.java:2528) at org.apache.activemq.store.jdbc.LeaseDatabaseLocker.keepAlive(LeaseDatabaseLocker.java:197) at org.apache.activemq.broker.LockableServiceSupport.keepLockAlive(LockableServiceSupport.java:125) at org.apache.activemq.broker.LockableServiceSupport$1.run(LockableServiceSupport.java:98) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471) at java.util.concurrent.FutureTask$Sync.innerRunAndReset(FutureTask.java:351) at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:178) at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:178) at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603) at java.lang.Thread.run(Thread.java:722) Caused by: java.io.IOException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. at org.apache.activemq.util.IOExceptionSupport.create(IOExceptionSupport.java:45) at org.apache.activemq.store.jdbc.LeaseDatabaseLocker.keepAlive(LeaseDatabaseLocker.java:196) ... 10 more Caused by: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1121) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:355) at com.mysql.jdbc.ConnectionImpl.coreConnect(ConnectionImpl.java:2479) at com.mysql.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:2516) at com.mysql.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:2301) at com.mysql.jdbc.ConnectionImpl.(ConnectionImpl.java:834) at com.mysql.jdbc.JDBC4Connection.(JDBC4Connection.java:47) at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:416) at com.mysql.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:317) at org.apache.commons.dbcp.DriverConnectionFactory.createConnection(DriverConnectionFactory.java:38) at org.apache.commons.dbcp.PoolableConnectionFactory.makeObject(PoolableConnectionFactory.java:582) at org.apache.commons.pool.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:1188) at org.apache.commons.dbcp.PoolingDataSource.getConnection(PoolingDataSource.java:106) at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:1044) at org.apache.activemq.store.jdbc.AbstractJDBCLocker.getConnection(AbstractJDBCLocker.java:80) at org.apache.activemq.store.jdbc.LeaseDatabaseLocker.keepAlive(LeaseDatabaseLocker.java:178) ... 10 more Caused by: java.net.ConnectException: Connection refused at java.net.PlainSocketImpl.socketConnect(Native Method) at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:339) at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:200) at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:182) at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:391) at java.net.Socket.connect(Socket.java:579) at java.net.Socket.connect(Socket.java:528) at java.net.Socket.(Socket.java:425) at java.net.Socket.(Socket.java:241) at com.mysql.jdbc.StandardSocketFactory.connect(StandardSocketFactory.java:259) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:305) ... 29 more 2013-12-09 21:15:31,500 [ActiveMQ Task-2] DEBUG FailoverTransport - Attempting 8th connect to: tcp://localhost:1666?trace=true 2013-12-09 21:15:31,501 [ActiveMQ Task-2] DEBUG FailoverTransport - Connect fail to: tcp://localhost:1666?trace=true, reason: java.net.ConnectException: Connection refused 2013-12-09 21:15:31,501 [ActiveMQ Task-2] DEBUG TcpTransport - Stopping transport tcp://localhost:1666?trace=true 2013-12-09 21:15:31,502 [ActiveMQ Task-2] DEBUG TaskRunnerFactory - Initialized TaskRunnerFactory[ActiveMQ Task] using ExecutorService: java.util.concurrent.ThreadPoolExecutor@b3d4535[Running, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0] 2013-12-09 21:15:31,502 [ActiveMQ Task-1] DEBUG TcpTransport - Closed socket Socket[unconnected] 2013-12-09 21:15:31,503 [ActiveMQ Task-2] DEBUG ThreadPoolUtils - Forcing shutdown of ExecutorService: java.util.concurrent.ThreadPoolExecutor@b3d4535[Running, pool size = 1, active threads = 0, queued tasks = 0, completed tasks = 1] 2013-12-09 21:15:31,503 [ActiveMQ Task-2] DEBUG FailoverTransport - Waiting 2560 ms before attempting connection 2013-12-09 21:15:31,874 [pool-1-thread-1] INFO ConsumerProducerDBFailoverTest - DB restarting 2013-12-09 21:15:33,822 [tart transports] DEBUG LeaseDatabaseLocker - coreActiveMQBroker1, lease keepAlive Query is UPDATE ACTIVEMQ_LOCK SET BROKER_NAME=?, TIME=? WHERE BROKER_NAME=? AND ID = 1 2013-12-09 21:15:33,922 [tart transports] INFO TransportServerThreadSupport - Listening for connections at: tcp://localhost.home:1666?closeAsync=false 2013-12-09 21:15:33,922 [tart transports] INFO TransportConnector - Connector openwire started 2013-12-09 21:15:33,923 [tart transports] INFO DefaultIOExceptionHandler - Successfully restarted transports on BrokerService[coreActiveMQBroker1] 2013-12-09 21:15:34,064 [ActiveMQ Task-2] DEBUG FailoverTransport - urlList connectionList:[tcp://localhost:1666?trace=true], from: [tcp://localhost:1666?trace=true] 2013-12-09 21:15:34,065 [ActiveMQ Task-2] DEBUG FailoverTransport - Waiting 5000 ms before attempting connection. 2013-12-09 21:15:36,454 [ Scheduled Task] DEBUG LeaseDatabaseLocker - coreActiveMQBroker1, lease keepAlive Query is UPDATE ACTIVEMQ_LOCK SET BROKER_NAME=?, TIME=? WHERE BROKER_NAME=? AND ID = 1 2013-12-09 21:15:39,066 [ActiveMQ Task-2] DEBUG FailoverTransport - Attempting 9th connect to: tcp://localhost:1666?trace=true 2013-12-09 21:15:39,067 [ActiveMQ Task-2] DEBUG WireFormatNegotiator - Sending: WireFormatInfo { version=10, properties={MaxFrameSize=9223372036854775807, CacheSize=1024, CacheEnabled=true, SizePrefixDisabled=false, MaxInactivityDurationInitalDelay=10000, TcpNoDelayEnabled=true, MaxInactivityDuration=30000, TightEncodingEnabled=true, StackTraceEnabled=true}, magic=[A,c,t,i,v,e,M,Q]} 2013-12-09 21:15:39,068 [ActiveMQ Task-2] DEBUG Connection:11 - SENDING: WireFormatInfo { version=10, properties={MaxFrameSize=9223372036854775807, CacheSize=1024, CacheEnabled=true, SizePrefixDisabled=false, MaxInactivityDurationInitalDelay=10000, TcpNoDelayEnabled=true, MaxInactivityDuration=30000, TightEncodingEnabled=true, StackTraceEnabled=true}, magic=[A,c,t,i,v,e,M,Q]} 2013-12-09 21:15:39,069 [Broker1] Task-2] DEBUG WireFormatNegotiator - Sending: WireFormatInfo { version=10, properties={MaxFrameSize=9223372036854775807, CacheSize=1024, CacheEnabled=true, SizePrefixDisabled=false, MaxInactivityDurationInitalDelay=10000, TcpNoDelayEnabled=true, MaxInactivityDuration=30000, TightEncodingEnabled=true, StackTraceEnabled=true}, magic=[A,c,t,i,v,e,M,Q]} 2013-12-09 21:15:39,070 [.0.1:57996@1666] DEBUG WireFormatNegotiator - Received WireFormat: WireFormatInfo { version=10, properties={CacheSize=1024, MaxFrameSize=9223372036854775807, CacheEnabled=true, SizePrefixDisabled=false, TcpNoDelayEnabled=true, MaxInactivityDurationInitalDelay=10000, MaxInactivityDuration=30000, TightEncodingEnabled=true, StackTraceEnabled=true}, magic=[A,c,t,i,v,e,M,Q]} 2013-12-09 21:15:39,070 [Broker1] Task-2] DEBUG InactivityMonitor - Using min of local: WireFormatInfo { version=10, properties={MaxFrameSize=9223372036854775807, CacheSize=1024, CacheEnabled=true, SizePrefixDisabled=false, MaxInactivityDurationInitalDelay=10000, TcpNoDelayEnabled=true, MaxInactivityDuration=30000, TightEncodingEnabled=true, StackTraceEnabled=true}, magic=[A,c,t,i,v,e,M,Q]} and remote: WireFormatInfo { version=10, properties={CacheSize=1024, MaxFrameSize=9223372036854775807, CacheEnabled=true, SizePrefixDisabled=false, TcpNoDelayEnabled=true, MaxInactivityDurationInitalDelay=10000, MaxInactivityDuration=30000, TightEncodingEnabled=true, StackTraceEnabled=true}, magic=[A,c,t,i,v,e,M,Q]} 2013-12-09 21:15:39,072 [.0.1:57996@1666] DEBUG WireFormatNegotiator - tcp:///127.0.0.1:57996@1666 before negotiation: OpenWireFormat{version=10, cacheEnabled=false, stackTraceEnabled=false, tightEncodingEnabled=false, sizePrefixDisabled=false, maxFrameSize=9223372036854775807} 2013-12-09 21:15:39,072 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: WireFormatInfo { version=10, properties={CacheSize=1024, MaxFrameSize=9223372036854775807, CacheEnabled=true, SizePrefixDisabled=false, TcpNoDelayEnabled=true, MaxInactivityDurationInitalDelay=10000, MaxInactivityDuration=30000, TightEncodingEnabled=true, StackTraceEnabled=true}, magic=[A,c,t,i,v,e,M,Q]} 2013-12-09 21:15:39,074 [.0.1:57996@1666] DEBUG WireFormatNegotiator - tcp:///127.0.0.1:57996@1666 after negotiation: OpenWireFormat{version=10, cacheEnabled=true, stackTraceEnabled=true, tightEncodingEnabled=true, sizePrefixDisabled=false, maxFrameSize=9223372036854775807} 2013-12-09 21:15:39,074 [.0.1:1666@57996] DEBUG InactivityMonitor - Using min of local: WireFormatInfo { version=10, properties={MaxFrameSize=9223372036854775807, CacheSize=1024, CacheEnabled=true, SizePrefixDisabled=false, MaxInactivityDurationInitalDelay=10000, TcpNoDelayEnabled=true, MaxInactivityDuration=30000, TightEncodingEnabled=true, StackTraceEnabled=true}, magic=[A,c,t,i,v,e,M,Q]} and remote: WireFormatInfo { version=10, properties={CacheSize=1024, MaxFrameSize=9223372036854775807, CacheEnabled=true, SizePrefixDisabled=false, TcpNoDelayEnabled=true, MaxInactivityDurationInitalDelay=10000, MaxInactivityDuration=30000, TightEncodingEnabled=true, StackTraceEnabled=true}, magic=[A,c,t,i,v,e,M,Q]} 2013-12-09 21:15:39,075 [.0.1:1666@57996] DEBUG WireFormatNegotiator - Received WireFormat: WireFormatInfo { version=10, properties={CacheSize=1024, MaxFrameSize=9223372036854775807, CacheEnabled=true, SizePrefixDisabled=false, TcpNoDelayEnabled=true, MaxInactivityDurationInitalDelay=10000, MaxInactivityDuration=30000, TightEncodingEnabled=true, StackTraceEnabled=true}, magic=[A,c,t,i,v,e,M,Q]} 2013-12-09 21:15:39,076 [.0.1:1666@57996] DEBUG WireFormatNegotiator - tcp://localhost/127.0.0.1:1666@57996 before negotiation: OpenWireFormat{version=10, cacheEnabled=false, stackTraceEnabled=false, tightEncodingEnabled=false, sizePrefixDisabled=false, maxFrameSize=9223372036854775807} 2013-12-09 21:15:39,076 [.0.1:1666@57996] DEBUG WireFormatNegotiator - tcp://localhost/127.0.0.1:1666@57996 after negotiation: OpenWireFormat{version=10, cacheEnabled=true, stackTraceEnabled=true, tightEncodingEnabled=true, sizePrefixDisabled=false, maxFrameSize=9223372036854775807} 2013-12-09 21:15:39,077 [ActiveMQ Task-2] DEBUG Connection:11 - SENDING: ConnectionControl {commandId = 0, responseRequired = false, suspend = false, resume = false, close = false, exit = false, faultTolerant = true, connectedBrokers = , reconnectTo = , token = null, rebalanceConnection = false} 2013-12-09 21:15:39,077 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: BrokerInfo {commandId = 0, responseRequired = false, brokerId = ID:sideshow.home-57960-1386620121463-0:1, brokerURL = tcp://127.0.0.1:1666, slaveBroker = false, masterBroker = false, faultTolerantConfiguration = false, networkConnection = false, duplexConnection = false, peerBrokerInfos = null, brokerName = coreActiveMQBroker1, connectionId = 0, brokerUploadUrl = null, networkProperties = null} 2013-12-09 21:15:39,077 [ActiveMQ Task-2] DEBUG ConnectionStateTracker - conn: ID:sideshow.home-57960-1386620121463-3:1 2013-12-09 21:15:39,078 [ActiveMQ Task-2] DEBUG Connection:11 - SENDING: ConnectionInfo {commandId = 1, responseRequired = true, connectionId = ID:sideshow.home-57960-1386620121463-3:1, clientId = ID:sideshow.home-57960-1386620121463-2:1, clientIp = null, userName = admin, password = *****, brokerPath = null, brokerMasterConnector = false, manageable = true, clientMaster = true, faultTolerant = true, failoverReconnect = true} 2013-12-09 21:15:39,079 [ActiveMQ Task-2] DEBUG ConnectionStateTracker - session: ID:sideshow.home-57960-1386620121463-3:1:-1 2013-12-09 21:15:39,079 [ActiveMQ Task-2] DEBUG Connection:11 - SENDING: SessionInfo {commandId = 0, responseRequired = false, sessionId = ID:sideshow.home-57960-1386620121463-3:1:-1} 2013-12-09 21:15:39,079 [.0.1:57996@1666] DEBUG TransportConnection - Setting up new connection id: ID:sideshow.home-57960-1386620121463-3:1, address: tcp://127.0.0.1:57996, info: ConnectionInfo {commandId = 1, responseRequired = true, connectionId = ID:sideshow.home-57960-1386620121463-3:1, clientId = ID:sideshow.home-57960-1386620121463-2:1, clientIp = null, userName = admin, password = *****, brokerPath = null, brokerMasterConnector = false, manageable = true, clientMaster = true, faultTolerant = true, failoverReconnect = true} 2013-12-09 21:15:39,080 [ActiveMQ Task-2] DEBUG ConnectionStateTracker - restore consumer: ID:sideshow.home-57960-1386620121463-3:1:-1:1 2013-12-09 21:15:39,081 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 1} 2013-12-09 21:15:39,081 [ActiveMQ Task-2] DEBUG Connection:11 - SENDING: ConsumerInfo {commandId = 2, responseRequired = true, consumerId = ID:sideshow.home-57960-1386620121463-3:1:-1:1, destination = ActiveMQ.Advisory.TempQueue,ActiveMQ.Advisory.TempTopic, prefetchSize = 1000, maximumPendingMessageLimit = 0, browser = false, dispatchAsync = true, selector = null, clientId = null, subscriptionName = null, noLocal = true, exclusive = false, retroactive = false, priority = 0, brokerPath = null, optimizedAcknowledge = false, noRangeAcks = false, additionalPredicate = null} 2013-12-09 21:15:39,081 [.0.1:1666@57996] DEBUG ResponseCorrelator - Received unexpected response: {Response {commandId = 0, responseRequired = false, correlationId = 1}}for command id: 1 2013-12-09 21:15:39,082 [.0.1:57996@1666] DEBUG AbstractRegion - coreActiveMQBroker1 adding consumer: ID:sideshow.home-57960-1386620121463-3:1:-1:1 for destination: ActiveMQ.Advisory.TempQueue,ActiveMQ.Advisory.TempTopic 2013-12-09 21:15:39,082 [ActiveMQ Task-2] DEBUG ConnectionStateTracker - session: ID:sideshow.home-57960-1386620121463-3:1:1 2013-12-09 21:15:39,082 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: ConnectionControl {commandId = 0, responseRequired = false, suspend = false, resume = false, close = false, exit = false, faultTolerant = false, connectedBrokers = , reconnectTo = , token = null, rebalanceConnection = false} 2013-12-09 21:15:39,083 [ActiveMQ Task-2] DEBUG Connection:11 - SENDING: SessionInfo {commandId = 3, responseRequired = false, sessionId = ID:sideshow.home-57960-1386620121463-3:1:1} 2013-12-09 21:15:39,083 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 2} 2013-12-09 21:15:39,084 [ActiveMQ Task-2] DEBUG ConnectionStateTracker - producer: ID:sideshow.home-57960-1386620121463-3:1:1:1 2013-12-09 21:15:39,084 [.0.1:1666@57996] DEBUG ResponseCorrelator - Received unexpected response: {Response {commandId = 0, responseRequired = false, correlationId = 2}}for command id: 2 2013-12-09 21:15:39,084 [ActiveMQ Task-2] DEBUG Connection:11 - SENDING: ProducerInfo {commandId = 4, responseRequired = true, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, brokerPath = null, dispatchAsync = false, windowSize = 0} 2013-12-09 21:15:39,085 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 4} 2013-12-09 21:15:39,085 [ActiveMQ Task-2] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 7, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:3, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620122303, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@e81789d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 1} 2013-12-09 21:15:39,085 [.0.1:1666@57996] DEBUG ResponseCorrelator - Received unexpected response: {Response {commandId = 0, responseRequired = false, correlationId = 4}}for command id: 4 2013-12-09 21:15:39,086 [ActiveMQ Task-2] DEBUG FailoverTransport - Connection established 2013-12-09 21:15:39,087 [ActiveMQ Task-2] INFO FailoverTransport - Successfully reconnected to tcp://localhost:1666?trace=true 2013-12-09 21:15:39,088 [.0.1:57996@1666] DEBUG ProducerBrokerExchange - last stored sequence id set: 0 2013-12-09 21:15:39,143 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:3 sent to queue://test_queue_z0 2013-12-09 21:15:39,144 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 7} 2013-12-09 21:15:39,144 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 1, Inflight: 0, pagedInMessages.size 0, enqueueCount: 1, dequeueCount: 0 2013-12-09 21:15:39,145 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 1 2013-12-09 21:15:39,145 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 8, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:4, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620139145, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 2} 2013-12-09 21:15:39,201 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:4 sent to queue://test_queue_z0 2013-12-09 21:15:39,201 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 2, Inflight: 0, pagedInMessages.size 0, enqueueCount: 2, dequeueCount: 0 2013-12-09 21:15:39,202 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 8} 2013-12-09 21:15:39,202 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 2 2013-12-09 21:15:39,203 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 9, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:5, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620139202, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 3} 2013-12-09 21:15:39,259 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:5 sent to queue://test_queue_z0 2013-12-09 21:15:39,259 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 3, Inflight: 0, pagedInMessages.size 0, enqueueCount: 3, dequeueCount: 0 2013-12-09 21:15:39,260 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 9} 2013-12-09 21:15:39,260 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 3 2013-12-09 21:15:39,261 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 10, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:6, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620139260, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 4} 2013-12-09 21:15:39,317 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:6 sent to queue://test_queue_z0 2013-12-09 21:15:39,318 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 4, Inflight: 0, pagedInMessages.size 0, enqueueCount: 4, dequeueCount: 0 2013-12-09 21:15:39,318 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 10} 2013-12-09 21:15:39,318 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 4 2013-12-09 21:15:39,319 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 11, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:7, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620139319, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 5} 2013-12-09 21:15:39,375 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:7 sent to queue://test_queue_z0 2013-12-09 21:15:39,375 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 5, Inflight: 0, pagedInMessages.size 0, enqueueCount: 5, dequeueCount: 0 2013-12-09 21:15:39,375 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 11} 2013-12-09 21:15:39,376 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 5 2013-12-09 21:15:39,376 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 12, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:8, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620139376, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 6} 2013-12-09 21:15:39,433 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:8 sent to queue://test_queue_z0 2013-12-09 21:15:39,433 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 6, Inflight: 0, pagedInMessages.size 0, enqueueCount: 6, dequeueCount: 0 2013-12-09 21:15:39,433 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 12} 2013-12-09 21:15:39,434 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 6 2013-12-09 21:15:39,434 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 13, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:9, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620139434, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 7} 2013-12-09 21:15:39,491 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:9 sent to queue://test_queue_z0 2013-12-09 21:15:39,491 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 7, Inflight: 0, pagedInMessages.size 0, enqueueCount: 7, dequeueCount: 0 2013-12-09 21:15:39,492 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 13} 2013-12-09 21:15:39,492 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 7 2013-12-09 21:15:39,493 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 14, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:10, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620139492, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 8} 2013-12-09 21:15:39,549 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:10 sent to queue://test_queue_z0 2013-12-09 21:15:39,550 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 8, Inflight: 0, pagedInMessages.size 0, enqueueCount: 8, dequeueCount: 0 2013-12-09 21:15:39,550 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 14} 2013-12-09 21:15:39,550 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 8 2013-12-09 21:15:39,551 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 15, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:11, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620139550, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 9} 2013-12-09 21:15:39,607 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:11 sent to queue://test_queue_z0 2013-12-09 21:15:39,607 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 9, Inflight: 0, pagedInMessages.size 0, enqueueCount: 9, dequeueCount: 0 2013-12-09 21:15:39,607 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 15} 2013-12-09 21:15:39,608 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 9 2013-12-09 21:15:39,608 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 16, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:12, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620139608, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 10} 2013-12-09 21:15:39,665 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:12 sent to queue://test_queue_z0 2013-12-09 21:15:39,665 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 10, Inflight: 0, pagedInMessages.size 0, enqueueCount: 10, dequeueCount: 0 2013-12-09 21:15:39,665 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 16} 2013-12-09 21:15:39,666 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 10 2013-12-09 21:15:39,666 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 17, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:13, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620139666, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 11} 2013-12-09 21:15:39,723 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:13 sent to queue://test_queue_z0 2013-12-09 21:15:39,723 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 11, Inflight: 0, pagedInMessages.size 0, enqueueCount: 11, dequeueCount: 0 2013-12-09 21:15:39,723 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 17} 2013-12-09 21:15:39,724 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 11 2013-12-09 21:15:39,724 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 18, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:14, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620139724, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 12} 2013-12-09 21:15:39,781 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:14 sent to queue://test_queue_z0 2013-12-09 21:15:39,781 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 12, Inflight: 0, pagedInMessages.size 0, enqueueCount: 12, dequeueCount: 0 2013-12-09 21:15:39,781 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 18} 2013-12-09 21:15:39,782 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 12 2013-12-09 21:15:39,782 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 19, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:15, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620139782, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 13} 2013-12-09 21:15:39,839 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:15 sent to queue://test_queue_z0 2013-12-09 21:15:39,839 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 13, Inflight: 0, pagedInMessages.size 0, enqueueCount: 13, dequeueCount: 0 2013-12-09 21:15:39,839 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 19} 2013-12-09 21:15:39,840 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 13 2013-12-09 21:15:39,840 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 20, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:16, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620139840, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 14} 2013-12-09 21:15:39,897 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:16 sent to queue://test_queue_z0 2013-12-09 21:15:39,897 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 14, Inflight: 0, pagedInMessages.size 0, enqueueCount: 14, dequeueCount: 0 2013-12-09 21:15:39,897 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 20} 2013-12-09 21:15:39,898 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 14 2013-12-09 21:15:39,898 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 21, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:17, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620139898, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 15} 2013-12-09 21:15:39,955 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:17 sent to queue://test_queue_z0 2013-12-09 21:15:39,955 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 15, Inflight: 0, pagedInMessages.size 0, enqueueCount: 15, dequeueCount: 0 2013-12-09 21:15:39,955 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 21} 2013-12-09 21:15:39,956 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 15 2013-12-09 21:15:39,956 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 22, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:18, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620139956, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 16} 2013-12-09 21:15:40,013 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:18 sent to queue://test_queue_z0 2013-12-09 21:15:40,013 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 16, Inflight: 0, pagedInMessages.size 0, enqueueCount: 16, dequeueCount: 0 2013-12-09 21:15:40,013 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 22} 2013-12-09 21:15:40,014 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 16 2013-12-09 21:15:40,014 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 23, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:19, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620140014, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 17} 2013-12-09 21:15:40,071 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:19 sent to queue://test_queue_z0 2013-12-09 21:15:40,071 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 17, Inflight: 0, pagedInMessages.size 0, enqueueCount: 17, dequeueCount: 0 2013-12-09 21:15:40,071 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 23} 2013-12-09 21:15:40,072 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 17 2013-12-09 21:15:40,072 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 24, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:20, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620140072, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 18} 2013-12-09 21:15:40,129 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:20 sent to queue://test_queue_z0 2013-12-09 21:15:40,129 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 18, Inflight: 0, pagedInMessages.size 0, enqueueCount: 18, dequeueCount: 0 2013-12-09 21:15:40,129 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 24} 2013-12-09 21:15:40,130 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 18 2013-12-09 21:15:40,130 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 25, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:21, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620140130, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 19} 2013-12-09 21:15:40,187 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:21 sent to queue://test_queue_z0 2013-12-09 21:15:40,187 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 19, Inflight: 0, pagedInMessages.size 0, enqueueCount: 19, dequeueCount: 0 2013-12-09 21:15:40,187 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 25} 2013-12-09 21:15:40,188 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 19 2013-12-09 21:15:40,188 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 26, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:22, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620140188, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 20} 2013-12-09 21:15:40,245 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:22 sent to queue://test_queue_z0 2013-12-09 21:15:40,245 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 20, Inflight: 0, pagedInMessages.size 0, enqueueCount: 20, dequeueCount: 0 2013-12-09 21:15:40,245 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 26} 2013-12-09 21:15:40,246 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 20 2013-12-09 21:15:40,246 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 27, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:23, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620140246, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 21} 2013-12-09 21:15:40,303 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:23 sent to queue://test_queue_z0 2013-12-09 21:15:40,303 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 21, Inflight: 0, pagedInMessages.size 0, enqueueCount: 21, dequeueCount: 0 2013-12-09 21:15:40,303 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 27} 2013-12-09 21:15:40,303 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 21 2013-12-09 21:15:40,304 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 28, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:24, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620140304, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 22} 2013-12-09 21:15:40,361 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:24 sent to queue://test_queue_z0 2013-12-09 21:15:40,361 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 22, Inflight: 0, pagedInMessages.size 0, enqueueCount: 22, dequeueCount: 0 2013-12-09 21:15:40,361 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 28} 2013-12-09 21:15:40,362 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 22 2013-12-09 21:15:40,362 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 29, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:25, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620140362, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 23} 2013-12-09 21:15:40,419 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:25 sent to queue://test_queue_z0 2013-12-09 21:15:40,419 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 23, Inflight: 0, pagedInMessages.size 0, enqueueCount: 23, dequeueCount: 0 2013-12-09 21:15:40,419 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 29} 2013-12-09 21:15:40,420 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 23 2013-12-09 21:15:40,421 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 30, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:26, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620140420, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 24} 2013-12-09 21:15:40,477 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:26 sent to queue://test_queue_z0 2013-12-09 21:15:40,477 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 24, Inflight: 0, pagedInMessages.size 0, enqueueCount: 24, dequeueCount: 0 2013-12-09 21:15:40,477 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 30} 2013-12-09 21:15:40,478 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 24 2013-12-09 21:15:40,478 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 31, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:27, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620140478, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 25} 2013-12-09 21:15:40,535 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:27 sent to queue://test_queue_z0 2013-12-09 21:15:40,535 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 25, Inflight: 0, pagedInMessages.size 0, enqueueCount: 25, dequeueCount: 0 2013-12-09 21:15:40,535 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 31} 2013-12-09 21:15:40,535 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 25 2013-12-09 21:15:40,536 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 32, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:28, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620140536, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 26} 2013-12-09 21:15:40,593 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:28 sent to queue://test_queue_z0 2013-12-09 21:15:40,593 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 26, Inflight: 0, pagedInMessages.size 0, enqueueCount: 26, dequeueCount: 0 2013-12-09 21:15:40,593 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 32} 2013-12-09 21:15:40,593 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 26 2013-12-09 21:15:40,594 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 33, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:29, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620140594, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 27} 2013-12-09 21:15:40,651 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:29 sent to queue://test_queue_z0 2013-12-09 21:15:40,651 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 27, Inflight: 0, pagedInMessages.size 0, enqueueCount: 27, dequeueCount: 0 2013-12-09 21:15:40,651 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 33} 2013-12-09 21:15:40,651 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 27 2013-12-09 21:15:40,652 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 34, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:30, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620140652, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 28} 2013-12-09 21:15:40,709 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:30 sent to queue://test_queue_z0 2013-12-09 21:15:40,709 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 28, Inflight: 0, pagedInMessages.size 0, enqueueCount: 28, dequeueCount: 0 2013-12-09 21:15:40,709 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 34} 2013-12-09 21:15:40,709 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 28 2013-12-09 21:15:40,710 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 35, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:31, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620140710, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 29} 2013-12-09 21:15:40,775 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:31 sent to queue://test_queue_z0 2013-12-09 21:15:40,775 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 29, Inflight: 0, pagedInMessages.size 0, enqueueCount: 29, dequeueCount: 0 2013-12-09 21:15:40,775 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 35} 2013-12-09 21:15:40,776 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 29 2013-12-09 21:15:40,776 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 36, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:32, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620140776, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 30} 2013-12-09 21:15:40,841 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:32 sent to queue://test_queue_z0 2013-12-09 21:15:40,841 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 30, Inflight: 0, pagedInMessages.size 0, enqueueCount: 30, dequeueCount: 0 2013-12-09 21:15:40,842 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 36} 2013-12-09 21:15:40,842 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 30 2013-12-09 21:15:40,842 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 37, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:33, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620140842, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 31} 2013-12-09 21:15:40,899 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:33 sent to queue://test_queue_z0 2013-12-09 21:15:40,900 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 31, Inflight: 0, pagedInMessages.size 0, enqueueCount: 31, dequeueCount: 0 2013-12-09 21:15:40,900 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 37} 2013-12-09 21:15:40,900 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 31 2013-12-09 21:15:40,901 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 38, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:34, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620140901, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 32} 2013-12-09 21:15:40,965 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:34 sent to queue://test_queue_z0 2013-12-09 21:15:40,966 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 32, Inflight: 0, pagedInMessages.size 0, enqueueCount: 32, dequeueCount: 0 2013-12-09 21:15:40,966 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 38} 2013-12-09 21:15:40,966 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 32 2013-12-09 21:15:40,967 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 39, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:35, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620140966, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 33} 2013-12-09 21:15:41,033 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:35 sent to queue://test_queue_z0 2013-12-09 21:15:41,034 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 33, Inflight: 0, pagedInMessages.size 0, enqueueCount: 33, dequeueCount: 0 2013-12-09 21:15:41,034 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 39} 2013-12-09 21:15:41,034 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 33 2013-12-09 21:15:41,035 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 40, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:36, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620141034, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 34} 2013-12-09 21:15:41,091 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:36 sent to queue://test_queue_z0 2013-12-09 21:15:41,091 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 34, Inflight: 0, pagedInMessages.size 0, enqueueCount: 34, dequeueCount: 0 2013-12-09 21:15:41,092 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 40} 2013-12-09 21:15:41,092 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 34 2013-12-09 21:15:41,093 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 41, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:37, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620141092, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 35} 2013-12-09 21:15:41,149 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:37 sent to queue://test_queue_z0 2013-12-09 21:15:41,149 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 35, Inflight: 0, pagedInMessages.size 0, enqueueCount: 35, dequeueCount: 0 2013-12-09 21:15:41,149 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 41} 2013-12-09 21:15:41,150 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 35 2013-12-09 21:15:41,150 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 42, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:38, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620141150, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 36} 2013-12-09 21:15:41,207 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:38 sent to queue://test_queue_z0 2013-12-09 21:15:41,207 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 36, Inflight: 0, pagedInMessages.size 0, enqueueCount: 36, dequeueCount: 0 2013-12-09 21:15:41,208 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 42} 2013-12-09 21:15:41,208 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 36 2013-12-09 21:15:41,209 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 43, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:39, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620141208, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 37} 2013-12-09 21:15:41,265 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:39 sent to queue://test_queue_z0 2013-12-09 21:15:41,265 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 37, Inflight: 0, pagedInMessages.size 0, enqueueCount: 37, dequeueCount: 0 2013-12-09 21:15:41,266 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 43} 2013-12-09 21:15:41,266 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 37 2013-12-09 21:15:41,267 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 44, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:40, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620141267, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 38} 2013-12-09 21:15:41,323 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:40 sent to queue://test_queue_z0 2013-12-09 21:15:41,324 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 38, Inflight: 0, pagedInMessages.size 0, enqueueCount: 38, dequeueCount: 0 2013-12-09 21:15:41,324 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 44} 2013-12-09 21:15:41,324 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 38 2013-12-09 21:15:41,325 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 45, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:41, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620141324, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 39} 2013-12-09 21:15:41,381 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:41 sent to queue://test_queue_z0 2013-12-09 21:15:41,381 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 39, Inflight: 0, pagedInMessages.size 0, enqueueCount: 39, dequeueCount: 0 2013-12-09 21:15:41,381 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 45} 2013-12-09 21:15:41,382 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 39 2013-12-09 21:15:41,382 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 46, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:42, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620141382, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 40} 2013-12-09 21:15:41,439 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:42 sent to queue://test_queue_z0 2013-12-09 21:15:41,439 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 40, Inflight: 0, pagedInMessages.size 0, enqueueCount: 40, dequeueCount: 0 2013-12-09 21:15:41,440 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 46} 2013-12-09 21:15:41,440 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 40 2013-12-09 21:15:41,441 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 47, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:43, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620141440, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 41} 2013-12-09 21:15:41,454 [ Scheduled Task] DEBUG LeaseDatabaseLocker - coreActiveMQBroker1, lease keepAlive Query is UPDATE ACTIVEMQ_LOCK SET BROKER_NAME=?, TIME=? WHERE BROKER_NAME=? AND ID = 1 2013-12-09 21:15:41,497 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:43 sent to queue://test_queue_z0 2013-12-09 21:15:41,498 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 41, Inflight: 0, pagedInMessages.size 0, enqueueCount: 41, dequeueCount: 0 2013-12-09 21:15:41,498 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 47} 2013-12-09 21:15:41,498 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 41 2013-12-09 21:15:41,499 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 48, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:44, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620141499, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 42} 2013-12-09 21:15:41,613 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:44 sent to queue://test_queue_z0 2013-12-09 21:15:41,613 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 42, Inflight: 0, pagedInMessages.size 0, enqueueCount: 42, dequeueCount: 0 2013-12-09 21:15:41,613 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 48} 2013-12-09 21:15:41,614 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 42 2013-12-09 21:15:41,614 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 49, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:45, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620141614, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 43} 2013-12-09 21:15:41,671 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:45 sent to queue://test_queue_z0 2013-12-09 21:15:41,672 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 43, Inflight: 0, pagedInMessages.size 0, enqueueCount: 43, dequeueCount: 0 2013-12-09 21:15:41,672 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 49} 2013-12-09 21:15:41,672 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 43 2013-12-09 21:15:41,673 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 50, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:46, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620141672, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 44} 2013-12-09 21:15:41,729 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:46 sent to queue://test_queue_z0 2013-12-09 21:15:41,729 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 44, Inflight: 0, pagedInMessages.size 0, enqueueCount: 44, dequeueCount: 0 2013-12-09 21:15:41,729 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 50} 2013-12-09 21:15:41,730 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 44 2013-12-09 21:15:41,730 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 51, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:47, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620141730, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 45} 2013-12-09 21:15:41,787 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:47 sent to queue://test_queue_z0 2013-12-09 21:15:41,788 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 45, Inflight: 0, pagedInMessages.size 0, enqueueCount: 45, dequeueCount: 0 2013-12-09 21:15:41,788 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 51} 2013-12-09 21:15:41,788 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 45 2013-12-09 21:15:41,789 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 52, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:48, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620141788, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 46} 2013-12-09 21:15:41,845 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:48 sent to queue://test_queue_z0 2013-12-09 21:15:41,845 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 46, Inflight: 0, pagedInMessages.size 0, enqueueCount: 46, dequeueCount: 0 2013-12-09 21:15:41,845 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 52} 2013-12-09 21:15:41,846 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 46 2013-12-09 21:15:41,846 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 53, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:49, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620141846, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 47} 2013-12-09 21:15:41,903 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:49 sent to queue://test_queue_z0 2013-12-09 21:15:41,903 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 47, Inflight: 0, pagedInMessages.size 0, enqueueCount: 47, dequeueCount: 0 2013-12-09 21:15:41,903 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 53} 2013-12-09 21:15:41,904 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 47 2013-12-09 21:15:41,905 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 54, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:50, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620141904, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 48} 2013-12-09 21:15:41,961 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:50 sent to queue://test_queue_z0 2013-12-09 21:15:41,961 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 48, Inflight: 0, pagedInMessages.size 0, enqueueCount: 48, dequeueCount: 0 2013-12-09 21:15:41,962 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 54} 2013-12-09 21:15:41,962 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 48 2013-12-09 21:15:41,962 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 55, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:51, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620141962, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 49} 2013-12-09 21:15:42,019 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:51 sent to queue://test_queue_z0 2013-12-09 21:15:42,020 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 49, Inflight: 0, pagedInMessages.size 0, enqueueCount: 49, dequeueCount: 0 2013-12-09 21:15:42,020 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 55} 2013-12-09 21:15:42,020 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 49 2013-12-09 21:15:42,021 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 56, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:52, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620142020, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 50} 2013-12-09 21:15:42,077 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:52 sent to queue://test_queue_z0 2013-12-09 21:15:42,077 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 50, Inflight: 0, pagedInMessages.size 0, enqueueCount: 50, dequeueCount: 0 2013-12-09 21:15:42,077 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 56} 2013-12-09 21:15:42,078 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 50 2013-12-09 21:15:42,078 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 57, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:53, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620142078, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 51} 2013-12-09 21:15:42,135 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:53 sent to queue://test_queue_z0 2013-12-09 21:15:42,135 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 51, Inflight: 0, pagedInMessages.size 0, enqueueCount: 51, dequeueCount: 0 2013-12-09 21:15:42,135 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 57} 2013-12-09 21:15:42,136 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 51 2013-12-09 21:15:42,136 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 58, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:54, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620142136, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 52} 2013-12-09 21:15:42,193 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:54 sent to queue://test_queue_z0 2013-12-09 21:15:42,193 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 52, Inflight: 0, pagedInMessages.size 0, enqueueCount: 52, dequeueCount: 0 2013-12-09 21:15:42,193 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 58} 2013-12-09 21:15:42,194 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 52 2013-12-09 21:15:42,194 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 59, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:55, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620142194, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 53} 2013-12-09 21:15:42,251 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:55 sent to queue://test_queue_z0 2013-12-09 21:15:42,251 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 53, Inflight: 0, pagedInMessages.size 0, enqueueCount: 53, dequeueCount: 0 2013-12-09 21:15:42,251 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 59} 2013-12-09 21:15:42,252 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 53 2013-12-09 21:15:42,252 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 60, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:56, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620142252, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 54} 2013-12-09 21:15:42,309 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:56 sent to queue://test_queue_z0 2013-12-09 21:15:42,309 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 54, Inflight: 0, pagedInMessages.size 0, enqueueCount: 54, dequeueCount: 0 2013-12-09 21:15:42,309 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 60} 2013-12-09 21:15:42,310 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 54 2013-12-09 21:15:42,310 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 61, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:57, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620142310, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 55} 2013-12-09 21:15:42,367 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:57 sent to queue://test_queue_z0 2013-12-09 21:15:42,367 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 55, Inflight: 0, pagedInMessages.size 0, enqueueCount: 55, dequeueCount: 0 2013-12-09 21:15:42,367 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 61} 2013-12-09 21:15:42,368 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 55 2013-12-09 21:15:42,368 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 62, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:58, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620142368, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 56} 2013-12-09 21:15:42,425 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:58 sent to queue://test_queue_z0 2013-12-09 21:15:42,426 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 56, Inflight: 0, pagedInMessages.size 0, enqueueCount: 56, dequeueCount: 0 2013-12-09 21:15:42,426 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 62} 2013-12-09 21:15:42,426 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 56 2013-12-09 21:15:42,427 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 63, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:59, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620142426, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 57} 2013-12-09 21:15:42,483 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:59 sent to queue://test_queue_z0 2013-12-09 21:15:42,483 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 57, Inflight: 0, pagedInMessages.size 0, enqueueCount: 57, dequeueCount: 0 2013-12-09 21:15:42,483 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 63} 2013-12-09 21:15:42,484 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 57 2013-12-09 21:15:42,485 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 64, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:60, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620142484, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 58} 2013-12-09 21:15:42,541 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:60 sent to queue://test_queue_z0 2013-12-09 21:15:42,541 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 58, Inflight: 0, pagedInMessages.size 0, enqueueCount: 58, dequeueCount: 0 2013-12-09 21:15:42,541 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 64} 2013-12-09 21:15:42,542 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 58 2013-12-09 21:15:42,543 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 65, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:61, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620142542, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 59} 2013-12-09 21:15:42,599 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:61 sent to queue://test_queue_z0 2013-12-09 21:15:42,599 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 59, Inflight: 0, pagedInMessages.size 0, enqueueCount: 59, dequeueCount: 0 2013-12-09 21:15:42,599 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 65} 2013-12-09 21:15:42,600 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 59 2013-12-09 21:15:42,601 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 66, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:62, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620142600, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 60} 2013-12-09 21:15:42,657 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:62 sent to queue://test_queue_z0 2013-12-09 21:15:42,657 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 60, Inflight: 0, pagedInMessages.size 0, enqueueCount: 60, dequeueCount: 0 2013-12-09 21:15:42,657 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 66} 2013-12-09 21:15:42,658 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 60 2013-12-09 21:15:42,658 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 67, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:63, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620142658, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 61} 2013-12-09 21:15:42,715 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:63 sent to queue://test_queue_z0 2013-12-09 21:15:42,715 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 61, Inflight: 0, pagedInMessages.size 0, enqueueCount: 61, dequeueCount: 0 2013-12-09 21:15:42,715 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 67} 2013-12-09 21:15:42,716 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 61 2013-12-09 21:15:42,716 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 68, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:64, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620142716, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 62} 2013-12-09 21:15:42,773 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:64 sent to queue://test_queue_z0 2013-12-09 21:15:42,773 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 62, Inflight: 0, pagedInMessages.size 0, enqueueCount: 62, dequeueCount: 0 2013-12-09 21:15:42,773 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 68} 2013-12-09 21:15:42,774 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 62 2013-12-09 21:15:42,774 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 69, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:65, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620142774, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 63} 2013-12-09 21:15:42,831 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:65 sent to queue://test_queue_z0 2013-12-09 21:15:42,831 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 63, Inflight: 0, pagedInMessages.size 0, enqueueCount: 63, dequeueCount: 0 2013-12-09 21:15:42,831 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 69} 2013-12-09 21:15:42,831 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 63 2013-12-09 21:15:42,832 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 70, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:66, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620142832, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 64} 2013-12-09 21:15:42,897 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:66 sent to queue://test_queue_z0 2013-12-09 21:15:42,897 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 64, Inflight: 0, pagedInMessages.size 0, enqueueCount: 64, dequeueCount: 0 2013-12-09 21:15:42,897 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 70} 2013-12-09 21:15:42,898 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 64 2013-12-09 21:15:42,898 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 71, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:67, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620142898, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 65} 2013-12-09 21:15:42,963 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:67 sent to queue://test_queue_z0 2013-12-09 21:15:42,963 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 65, Inflight: 0, pagedInMessages.size 0, enqueueCount: 65, dequeueCount: 0 2013-12-09 21:15:42,964 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 71} 2013-12-09 21:15:42,964 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 65 2013-12-09 21:15:42,964 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 72, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:68, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620142964, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 66} 2013-12-09 21:15:43,021 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:68 sent to queue://test_queue_z0 2013-12-09 21:15:43,021 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 66, Inflight: 0, pagedInMessages.size 0, enqueueCount: 66, dequeueCount: 0 2013-12-09 21:15:43,022 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 72} 2013-12-09 21:15:43,022 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 66 2013-12-09 21:15:43,022 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 73, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:69, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620143022, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 67} 2013-12-09 21:15:43,089 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:69 sent to queue://test_queue_z0 2013-12-09 21:15:43,089 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 67, Inflight: 0, pagedInMessages.size 0, enqueueCount: 67, dequeueCount: 0 2013-12-09 21:15:43,089 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 73} 2013-12-09 21:15:43,090 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 67 2013-12-09 21:15:43,090 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 74, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:70, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620143090, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 68} 2013-12-09 21:15:43,147 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:70 sent to queue://test_queue_z0 2013-12-09 21:15:43,147 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 68, Inflight: 0, pagedInMessages.size 0, enqueueCount: 68, dequeueCount: 0 2013-12-09 21:15:43,148 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 74} 2013-12-09 21:15:43,148 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 68 2013-12-09 21:15:43,148 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 75, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:71, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620143148, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 69} 2013-12-09 21:15:43,205 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:71 sent to queue://test_queue_z0 2013-12-09 21:15:43,205 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 69, Inflight: 0, pagedInMessages.size 0, enqueueCount: 69, dequeueCount: 0 2013-12-09 21:15:43,205 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 75} 2013-12-09 21:15:43,206 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 69 2013-12-09 21:15:43,206 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 76, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:72, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620143206, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 70} 2013-12-09 21:15:43,263 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:72 sent to queue://test_queue_z0 2013-12-09 21:15:43,263 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 70, Inflight: 0, pagedInMessages.size 0, enqueueCount: 70, dequeueCount: 0 2013-12-09 21:15:43,264 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 76} 2013-12-09 21:15:43,264 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 70 2013-12-09 21:15:43,264 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 77, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:73, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620143264, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 71} 2013-12-09 21:15:43,321 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:73 sent to queue://test_queue_z0 2013-12-09 21:15:43,321 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 71, Inflight: 0, pagedInMessages.size 0, enqueueCount: 71, dequeueCount: 0 2013-12-09 21:15:43,321 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 77} 2013-12-09 21:15:43,322 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 71 2013-12-09 21:15:43,322 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 78, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:74, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620143322, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 72} 2013-12-09 21:15:43,379 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:74 sent to queue://test_queue_z0 2013-12-09 21:15:43,379 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 72, Inflight: 0, pagedInMessages.size 0, enqueueCount: 72, dequeueCount: 0 2013-12-09 21:15:43,379 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 78} 2013-12-09 21:15:43,380 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 72 2013-12-09 21:15:43,380 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 79, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:75, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620143380, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 73} 2013-12-09 21:15:43,437 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:75 sent to queue://test_queue_z0 2013-12-09 21:15:43,437 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 73, Inflight: 0, pagedInMessages.size 0, enqueueCount: 73, dequeueCount: 0 2013-12-09 21:15:43,437 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 79} 2013-12-09 21:15:43,438 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 73 2013-12-09 21:15:43,438 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 80, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:76, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620143438, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 74} 2013-12-09 21:15:43,495 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:76 sent to queue://test_queue_z0 2013-12-09 21:15:43,495 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 74, Inflight: 0, pagedInMessages.size 0, enqueueCount: 74, dequeueCount: 0 2013-12-09 21:15:43,495 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 80} 2013-12-09 21:15:43,496 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 74 2013-12-09 21:15:43,496 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 81, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:77, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620143496, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 75} 2013-12-09 21:15:43,553 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:77 sent to queue://test_queue_z0 2013-12-09 21:15:43,553 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 75, Inflight: 0, pagedInMessages.size 0, enqueueCount: 75, dequeueCount: 0 2013-12-09 21:15:43,554 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 81} 2013-12-09 21:15:43,554 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 75 2013-12-09 21:15:43,554 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 82, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:78, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620143554, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 76} 2013-12-09 21:15:43,611 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:78 sent to queue://test_queue_z0 2013-12-09 21:15:43,611 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 76, Inflight: 0, pagedInMessages.size 0, enqueueCount: 76, dequeueCount: 0 2013-12-09 21:15:43,611 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 82} 2013-12-09 21:15:43,612 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 76 2013-12-09 21:15:43,612 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 83, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:79, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620143612, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 77} 2013-12-09 21:15:43,669 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:79 sent to queue://test_queue_z0 2013-12-09 21:15:43,669 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 77, Inflight: 0, pagedInMessages.size 0, enqueueCount: 77, dequeueCount: 0 2013-12-09 21:15:43,669 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 83} 2013-12-09 21:15:43,670 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 77 2013-12-09 21:15:43,670 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 84, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:80, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620143670, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 78} 2013-12-09 21:15:43,727 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:80 sent to queue://test_queue_z0 2013-12-09 21:15:43,727 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 78, Inflight: 0, pagedInMessages.size 0, enqueueCount: 78, dequeueCount: 0 2013-12-09 21:15:43,728 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 84} 2013-12-09 21:15:43,728 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 78 2013-12-09 21:15:43,729 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 85, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:81, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620143728, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 79} 2013-12-09 21:15:43,785 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:81 sent to queue://test_queue_z0 2013-12-09 21:15:43,785 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 79, Inflight: 0, pagedInMessages.size 0, enqueueCount: 79, dequeueCount: 0 2013-12-09 21:15:43,786 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 85} 2013-12-09 21:15:43,786 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 79 2013-12-09 21:15:43,787 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 86, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:82, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620143787, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 80} 2013-12-09 21:15:43,843 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:82 sent to queue://test_queue_z0 2013-12-09 21:15:43,843 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 80, Inflight: 0, pagedInMessages.size 0, enqueueCount: 80, dequeueCount: 0 2013-12-09 21:15:43,843 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 86} 2013-12-09 21:15:43,844 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 80 2013-12-09 21:15:43,844 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 87, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:83, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620143844, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 81} 2013-12-09 21:15:43,901 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:83 sent to queue://test_queue_z0 2013-12-09 21:15:43,901 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 81, Inflight: 0, pagedInMessages.size 0, enqueueCount: 81, dequeueCount: 0 2013-12-09 21:15:43,901 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 87} 2013-12-09 21:15:43,902 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 81 2013-12-09 21:15:43,903 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 88, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:84, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620143902, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 82} 2013-12-09 21:15:43,959 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:84 sent to queue://test_queue_z0 2013-12-09 21:15:43,959 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 82, Inflight: 0, pagedInMessages.size 0, enqueueCount: 82, dequeueCount: 0 2013-12-09 21:15:43,959 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 88} 2013-12-09 21:15:43,960 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 82 2013-12-09 21:15:43,960 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 89, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:85, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620143960, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 83} 2013-12-09 21:15:44,017 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:85 sent to queue://test_queue_z0 2013-12-09 21:15:44,017 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 83, Inflight: 0, pagedInMessages.size 0, enqueueCount: 83, dequeueCount: 0 2013-12-09 21:15:44,017 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 89} 2013-12-09 21:15:44,018 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 83 2013-12-09 21:15:44,018 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 90, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:86, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620144018, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 84} 2013-12-09 21:15:44,075 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:86 sent to queue://test_queue_z0 2013-12-09 21:15:44,075 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 84, Inflight: 0, pagedInMessages.size 0, enqueueCount: 84, dequeueCount: 0 2013-12-09 21:15:44,075 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 90} 2013-12-09 21:15:44,076 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 84 2013-12-09 21:15:44,076 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 91, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:87, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620144076, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 85} 2013-12-09 21:15:44,133 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:87 sent to queue://test_queue_z0 2013-12-09 21:15:44,133 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 85, Inflight: 0, pagedInMessages.size 0, enqueueCount: 85, dequeueCount: 0 2013-12-09 21:15:44,133 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 91} 2013-12-09 21:15:44,134 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 85 2013-12-09 21:15:44,135 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 92, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:88, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620144134, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 86} 2013-12-09 21:15:44,191 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:88 sent to queue://test_queue_z0 2013-12-09 21:15:44,191 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 86, Inflight: 0, pagedInMessages.size 0, enqueueCount: 86, dequeueCount: 0 2013-12-09 21:15:44,191 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 92} 2013-12-09 21:15:44,192 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 86 2013-12-09 21:15:44,192 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 93, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:89, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620144192, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 87} 2013-12-09 21:15:44,249 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:89 sent to queue://test_queue_z0 2013-12-09 21:15:44,249 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 87, Inflight: 0, pagedInMessages.size 0, enqueueCount: 87, dequeueCount: 0 2013-12-09 21:15:44,249 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 93} 2013-12-09 21:15:44,250 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 87 2013-12-09 21:15:44,250 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 94, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:90, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620144250, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 88} 2013-12-09 21:15:44,307 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:90 sent to queue://test_queue_z0 2013-12-09 21:15:44,308 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 88, Inflight: 0, pagedInMessages.size 0, enqueueCount: 88, dequeueCount: 0 2013-12-09 21:15:44,308 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 94} 2013-12-09 21:15:44,308 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 88 2013-12-09 21:15:44,309 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 95, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:91, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620144309, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 89} 2013-12-09 21:15:44,365 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:91 sent to queue://test_queue_z0 2013-12-09 21:15:44,365 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 89, Inflight: 0, pagedInMessages.size 0, enqueueCount: 89, dequeueCount: 0 2013-12-09 21:15:44,365 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 95} 2013-12-09 21:15:44,366 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 89 2013-12-09 21:15:44,366 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 96, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:92, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620144366, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 90} 2013-12-09 21:15:44,423 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:92 sent to queue://test_queue_z0 2013-12-09 21:15:44,423 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 90, Inflight: 0, pagedInMessages.size 0, enqueueCount: 90, dequeueCount: 0 2013-12-09 21:15:44,423 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 96} 2013-12-09 21:15:44,423 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 90 2013-12-09 21:15:44,424 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 97, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:93, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620144424, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 91} 2013-12-09 21:15:44,481 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:93 sent to queue://test_queue_z0 2013-12-09 21:15:44,481 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 91, Inflight: 0, pagedInMessages.size 0, enqueueCount: 91, dequeueCount: 0 2013-12-09 21:15:44,481 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 97} 2013-12-09 21:15:44,481 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 91 2013-12-09 21:15:44,482 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 98, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:94, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620144482, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 92} 2013-12-09 21:15:44,539 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:94 sent to queue://test_queue_z0 2013-12-09 21:15:44,539 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 92, Inflight: 0, pagedInMessages.size 0, enqueueCount: 92, dequeueCount: 0 2013-12-09 21:15:44,539 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 98} 2013-12-09 21:15:44,540 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 92 2013-12-09 21:15:44,540 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 99, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:95, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620144540, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 93} 2013-12-09 21:15:44,597 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:95 sent to queue://test_queue_z0 2013-12-09 21:15:44,597 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 93, Inflight: 0, pagedInMessages.size 0, enqueueCount: 93, dequeueCount: 0 2013-12-09 21:15:44,597 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 99} 2013-12-09 21:15:44,598 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 93 2013-12-09 21:15:44,598 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 100, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:96, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620144598, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 94} 2013-12-09 21:15:44,663 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:96 sent to queue://test_queue_z0 2013-12-09 21:15:44,663 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 94, Inflight: 0, pagedInMessages.size 0, enqueueCount: 94, dequeueCount: 0 2013-12-09 21:15:44,663 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 100} 2013-12-09 21:15:44,664 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 94 2013-12-09 21:15:44,664 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 101, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:97, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620144664, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 95} 2013-12-09 21:15:44,721 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:97 sent to queue://test_queue_z0 2013-12-09 21:15:44,721 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 95, Inflight: 0, pagedInMessages.size 0, enqueueCount: 95, dequeueCount: 0 2013-12-09 21:15:44,721 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 101} 2013-12-09 21:15:44,722 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 95 2013-12-09 21:15:44,722 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 102, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:98, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620144722, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 96} 2013-12-09 21:15:44,829 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:98 sent to queue://test_queue_z0 2013-12-09 21:15:44,829 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 96, Inflight: 0, pagedInMessages.size 0, enqueueCount: 96, dequeueCount: 0 2013-12-09 21:15:44,829 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 102} 2013-12-09 21:15:44,829 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 96 2013-12-09 21:15:44,830 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 103, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:99, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620144830, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 97} 2013-12-09 21:15:44,894 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:99 sent to queue://test_queue_z0 2013-12-09 21:15:44,895 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 97, Inflight: 0, pagedInMessages.size 0, enqueueCount: 97, dequeueCount: 0 2013-12-09 21:15:44,895 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 103} 2013-12-09 21:15:44,895 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 97 2013-12-09 21:15:44,896 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 104, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:100, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620144896, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 98} 2013-12-09 21:15:45,002 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:100 sent to queue://test_queue_z0 2013-12-09 21:15:45,003 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 98, Inflight: 0, pagedInMessages.size 0, enqueueCount: 98, dequeueCount: 0 2013-12-09 21:15:45,003 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 104} 2013-12-09 21:15:45,003 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 98 2013-12-09 21:15:45,004 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 105, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:101, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620145003, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 99} 2013-12-09 21:15:45,068 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:101 sent to queue://test_queue_z0 2013-12-09 21:15:45,069 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 99, Inflight: 0, pagedInMessages.size 0, enqueueCount: 99, dequeueCount: 0 2013-12-09 21:15:45,069 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 105} 2013-12-09 21:15:45,070 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 99 2013-12-09 21:15:45,070 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 106, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:102, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620145070, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 100} 2013-12-09 21:15:45,126 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:102 sent to queue://test_queue_z0 2013-12-09 21:15:45,127 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 100, Inflight: 0, pagedInMessages.size 0, enqueueCount: 100, dequeueCount: 0 2013-12-09 21:15:45,127 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 106} 2013-12-09 21:15:45,127 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 100 2013-12-09 21:15:45,128 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 107, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:103, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620145127, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 101} 2013-12-09 21:15:45,184 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:103 sent to queue://test_queue_z0 2013-12-09 21:15:45,185 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 101, Inflight: 0, pagedInMessages.size 0, enqueueCount: 101, dequeueCount: 0 2013-12-09 21:15:45,185 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 107} 2013-12-09 21:15:45,185 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 101 2013-12-09 21:15:45,186 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 108, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:104, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620145185, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 102} 2013-12-09 21:15:45,252 [.0.1:57996@1666] DEBUG Usage - default:memory:queue://test_queue_z0:memory: usage change from: 0% of available memory, to: 1% of available memory 2013-12-09 21:15:45,254 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:104 sent to queue://test_queue_z0 2013-12-09 21:15:45,254 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 102, Inflight: 0, pagedInMessages.size 0, enqueueCount: 102, dequeueCount: 0 2013-12-09 21:15:45,255 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 108} 2013-12-09 21:15:45,255 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 102 2013-12-09 21:15:45,256 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 109, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:105, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620145255, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 103} 2013-12-09 21:15:45,310 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:105 sent to queue://test_queue_z0 2013-12-09 21:15:45,310 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 103, Inflight: 0, pagedInMessages.size 0, enqueueCount: 103, dequeueCount: 0 2013-12-09 21:15:45,311 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 109} 2013-12-09 21:15:45,312 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 103 2013-12-09 21:15:45,312 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 110, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:106, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620145312, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 104} 2013-12-09 21:15:45,368 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:106 sent to queue://test_queue_z0 2013-12-09 21:15:45,368 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 104, Inflight: 0, pagedInMessages.size 0, enqueueCount: 104, dequeueCount: 0 2013-12-09 21:15:45,368 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 110} 2013-12-09 21:15:45,369 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 104 2013-12-09 21:15:45,369 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 111, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:107, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620145369, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 105} 2013-12-09 21:15:45,426 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:107 sent to queue://test_queue_z0 2013-12-09 21:15:45,427 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 105, Inflight: 0, pagedInMessages.size 0, enqueueCount: 105, dequeueCount: 0 2013-12-09 21:15:45,427 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 111} 2013-12-09 21:15:45,427 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 105 2013-12-09 21:15:45,428 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 112, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:108, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620145427, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 106} 2013-12-09 21:15:45,484 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:108 sent to queue://test_queue_z0 2013-12-09 21:15:45,484 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 106, Inflight: 0, pagedInMessages.size 0, enqueueCount: 106, dequeueCount: 0 2013-12-09 21:15:45,485 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 112} 2013-12-09 21:15:45,485 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 106 2013-12-09 21:15:45,486 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 113, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:109, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620145485, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 107} 2013-12-09 21:15:45,542 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:109 sent to queue://test_queue_z0 2013-12-09 21:15:45,542 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 107, Inflight: 0, pagedInMessages.size 0, enqueueCount: 107, dequeueCount: 0 2013-12-09 21:15:45,542 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 113} 2013-12-09 21:15:45,543 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 107 2013-12-09 21:15:45,543 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 114, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:110, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620145543, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 108} 2013-12-09 21:15:45,600 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:110 sent to queue://test_queue_z0 2013-12-09 21:15:45,600 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 108, Inflight: 0, pagedInMessages.size 0, enqueueCount: 108, dequeueCount: 0 2013-12-09 21:15:45,600 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 114} 2013-12-09 21:15:45,601 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 108 2013-12-09 21:15:45,601 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 115, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:111, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620145601, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 109} 2013-12-09 21:15:45,658 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:111 sent to queue://test_queue_z0 2013-12-09 21:15:45,658 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 109, Inflight: 0, pagedInMessages.size 0, enqueueCount: 109, dequeueCount: 0 2013-12-09 21:15:45,658 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 115} 2013-12-09 21:15:45,659 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 109 2013-12-09 21:15:45,659 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 116, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:112, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620145659, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 110} 2013-12-09 21:15:45,716 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:112 sent to queue://test_queue_z0 2013-12-09 21:15:45,716 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 110, Inflight: 0, pagedInMessages.size 0, enqueueCount: 110, dequeueCount: 0 2013-12-09 21:15:45,716 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 116} 2013-12-09 21:15:45,717 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 110 2013-12-09 21:15:45,717 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 117, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:113, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620145717, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 111} 2013-12-09 21:15:45,774 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:113 sent to queue://test_queue_z0 2013-12-09 21:15:45,774 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 111, Inflight: 0, pagedInMessages.size 0, enqueueCount: 111, dequeueCount: 0 2013-12-09 21:15:45,774 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 117} 2013-12-09 21:15:45,775 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 111 2013-12-09 21:15:45,775 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 118, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:114, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620145775, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 112} 2013-12-09 21:15:45,832 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:114 sent to queue://test_queue_z0 2013-12-09 21:15:45,832 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 112, Inflight: 0, pagedInMessages.size 0, enqueueCount: 112, dequeueCount: 0 2013-12-09 21:15:45,832 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 118} 2013-12-09 21:15:45,833 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 112 2013-12-09 21:15:45,833 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 119, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:115, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620145833, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 113} 2013-12-09 21:15:45,890 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:115 sent to queue://test_queue_z0 2013-12-09 21:15:45,890 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 113, Inflight: 0, pagedInMessages.size 0, enqueueCount: 113, dequeueCount: 0 2013-12-09 21:15:45,890 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 119} 2013-12-09 21:15:45,891 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 113 2013-12-09 21:15:45,891 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 120, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:116, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620145891, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 114} 2013-12-09 21:15:45,948 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:116 sent to queue://test_queue_z0 2013-12-09 21:15:45,948 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 114, Inflight: 0, pagedInMessages.size 0, enqueueCount: 114, dequeueCount: 0 2013-12-09 21:15:45,948 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 120} 2013-12-09 21:15:45,949 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 114 2013-12-09 21:15:45,949 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 121, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:117, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620145949, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 115} 2013-12-09 21:15:46,006 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:117 sent to queue://test_queue_z0 2013-12-09 21:15:46,006 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 115, Inflight: 0, pagedInMessages.size 0, enqueueCount: 115, dequeueCount: 0 2013-12-09 21:15:46,006 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 121} 2013-12-09 21:15:46,007 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 115 2013-12-09 21:15:46,007 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 122, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:118, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146007, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 116} 2013-12-09 21:15:46,064 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:118 sent to queue://test_queue_z0 2013-12-09 21:15:46,064 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 116, Inflight: 0, pagedInMessages.size 0, enqueueCount: 116, dequeueCount: 0 2013-12-09 21:15:46,065 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 122} 2013-12-09 21:15:46,065 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 116 2013-12-09 21:15:46,065 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 123, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:119, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146065, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 117} 2013-12-09 21:15:46,122 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:119 sent to queue://test_queue_z0 2013-12-09 21:15:46,122 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 117, Inflight: 0, pagedInMessages.size 0, enqueueCount: 117, dequeueCount: 0 2013-12-09 21:15:46,122 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 123} 2013-12-09 21:15:46,123 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 117 2013-12-09 21:15:46,123 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 124, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:120, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146123, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 118} 2013-12-09 21:15:46,180 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:120 sent to queue://test_queue_z0 2013-12-09 21:15:46,180 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 118, Inflight: 0, pagedInMessages.size 0, enqueueCount: 118, dequeueCount: 0 2013-12-09 21:15:46,180 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 124} 2013-12-09 21:15:46,181 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 118 2013-12-09 21:15:46,181 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 125, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:121, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146181, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 119} 2013-12-09 21:15:46,238 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:121 sent to queue://test_queue_z0 2013-12-09 21:15:46,238 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 119, Inflight: 0, pagedInMessages.size 0, enqueueCount: 119, dequeueCount: 0 2013-12-09 21:15:46,238 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 125} 2013-12-09 21:15:46,239 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 119 2013-12-09 21:15:46,239 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 126, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:122, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146239, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 120} 2013-12-09 21:15:46,296 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:122 sent to queue://test_queue_z0 2013-12-09 21:15:46,296 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 120, Inflight: 0, pagedInMessages.size 0, enqueueCount: 120, dequeueCount: 0 2013-12-09 21:15:46,296 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 126} 2013-12-09 21:15:46,297 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 120 2013-12-09 21:15:46,297 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 127, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:123, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146297, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 121} 2013-12-09 21:15:46,354 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:123 sent to queue://test_queue_z0 2013-12-09 21:15:46,354 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 121, Inflight: 0, pagedInMessages.size 0, enqueueCount: 121, dequeueCount: 0 2013-12-09 21:15:46,354 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 127} 2013-12-09 21:15:46,355 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 121 2013-12-09 21:15:46,355 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 128, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:124, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146355, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 122} 2013-12-09 21:15:46,412 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:124 sent to queue://test_queue_z0 2013-12-09 21:15:46,412 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 122, Inflight: 0, pagedInMessages.size 0, enqueueCount: 122, dequeueCount: 0 2013-12-09 21:15:46,412 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 128} 2013-12-09 21:15:46,413 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 122 2013-12-09 21:15:46,413 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 129, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:125, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146413, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 123} 2013-12-09 21:15:46,454 [ Scheduled Task] DEBUG LeaseDatabaseLocker - coreActiveMQBroker1, lease keepAlive Query is UPDATE ACTIVEMQ_LOCK SET BROKER_NAME=?, TIME=? WHERE BROKER_NAME=? AND ID = 1 2013-12-09 21:15:46,478 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:125 sent to queue://test_queue_z0 2013-12-09 21:15:46,478 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 123, Inflight: 0, pagedInMessages.size 0, enqueueCount: 123, dequeueCount: 0 2013-12-09 21:15:46,479 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 129} 2013-12-09 21:15:46,479 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 123 2013-12-09 21:15:46,479 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 130, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:126, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146479, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 124} 2013-12-09 21:15:46,586 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:126 sent to queue://test_queue_z0 2013-12-09 21:15:46,586 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 124, Inflight: 0, pagedInMessages.size 0, enqueueCount: 124, dequeueCount: 0 2013-12-09 21:15:46,586 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 130} 2013-12-09 21:15:46,587 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 124 2013-12-09 21:15:46,587 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 131, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:127, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146587, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 125} 2013-12-09 21:15:46,652 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:127 sent to queue://test_queue_z0 2013-12-09 21:15:46,652 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 125, Inflight: 0, pagedInMessages.size 0, enqueueCount: 125, dequeueCount: 0 2013-12-09 21:15:46,652 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 131} 2013-12-09 21:15:46,653 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 125 2013-12-09 21:15:46,653 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 132, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:128, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146653, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 126} 2013-12-09 21:15:46,760 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:128 sent to queue://test_queue_z0 2013-12-09 21:15:46,760 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 126, Inflight: 0, pagedInMessages.size 0, enqueueCount: 126, dequeueCount: 0 2013-12-09 21:15:46,760 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 132} 2013-12-09 21:15:46,760 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 126 2013-12-09 21:15:46,761 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 133, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:129, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146761, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 127} 2013-12-09 21:15:46,867 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:129 sent to queue://test_queue_z0 2013-12-09 21:15:46,868 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 127, Inflight: 0, pagedInMessages.size 0, enqueueCount: 127, dequeueCount: 0 2013-12-09 21:15:46,868 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 133} 2013-12-09 21:15:46,868 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 127 2013-12-09 21:15:46,869 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 134, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:130, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146868, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 128} 2013-12-09 21:15:46,925 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:130 sent to queue://test_queue_z0 2013-12-09 21:15:46,926 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 128, Inflight: 0, pagedInMessages.size 0, enqueueCount: 128, dequeueCount: 0 2013-12-09 21:15:46,926 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 134} 2013-12-09 21:15:46,926 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 128 2013-12-09 21:15:46,927 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 135, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:131, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146926, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 129} 2013-12-09 21:15:46,983 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:131 sent to queue://test_queue_z0 2013-12-09 21:15:46,983 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 129, Inflight: 0, pagedInMessages.size 0, enqueueCount: 129, dequeueCount: 0 2013-12-09 21:15:46,983 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 135} 2013-12-09 21:15:46,984 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 129 2013-12-09 21:15:46,985 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 136, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:132, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146985, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 130} 2013-12-09 21:15:47,041 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:132 sent to queue://test_queue_z0 2013-12-09 21:15:47,041 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 130, Inflight: 0, pagedInMessages.size 0, enqueueCount: 130, dequeueCount: 0 2013-12-09 21:15:47,041 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 136} 2013-12-09 21:15:47,042 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 130 2013-12-09 21:15:47,042 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 137, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:133, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147042, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 131} 2013-12-09 21:15:47,099 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:133 sent to queue://test_queue_z0 2013-12-09 21:15:47,100 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 131, Inflight: 0, pagedInMessages.size 0, enqueueCount: 131, dequeueCount: 0 2013-12-09 21:15:47,100 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 137} 2013-12-09 21:15:47,100 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 131 2013-12-09 21:15:47,101 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 138, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:134, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147101, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 132} 2013-12-09 21:15:47,157 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:134 sent to queue://test_queue_z0 2013-12-09 21:15:47,157 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 132, Inflight: 0, pagedInMessages.size 0, enqueueCount: 132, dequeueCount: 0 2013-12-09 21:15:47,157 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 138} 2013-12-09 21:15:47,158 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 132 2013-12-09 21:15:47,158 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 139, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:135, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147158, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 133} 2013-12-09 21:15:47,215 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:135 sent to queue://test_queue_z0 2013-12-09 21:15:47,215 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 133, Inflight: 0, pagedInMessages.size 0, enqueueCount: 133, dequeueCount: 0 2013-12-09 21:15:47,215 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 139} 2013-12-09 21:15:47,216 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 133 2013-12-09 21:15:47,216 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 140, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:136, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147216, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 134} 2013-12-09 21:15:47,273 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:136 sent to queue://test_queue_z0 2013-12-09 21:15:47,273 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 134, Inflight: 0, pagedInMessages.size 0, enqueueCount: 134, dequeueCount: 0 2013-12-09 21:15:47,273 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 140} 2013-12-09 21:15:47,274 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 134 2013-12-09 21:15:47,274 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 141, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:137, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147274, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 135} 2013-12-09 21:15:47,331 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:137 sent to queue://test_queue_z0 2013-12-09 21:15:47,331 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 135, Inflight: 0, pagedInMessages.size 0, enqueueCount: 135, dequeueCount: 0 2013-12-09 21:15:47,331 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 141} 2013-12-09 21:15:47,332 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 135 2013-12-09 21:15:47,332 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 142, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:138, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147332, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 136} 2013-12-09 21:15:47,399 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:138 sent to queue://test_queue_z0 2013-12-09 21:15:47,399 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 136, Inflight: 0, pagedInMessages.size 0, enqueueCount: 136, dequeueCount: 0 2013-12-09 21:15:47,399 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 142} 2013-12-09 21:15:47,399 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 136 2013-12-09 21:15:47,400 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 143, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:139, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147400, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 137} 2013-12-09 21:15:47,457 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:139 sent to queue://test_queue_z0 2013-12-09 21:15:47,457 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 137, Inflight: 0, pagedInMessages.size 0, enqueueCount: 137, dequeueCount: 0 2013-12-09 21:15:47,457 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 143} 2013-12-09 21:15:47,457 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 137 2013-12-09 21:15:47,458 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 144, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:140, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147458, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 138} 2013-12-09 21:15:47,515 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:140 sent to queue://test_queue_z0 2013-12-09 21:15:47,515 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 138, Inflight: 0, pagedInMessages.size 0, enqueueCount: 138, dequeueCount: 0 2013-12-09 21:15:47,515 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 144} 2013-12-09 21:15:47,515 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 138 2013-12-09 21:15:47,516 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 145, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:141, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147516, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 139} 2013-12-09 21:15:47,573 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:141 sent to queue://test_queue_z0 2013-12-09 21:15:47,573 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 139, Inflight: 0, pagedInMessages.size 0, enqueueCount: 139, dequeueCount: 0 2013-12-09 21:15:47,573 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 145} 2013-12-09 21:15:47,574 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 139 2013-12-09 21:15:47,574 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 146, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:142, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147574, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 140} 2013-12-09 21:15:47,631 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:142 sent to queue://test_queue_z0 2013-12-09 21:15:47,631 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 140, Inflight: 0, pagedInMessages.size 0, enqueueCount: 140, dequeueCount: 0 2013-12-09 21:15:47,631 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 146} 2013-12-09 21:15:47,632 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 140 2013-12-09 21:15:47,632 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 147, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:143, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147632, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 141} 2013-12-09 21:15:47,689 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:143 sent to queue://test_queue_z0 2013-12-09 21:15:47,689 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 141, Inflight: 0, pagedInMessages.size 0, enqueueCount: 141, dequeueCount: 0 2013-12-09 21:15:47,689 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 147} 2013-12-09 21:15:47,690 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 141 2013-12-09 21:15:47,690 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 148, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:144, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147690, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 142} 2013-12-09 21:15:47,746 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:144 sent to queue://test_queue_z0 2013-12-09 21:15:47,747 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 142, Inflight: 0, pagedInMessages.size 0, enqueueCount: 142, dequeueCount: 0 2013-12-09 21:15:47,747 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 148} 2013-12-09 21:15:47,747 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 142 2013-12-09 21:15:47,748 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 149, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:145, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147747, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 143} 2013-12-09 21:15:47,804 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:145 sent to queue://test_queue_z0 2013-12-09 21:15:47,805 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 143, Inflight: 0, pagedInMessages.size 0, enqueueCount: 143, dequeueCount: 0 2013-12-09 21:15:47,805 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 149} 2013-12-09 21:15:47,805 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 143 2013-12-09 21:15:47,806 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 150, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:146, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147805, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 144} 2013-12-09 21:15:47,862 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:146 sent to queue://test_queue_z0 2013-12-09 21:15:47,863 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 144, Inflight: 0, pagedInMessages.size 0, enqueueCount: 144, dequeueCount: 0 2013-12-09 21:15:47,863 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 150} 2013-12-09 21:15:47,863 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 144 2013-12-09 21:15:47,864 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 151, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:147, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147863, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 145} 2013-12-09 21:15:47,920 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:147 sent to queue://test_queue_z0 2013-12-09 21:15:47,921 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 145, Inflight: 0, pagedInMessages.size 0, enqueueCount: 145, dequeueCount: 0 2013-12-09 21:15:47,921 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 151} 2013-12-09 21:15:47,921 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 145 2013-12-09 21:15:47,922 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 152, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:148, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147921, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 146} 2013-12-09 21:15:47,979 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:148 sent to queue://test_queue_z0 2013-12-09 21:15:47,979 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 146, Inflight: 0, pagedInMessages.size 0, enqueueCount: 146, dequeueCount: 0 2013-12-09 21:15:47,979 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 152} 2013-12-09 21:15:47,979 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 146 2013-12-09 21:15:47,980 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 153, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:149, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147980, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 147} 2013-12-09 21:15:48,036 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:149 sent to queue://test_queue_z0 2013-12-09 21:15:48,037 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 147, Inflight: 0, pagedInMessages.size 0, enqueueCount: 147, dequeueCount: 0 2013-12-09 21:15:48,037 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 153} 2013-12-09 21:15:48,038 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 147 2013-12-09 21:15:48,038 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 154, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:150, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148038, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 148} 2013-12-09 21:15:48,095 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:150 sent to queue://test_queue_z0 2013-12-09 21:15:48,095 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 148, Inflight: 0, pagedInMessages.size 0, enqueueCount: 148, dequeueCount: 0 2013-12-09 21:15:48,095 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 154} 2013-12-09 21:15:48,095 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 148 2013-12-09 21:15:48,096 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 155, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:151, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148096, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 149} 2013-12-09 21:15:48,152 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:151 sent to queue://test_queue_z0 2013-12-09 21:15:48,153 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 149, Inflight: 0, pagedInMessages.size 0, enqueueCount: 149, dequeueCount: 0 2013-12-09 21:15:48,153 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 155} 2013-12-09 21:15:48,153 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 149 2013-12-09 21:15:48,154 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 156, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:152, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148153, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 150} 2013-12-09 21:15:48,210 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:152 sent to queue://test_queue_z0 2013-12-09 21:15:48,211 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 150, Inflight: 0, pagedInMessages.size 0, enqueueCount: 150, dequeueCount: 0 2013-12-09 21:15:48,211 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 156} 2013-12-09 21:15:48,211 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 150 2013-12-09 21:15:48,212 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 157, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:153, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148211, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 151} 2013-12-09 21:15:48,268 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:153 sent to queue://test_queue_z0 2013-12-09 21:15:48,269 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 151, Inflight: 0, pagedInMessages.size 0, enqueueCount: 151, dequeueCount: 0 2013-12-09 21:15:48,269 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 157} 2013-12-09 21:15:48,270 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 151 2013-12-09 21:15:48,270 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 158, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:154, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148270, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 152} 2013-12-09 21:15:48,335 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:154 sent to queue://test_queue_z0 2013-12-09 21:15:48,335 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 152, Inflight: 0, pagedInMessages.size 0, enqueueCount: 152, dequeueCount: 0 2013-12-09 21:15:48,335 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 158} 2013-12-09 21:15:48,335 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 152 2013-12-09 21:15:48,337 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 159, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:155, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148336, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 153} 2013-12-09 21:15:48,393 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:155 sent to queue://test_queue_z0 2013-12-09 21:15:48,393 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 153, Inflight: 0, pagedInMessages.size 0, enqueueCount: 153, dequeueCount: 0 2013-12-09 21:15:48,393 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 159} 2013-12-09 21:15:48,393 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 153 2013-12-09 21:15:48,394 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 160, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:156, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148394, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 154} 2013-12-09 21:15:48,451 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:156 sent to queue://test_queue_z0 2013-12-09 21:15:48,451 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 154, Inflight: 0, pagedInMessages.size 0, enqueueCount: 154, dequeueCount: 0 2013-12-09 21:15:48,451 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 160} 2013-12-09 21:15:48,451 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 154 2013-12-09 21:15:48,452 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 161, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:157, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148452, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 155} 2013-12-09 21:15:48,517 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:157 sent to queue://test_queue_z0 2013-12-09 21:15:48,517 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 155, Inflight: 0, pagedInMessages.size 0, enqueueCount: 155, dequeueCount: 0 2013-12-09 21:15:48,517 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 161} 2013-12-09 21:15:48,518 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 155 2013-12-09 21:15:48,518 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 162, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:158, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148518, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 156} 2013-12-09 21:15:48,575 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:158 sent to queue://test_queue_z0 2013-12-09 21:15:48,575 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 156, Inflight: 0, pagedInMessages.size 0, enqueueCount: 156, dequeueCount: 0 2013-12-09 21:15:48,575 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 162} 2013-12-09 21:15:48,576 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 156 2013-12-09 21:15:48,576 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 163, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:159, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148576, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 157} 2013-12-09 21:15:48,633 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:159 sent to queue://test_queue_z0 2013-12-09 21:15:48,633 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 157, Inflight: 0, pagedInMessages.size 0, enqueueCount: 157, dequeueCount: 0 2013-12-09 21:15:48,633 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 163} 2013-12-09 21:15:48,634 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 157 2013-12-09 21:15:48,634 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 164, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:160, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148634, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 158} 2013-12-09 21:15:48,691 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:160 sent to queue://test_queue_z0 2013-12-09 21:15:48,691 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 158, Inflight: 0, pagedInMessages.size 0, enqueueCount: 158, dequeueCount: 0 2013-12-09 21:15:48,691 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 164} 2013-12-09 21:15:48,692 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 158 2013-12-09 21:15:48,692 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 165, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:161, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148692, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 159} 2013-12-09 21:15:48,749 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:161 sent to queue://test_queue_z0 2013-12-09 21:15:48,749 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 159, Inflight: 0, pagedInMessages.size 0, enqueueCount: 159, dequeueCount: 0 2013-12-09 21:15:48,749 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 165} 2013-12-09 21:15:48,750 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 159 2013-12-09 21:15:48,750 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 166, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:162, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148750, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 160} 2013-12-09 21:15:48,807 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:162 sent to queue://test_queue_z0 2013-12-09 21:15:48,807 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 160, Inflight: 0, pagedInMessages.size 0, enqueueCount: 160, dequeueCount: 0 2013-12-09 21:15:48,807 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 166} 2013-12-09 21:15:48,808 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 160 2013-12-09 21:15:48,808 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 167, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:163, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148808, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 161} 2013-12-09 21:15:48,865 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:163 sent to queue://test_queue_z0 2013-12-09 21:15:48,865 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 161, Inflight: 0, pagedInMessages.size 0, enqueueCount: 161, dequeueCount: 0 2013-12-09 21:15:48,865 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 167} 2013-12-09 21:15:48,866 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 161 2013-12-09 21:15:48,866 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 168, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:164, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148866, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 162} 2013-12-09 21:15:48,923 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:164 sent to queue://test_queue_z0 2013-12-09 21:15:48,923 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 162, Inflight: 0, pagedInMessages.size 0, enqueueCount: 162, dequeueCount: 0 2013-12-09 21:15:48,923 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 168} 2013-12-09 21:15:48,924 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 162 2013-12-09 21:15:48,924 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 169, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:165, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148924, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 163} 2013-12-09 21:15:48,981 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:165 sent to queue://test_queue_z0 2013-12-09 21:15:48,981 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 163, Inflight: 0, pagedInMessages.size 0, enqueueCount: 163, dequeueCount: 0 2013-12-09 21:15:48,981 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 169} 2013-12-09 21:15:48,982 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 163 2013-12-09 21:15:48,982 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 170, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:166, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148982, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 164} 2013-12-09 21:15:49,039 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:166 sent to queue://test_queue_z0 2013-12-09 21:15:49,039 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 164, Inflight: 0, pagedInMessages.size 0, enqueueCount: 164, dequeueCount: 0 2013-12-09 21:15:49,039 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 170} 2013-12-09 21:15:49,040 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 164 2013-12-09 21:15:49,040 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 171, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:167, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620149040, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 165} 2013-12-09 21:15:49,097 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:167 sent to queue://test_queue_z0 2013-12-09 21:15:49,097 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 165, Inflight: 0, pagedInMessages.size 0, enqueueCount: 165, dequeueCount: 0 2013-12-09 21:15:49,097 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 171} 2013-12-09 21:15:49,097 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 165 2013-12-09 21:15:49,098 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 172, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:168, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620149098, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 166} 2013-12-09 21:15:49,384 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:168 sent to queue://test_queue_z0 2013-12-09 21:15:49,385 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 166, Inflight: 0, pagedInMessages.size 0, enqueueCount: 166, dequeueCount: 0 2013-12-09 21:15:49,385 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 172} 2013-12-09 21:15:49,385 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 166 2013-12-09 21:15:49,386 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 173, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:169, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620149386, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 167} 2013-12-09 21:15:49,618 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:169 sent to queue://test_queue_z0 2013-12-09 21:15:49,618 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 167, Inflight: 0, pagedInMessages.size 0, enqueueCount: 167, dequeueCount: 0 2013-12-09 21:15:49,618 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 173} 2013-12-09 21:15:49,619 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 167 2013-12-09 21:15:49,619 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 174, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:170, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620149619, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 168} 2013-12-09 21:15:49,768 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:170 sent to queue://test_queue_z0 2013-12-09 21:15:49,768 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 168, Inflight: 0, pagedInMessages.size 0, enqueueCount: 168, dequeueCount: 0 2013-12-09 21:15:49,769 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 174} 2013-12-09 21:15:49,769 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 168 2013-12-09 21:15:49,770 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 175, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:171, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620149769, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 169} 2013-12-09 21:15:49,874 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:171 sent to queue://test_queue_z0 2013-12-09 21:15:49,875 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 169, Inflight: 0, pagedInMessages.size 0, enqueueCount: 169, dequeueCount: 0 2013-12-09 21:15:49,875 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 175} 2013-12-09 21:15:49,875 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 169 2013-12-09 21:15:49,876 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 176, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:172, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620149875, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 170} 2013-12-09 21:15:49,926 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:172 sent to queue://test_queue_z0 2013-12-09 21:15:49,926 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 170, Inflight: 0, pagedInMessages.size 0, enqueueCount: 170, dequeueCount: 0 2013-12-09 21:15:49,926 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 176} 2013-12-09 21:15:49,927 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 170 2013-12-09 21:15:49,927 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 177, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:173, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620149927, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 171} 2013-12-09 21:15:49,984 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:173 sent to queue://test_queue_z0 2013-12-09 21:15:49,984 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 171, Inflight: 0, pagedInMessages.size 0, enqueueCount: 171, dequeueCount: 0 2013-12-09 21:15:49,984 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 177} 2013-12-09 21:15:49,985 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 171 2013-12-09 21:15:49,985 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 178, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:174, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620149985, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 172} 2013-12-09 21:15:50,041 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:174 sent to queue://test_queue_z0 2013-12-09 21:15:50,042 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 172, Inflight: 0, pagedInMessages.size 0, enqueueCount: 172, dequeueCount: 0 2013-12-09 21:15:50,042 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 178} 2013-12-09 21:15:50,042 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 172 2013-12-09 21:15:50,043 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 179, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:175, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150043, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 173} 2013-12-09 21:15:50,099 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:175 sent to queue://test_queue_z0 2013-12-09 21:15:50,100 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 173, Inflight: 0, pagedInMessages.size 0, enqueueCount: 173, dequeueCount: 0 2013-12-09 21:15:50,100 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 179} 2013-12-09 21:15:50,101 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 173 2013-12-09 21:15:50,101 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 180, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:176, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150101, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 174} 2013-12-09 21:15:50,158 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:176 sent to queue://test_queue_z0 2013-12-09 21:15:50,158 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 174, Inflight: 0, pagedInMessages.size 0, enqueueCount: 174, dequeueCount: 0 2013-12-09 21:15:50,158 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 180} 2013-12-09 21:15:50,159 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 174 2013-12-09 21:15:50,159 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 181, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:177, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150159, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 175} 2013-12-09 21:15:50,215 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:177 sent to queue://test_queue_z0 2013-12-09 21:15:50,216 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 175, Inflight: 0, pagedInMessages.size 0, enqueueCount: 175, dequeueCount: 0 2013-12-09 21:15:50,216 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 181} 2013-12-09 21:15:50,216 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 175 2013-12-09 21:15:50,217 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 182, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:178, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150216, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 176} 2013-12-09 21:15:50,273 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:178 sent to queue://test_queue_z0 2013-12-09 21:15:50,274 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 176, Inflight: 0, pagedInMessages.size 0, enqueueCount: 176, dequeueCount: 0 2013-12-09 21:15:50,274 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 182} 2013-12-09 21:15:50,274 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 176 2013-12-09 21:15:50,275 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 183, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:179, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150275, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 177} 2013-12-09 21:15:50,340 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:179 sent to queue://test_queue_z0 2013-12-09 21:15:50,340 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 177, Inflight: 0, pagedInMessages.size 0, enqueueCount: 177, dequeueCount: 0 2013-12-09 21:15:50,340 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 183} 2013-12-09 21:15:50,341 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 177 2013-12-09 21:15:50,341 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 184, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:180, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150341, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 178} 2013-12-09 21:15:50,398 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:180 sent to queue://test_queue_z0 2013-12-09 21:15:50,398 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 178, Inflight: 0, pagedInMessages.size 0, enqueueCount: 178, dequeueCount: 0 2013-12-09 21:15:50,398 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 184} 2013-12-09 21:15:50,399 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 178 2013-12-09 21:15:50,399 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 185, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:181, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150399, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 179} 2013-12-09 21:15:50,456 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:181 sent to queue://test_queue_z0 2013-12-09 21:15:50,456 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 179, Inflight: 0, pagedInMessages.size 0, enqueueCount: 179, dequeueCount: 0 2013-12-09 21:15:50,456 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 185} 2013-12-09 21:15:50,457 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 179 2013-12-09 21:15:50,457 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 186, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:182, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150457, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 180} 2013-12-09 21:15:50,522 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:182 sent to queue://test_queue_z0 2013-12-09 21:15:50,522 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 180, Inflight: 0, pagedInMessages.size 0, enqueueCount: 180, dequeueCount: 0 2013-12-09 21:15:50,522 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 186} 2013-12-09 21:15:50,523 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 180 2013-12-09 21:15:50,523 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 187, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:183, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150523, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 181} 2013-12-09 21:15:50,588 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:183 sent to queue://test_queue_z0 2013-12-09 21:15:50,588 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 181, Inflight: 0, pagedInMessages.size 0, enqueueCount: 181, dequeueCount: 0 2013-12-09 21:15:50,589 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 187} 2013-12-09 21:15:50,589 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 181 2013-12-09 21:15:50,589 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 188, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:184, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150589, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 182} 2013-12-09 21:15:50,646 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:184 sent to queue://test_queue_z0 2013-12-09 21:15:50,646 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 182, Inflight: 0, pagedInMessages.size 0, enqueueCount: 182, dequeueCount: 0 2013-12-09 21:15:50,647 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 188} 2013-12-09 21:15:50,647 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 182 2013-12-09 21:15:50,647 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 189, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:185, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150647, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 183} 2013-12-09 21:15:50,704 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:185 sent to queue://test_queue_z0 2013-12-09 21:15:50,704 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 183, Inflight: 0, pagedInMessages.size 0, enqueueCount: 183, dequeueCount: 0 2013-12-09 21:15:50,705 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 189} 2013-12-09 21:15:50,705 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 183 2013-12-09 21:15:50,706 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 190, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:186, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150705, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 184} 2013-12-09 21:15:50,762 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:186 sent to queue://test_queue_z0 2013-12-09 21:15:50,762 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 184, Inflight: 0, pagedInMessages.size 0, enqueueCount: 184, dequeueCount: 0 2013-12-09 21:15:50,763 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 190} 2013-12-09 21:15:50,763 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 184 2013-12-09 21:15:50,763 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 191, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:187, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150763, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 185} 2013-12-09 21:15:50,820 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:187 sent to queue://test_queue_z0 2013-12-09 21:15:50,821 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 185, Inflight: 0, pagedInMessages.size 0, enqueueCount: 185, dequeueCount: 0 2013-12-09 21:15:50,821 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 191} 2013-12-09 21:15:50,821 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 185 2013-12-09 21:15:50,822 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 192, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:188, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150821, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 186} 2013-12-09 21:15:50,878 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:188 sent to queue://test_queue_z0 2013-12-09 21:15:50,878 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 186, Inflight: 0, pagedInMessages.size 0, enqueueCount: 186, dequeueCount: 0 2013-12-09 21:15:50,879 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 192} 2013-12-09 21:15:50,879 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 186 2013-12-09 21:15:50,879 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 193, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:189, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150879, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 187} 2013-12-09 21:15:50,936 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:189 sent to queue://test_queue_z0 2013-12-09 21:15:50,936 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 187, Inflight: 0, pagedInMessages.size 0, enqueueCount: 187, dequeueCount: 0 2013-12-09 21:15:50,936 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 193} 2013-12-09 21:15:50,937 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 187 2013-12-09 21:15:50,937 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 194, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:190, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150937, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 188} 2013-12-09 21:15:50,994 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:190 sent to queue://test_queue_z0 2013-12-09 21:15:50,994 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 188, Inflight: 0, pagedInMessages.size 0, enqueueCount: 188, dequeueCount: 0 2013-12-09 21:15:50,994 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 194} 2013-12-09 21:15:50,995 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 188 2013-12-09 21:15:50,995 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 195, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:191, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150995, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 189} 2013-12-09 21:15:51,052 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:191 sent to queue://test_queue_z0 2013-12-09 21:15:51,052 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 189, Inflight: 0, pagedInMessages.size 0, enqueueCount: 189, dequeueCount: 0 2013-12-09 21:15:51,052 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 195} 2013-12-09 21:15:51,053 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 189 2013-12-09 21:15:51,053 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 196, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:192, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151053, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 190} 2013-12-09 21:15:51,110 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:192 sent to queue://test_queue_z0 2013-12-09 21:15:51,110 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 190, Inflight: 0, pagedInMessages.size 0, enqueueCount: 190, dequeueCount: 0 2013-12-09 21:15:51,110 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 196} 2013-12-09 21:15:51,111 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 190 2013-12-09 21:15:51,111 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 197, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:193, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151111, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 191} 2013-12-09 21:15:51,168 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:193 sent to queue://test_queue_z0 2013-12-09 21:15:51,168 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 191, Inflight: 0, pagedInMessages.size 0, enqueueCount: 191, dequeueCount: 0 2013-12-09 21:15:51,168 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 197} 2013-12-09 21:15:51,169 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 191 2013-12-09 21:15:51,169 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 198, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:194, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151169, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 192} 2013-12-09 21:15:51,226 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:194 sent to queue://test_queue_z0 2013-12-09 21:15:51,226 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 192, Inflight: 0, pagedInMessages.size 0, enqueueCount: 192, dequeueCount: 0 2013-12-09 21:15:51,227 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 198} 2013-12-09 21:15:51,227 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 192 2013-12-09 21:15:51,227 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 199, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:195, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151227, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 193} 2013-12-09 21:15:51,284 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:195 sent to queue://test_queue_z0 2013-12-09 21:15:51,284 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 193, Inflight: 0, pagedInMessages.size 0, enqueueCount: 193, dequeueCount: 0 2013-12-09 21:15:51,284 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 199} 2013-12-09 21:15:51,285 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 193 2013-12-09 21:15:51,285 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 200, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:196, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151285, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 194} 2013-12-09 21:15:51,342 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:196 sent to queue://test_queue_z0 2013-12-09 21:15:51,342 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 194, Inflight: 0, pagedInMessages.size 0, enqueueCount: 194, dequeueCount: 0 2013-12-09 21:15:51,342 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 200} 2013-12-09 21:15:51,343 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 194 2013-12-09 21:15:51,343 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 201, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:197, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151343, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 195} 2013-12-09 21:15:51,400 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:197 sent to queue://test_queue_z0 2013-12-09 21:15:51,400 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 195, Inflight: 0, pagedInMessages.size 0, enqueueCount: 195, dequeueCount: 0 2013-12-09 21:15:51,400 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 201} 2013-12-09 21:15:51,401 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 195 2013-12-09 21:15:51,401 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 202, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:198, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151401, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 196} 2013-12-09 21:15:51,454 [ Scheduled Task] DEBUG LeaseDatabaseLocker - coreActiveMQBroker1, lease keepAlive Query is UPDATE ACTIVEMQ_LOCK SET BROKER_NAME=?, TIME=? WHERE BROKER_NAME=? AND ID = 1 2013-12-09 21:15:51,458 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:198 sent to queue://test_queue_z0 2013-12-09 21:15:51,458 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 196, Inflight: 0, pagedInMessages.size 0, enqueueCount: 196, dequeueCount: 0 2013-12-09 21:15:51,458 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 202} 2013-12-09 21:15:51,459 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 196 2013-12-09 21:15:51,459 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 203, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:199, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151459, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 197} 2013-12-09 21:15:51,558 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:199 sent to queue://test_queue_z0 2013-12-09 21:15:51,558 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 197, Inflight: 0, pagedInMessages.size 0, enqueueCount: 197, dequeueCount: 0 2013-12-09 21:15:51,558 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 203} 2013-12-09 21:15:51,559 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 197 2013-12-09 21:15:51,559 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 204, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:200, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151559, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 198} 2013-12-09 21:15:51,615 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:200 sent to queue://test_queue_z0 2013-12-09 21:15:51,616 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 198, Inflight: 0, pagedInMessages.size 0, enqueueCount: 198, dequeueCount: 0 2013-12-09 21:15:51,616 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 204} 2013-12-09 21:15:51,616 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 198 2013-12-09 21:15:51,617 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 205, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:201, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151616, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 199} 2013-12-09 21:15:51,673 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:201 sent to queue://test_queue_z0 2013-12-09 21:15:51,674 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 199, Inflight: 0, pagedInMessages.size 0, enqueueCount: 199, dequeueCount: 0 2013-12-09 21:15:51,674 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 205} 2013-12-09 21:15:51,674 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 199 2013-12-09 21:15:51,675 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 206, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:202, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151675, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 200} 2013-12-09 21:15:51,731 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:202 sent to queue://test_queue_z0 2013-12-09 21:15:51,732 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 200, Inflight: 0, pagedInMessages.size 0, enqueueCount: 200, dequeueCount: 0 2013-12-09 21:15:51,732 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 206} 2013-12-09 21:15:51,732 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 200 2013-12-09 21:15:51,733 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 207, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:203, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151733, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 201} 2013-12-09 21:15:51,799 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:203 sent to queue://test_queue_z0 2013-12-09 21:15:51,800 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 200, Inflight: 0, pagedInMessages.size 0, enqueueCount: 201, dequeueCount: 0 2013-12-09 21:15:51,800 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 207} 2013-12-09 21:15:51,800 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 201 2013-12-09 21:15:51,800 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 208, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:204, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151800, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 202} 2013-12-09 21:15:51,857 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:204 sent to queue://test_queue_z0 2013-12-09 21:15:51,857 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 200, Inflight: 0, pagedInMessages.size 0, enqueueCount: 202, dequeueCount: 0 2013-12-09 21:15:51,857 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 208} 2013-12-09 21:15:51,858 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 202 2013-12-09 21:15:51,858 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 209, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:205, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151858, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 203} 2013-12-09 21:15:51,871 [ker1] Scheduler] DEBUG Queue - queue://test_queue_z0 expiring messages .. 2013-12-09 21:15:51,871 [ker1] Scheduler] DEBUG Queue - test_queue_z0 toPageIn: 200, Inflight: 0, pagedInMessages.size 0, enqueueCount: 202, dequeueCount: 0 2013-12-09 21:15:51,887 [ker1] Scheduler] DEBUG Queue - queue://test_queue_z0 expiring messages done. 2013-12-09 21:15:51,887 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 2, Inflight: 0, pagedInMessages.size 200, enqueueCount: 202, dequeueCount: 0 2013-12-09 21:15:51,915 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:205 sent to queue://test_queue_z0 2013-12-09 21:15:51,915 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 3, Inflight: 0, pagedInMessages.size 200, enqueueCount: 203, dequeueCount: 0 2013-12-09 21:15:51,916 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 209} 2013-12-09 21:15:51,916 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 203 2013-12-09 21:15:51,916 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 210, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:206, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151916, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 204} 2013-12-09 21:15:51,973 [.0.1:57996@1666] DEBUG Usage - default:memory:queue://test_queue_z0:memory: usage change from: 1% of available memory, to: 2% of available memory 2013-12-09 21:15:51,973 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:206 sent to queue://test_queue_z0 2013-12-09 21:15:51,974 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 4, Inflight: 0, pagedInMessages.size 200, enqueueCount: 204, dequeueCount: 0 2013-12-09 21:15:51,974 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 210} 2013-12-09 21:15:51,974 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 204 2013-12-09 21:15:51,974 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 211, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:207, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151974, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 205} 2013-12-09 21:15:52,039 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:207 sent to queue://test_queue_z0 2013-12-09 21:15:52,040 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 5, Inflight: 0, pagedInMessages.size 200, enqueueCount: 205, dequeueCount: 0 2013-12-09 21:15:52,040 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 211} 2013-12-09 21:15:52,040 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 205 2013-12-09 21:15:52,041 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 212, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:208, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152040, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 206} 2013-12-09 21:15:52,106 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:208 sent to queue://test_queue_z0 2013-12-09 21:15:52,106 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 6, Inflight: 0, pagedInMessages.size 200, enqueueCount: 206, dequeueCount: 0 2013-12-09 21:15:52,106 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 212} 2013-12-09 21:15:52,106 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 206 2013-12-09 21:15:52,107 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 213, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:209, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152107, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 207} 2013-12-09 21:15:52,213 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:209 sent to queue://test_queue_z0 2013-12-09 21:15:52,214 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 7, Inflight: 0, pagedInMessages.size 200, enqueueCount: 207, dequeueCount: 0 2013-12-09 21:15:52,214 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 213} 2013-12-09 21:15:52,214 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 207 2013-12-09 21:15:52,214 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 214, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:210, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152214, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 208} 2013-12-09 21:15:52,271 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:210 sent to queue://test_queue_z0 2013-12-09 21:15:52,271 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 8, Inflight: 0, pagedInMessages.size 200, enqueueCount: 208, dequeueCount: 0 2013-12-09 21:15:52,271 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 214} 2013-12-09 21:15:52,272 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 208 2013-12-09 21:15:52,272 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 215, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:211, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152272, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 209} 2013-12-09 21:15:52,379 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:211 sent to queue://test_queue_z0 2013-12-09 21:15:52,379 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 9, Inflight: 0, pagedInMessages.size 200, enqueueCount: 209, dequeueCount: 0 2013-12-09 21:15:52,379 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 215} 2013-12-09 21:15:52,380 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 209 2013-12-09 21:15:52,380 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 216, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:212, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152380, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 210} 2013-12-09 21:15:52,436 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:212 sent to queue://test_queue_z0 2013-12-09 21:15:52,437 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 10, Inflight: 0, pagedInMessages.size 200, enqueueCount: 210, dequeueCount: 0 2013-12-09 21:15:52,437 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 216} 2013-12-09 21:15:52,437 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 210 2013-12-09 21:15:52,438 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 217, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:213, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152437, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 211} 2013-12-09 21:15:52,494 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:213 sent to queue://test_queue_z0 2013-12-09 21:15:52,495 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 11, Inflight: 0, pagedInMessages.size 200, enqueueCount: 211, dequeueCount: 0 2013-12-09 21:15:52,495 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 217} 2013-12-09 21:15:52,495 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 211 2013-12-09 21:15:52,496 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 218, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:214, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152495, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 212} 2013-12-09 21:15:52,552 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:214 sent to queue://test_queue_z0 2013-12-09 21:15:52,553 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 12, Inflight: 0, pagedInMessages.size 200, enqueueCount: 212, dequeueCount: 0 2013-12-09 21:15:52,553 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 218} 2013-12-09 21:15:52,553 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 212 2013-12-09 21:15:52,554 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 219, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:215, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152553, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 213} 2013-12-09 21:15:52,611 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:215 sent to queue://test_queue_z0 2013-12-09 21:15:52,611 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 13, Inflight: 0, pagedInMessages.size 200, enqueueCount: 213, dequeueCount: 0 2013-12-09 21:15:52,611 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 219} 2013-12-09 21:15:52,611 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 213 2013-12-09 21:15:52,612 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 220, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:216, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152612, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 214} 2013-12-09 21:15:52,668 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:216 sent to queue://test_queue_z0 2013-12-09 21:15:52,669 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 14, Inflight: 0, pagedInMessages.size 200, enqueueCount: 214, dequeueCount: 0 2013-12-09 21:15:52,669 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 220} 2013-12-09 21:15:52,669 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 214 2013-12-09 21:15:52,670 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 221, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:217, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152670, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 215} 2013-12-09 21:15:52,726 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:217 sent to queue://test_queue_z0 2013-12-09 21:15:52,727 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 15, Inflight: 0, pagedInMessages.size 200, enqueueCount: 215, dequeueCount: 0 2013-12-09 21:15:52,727 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 221} 2013-12-09 21:15:52,727 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 215 2013-12-09 21:15:52,728 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 222, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:218, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152728, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 216} 2013-12-09 21:15:52,785 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:218 sent to queue://test_queue_z0 2013-12-09 21:15:52,785 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 16, Inflight: 0, pagedInMessages.size 200, enqueueCount: 216, dequeueCount: 0 2013-12-09 21:15:52,785 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 222} 2013-12-09 21:15:52,786 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 216 2013-12-09 21:15:52,786 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 223, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:219, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152786, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 217} 2013-12-09 21:15:52,842 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:219 sent to queue://test_queue_z0 2013-12-09 21:15:52,843 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 17, Inflight: 0, pagedInMessages.size 200, enqueueCount: 217, dequeueCount: 0 2013-12-09 21:15:52,843 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 223} 2013-12-09 21:15:52,843 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 217 2013-12-09 21:15:52,844 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 224, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:220, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152844, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 218} 2013-12-09 21:15:52,901 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:220 sent to queue://test_queue_z0 2013-12-09 21:15:52,901 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 18, Inflight: 0, pagedInMessages.size 200, enqueueCount: 218, dequeueCount: 0 2013-12-09 21:15:52,901 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 224} 2013-12-09 21:15:52,902 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 218 2013-12-09 21:15:52,902 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 225, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:221, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152902, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 219} 2013-12-09 21:15:52,958 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:221 sent to queue://test_queue_z0 2013-12-09 21:15:52,959 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 19, Inflight: 0, pagedInMessages.size 200, enqueueCount: 219, dequeueCount: 0 2013-12-09 21:15:52,959 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 225} 2013-12-09 21:15:52,959 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 219 2013-12-09 21:15:52,960 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 226, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:222, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152960, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 220} 2013-12-09 21:15:53,016 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:222 sent to queue://test_queue_z0 2013-12-09 21:15:53,017 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 20, Inflight: 0, pagedInMessages.size 200, enqueueCount: 220, dequeueCount: 0 2013-12-09 21:15:53,017 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 226} 2013-12-09 21:15:53,017 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 220 2013-12-09 21:15:53,018 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 227, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:223, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153018, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 221} 2013-12-09 21:15:53,074 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:223 sent to queue://test_queue_z0 2013-12-09 21:15:53,075 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 21, Inflight: 0, pagedInMessages.size 200, enqueueCount: 221, dequeueCount: 0 2013-12-09 21:15:53,075 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 227} 2013-12-09 21:15:53,075 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 221 2013-12-09 21:15:53,076 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 228, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:224, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153075, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 222} 2013-12-09 21:15:53,132 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:224 sent to queue://test_queue_z0 2013-12-09 21:15:53,133 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 22, Inflight: 0, pagedInMessages.size 200, enqueueCount: 222, dequeueCount: 0 2013-12-09 21:15:53,133 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 228} 2013-12-09 21:15:53,133 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 222 2013-12-09 21:15:53,134 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 229, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:225, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153133, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 223} 2013-12-09 21:15:53,190 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:225 sent to queue://test_queue_z0 2013-12-09 21:15:53,191 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 23, Inflight: 0, pagedInMessages.size 200, enqueueCount: 223, dequeueCount: 0 2013-12-09 21:15:53,191 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 229} 2013-12-09 21:15:53,191 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 223 2013-12-09 21:15:53,192 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 230, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:226, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153191, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 224} 2013-12-09 21:15:53,248 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:226 sent to queue://test_queue_z0 2013-12-09 21:15:53,249 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 24, Inflight: 0, pagedInMessages.size 200, enqueueCount: 224, dequeueCount: 0 2013-12-09 21:15:53,249 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 230} 2013-12-09 21:15:53,249 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 224 2013-12-09 21:15:53,250 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 231, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:227, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153249, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 225} 2013-12-09 21:15:53,306 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:227 sent to queue://test_queue_z0 2013-12-09 21:15:53,307 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 25, Inflight: 0, pagedInMessages.size 200, enqueueCount: 225, dequeueCount: 0 2013-12-09 21:15:53,307 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 231} 2013-12-09 21:15:53,307 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 225 2013-12-09 21:15:53,308 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 232, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:228, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153307, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 226} 2013-12-09 21:15:53,364 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:228 sent to queue://test_queue_z0 2013-12-09 21:15:53,365 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 26, Inflight: 0, pagedInMessages.size 200, enqueueCount: 226, dequeueCount: 0 2013-12-09 21:15:53,365 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 232} 2013-12-09 21:15:53,365 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 226 2013-12-09 21:15:53,366 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 233, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:229, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153366, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 227} 2013-12-09 21:15:53,422 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:229 sent to queue://test_queue_z0 2013-12-09 21:15:53,423 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 27, Inflight: 0, pagedInMessages.size 200, enqueueCount: 227, dequeueCount: 0 2013-12-09 21:15:53,423 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 233} 2013-12-09 21:15:53,423 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 227 2013-12-09 21:15:53,424 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 234, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:230, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153424, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 228} 2013-12-09 21:15:53,480 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:230 sent to queue://test_queue_z0 2013-12-09 21:15:53,481 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 28, Inflight: 0, pagedInMessages.size 200, enqueueCount: 228, dequeueCount: 0 2013-12-09 21:15:53,481 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 234} 2013-12-09 21:15:53,481 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 228 2013-12-09 21:15:53,482 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 235, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:231, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153481, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 229} 2013-12-09 21:15:53,538 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:231 sent to queue://test_queue_z0 2013-12-09 21:15:53,539 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 29, Inflight: 0, pagedInMessages.size 200, enqueueCount: 229, dequeueCount: 0 2013-12-09 21:15:53,539 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 235} 2013-12-09 21:15:53,539 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 229 2013-12-09 21:15:53,540 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 236, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:232, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153540, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 230} 2013-12-09 21:15:53,596 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:232 sent to queue://test_queue_z0 2013-12-09 21:15:53,597 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 30, Inflight: 0, pagedInMessages.size 200, enqueueCount: 230, dequeueCount: 0 2013-12-09 21:15:53,597 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 236} 2013-12-09 21:15:53,597 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 230 2013-12-09 21:15:53,598 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 237, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:233, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153598, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 231} 2013-12-09 21:15:53,654 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:233 sent to queue://test_queue_z0 2013-12-09 21:15:53,655 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 31, Inflight: 0, pagedInMessages.size 200, enqueueCount: 231, dequeueCount: 0 2013-12-09 21:15:53,655 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 237} 2013-12-09 21:15:53,655 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 231 2013-12-09 21:15:53,655 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 238, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:234, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153655, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 232} 2013-12-09 21:15:53,712 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:234 sent to queue://test_queue_z0 2013-12-09 21:15:53,713 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 32, Inflight: 0, pagedInMessages.size 200, enqueueCount: 232, dequeueCount: 0 2013-12-09 21:15:53,713 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 238} 2013-12-09 21:15:53,713 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 232 2013-12-09 21:15:53,713 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 239, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:235, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153713, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 233} 2013-12-09 21:15:53,762 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:235 sent to queue://test_queue_z0 2013-12-09 21:15:53,762 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 33, Inflight: 0, pagedInMessages.size 200, enqueueCount: 233, dequeueCount: 0 2013-12-09 21:15:53,762 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 239} 2013-12-09 21:15:53,763 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 233 2013-12-09 21:15:53,763 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 240, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:236, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153763, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 234} 2013-12-09 21:15:53,820 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:236 sent to queue://test_queue_z0 2013-12-09 21:15:53,821 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 34, Inflight: 0, pagedInMessages.size 200, enqueueCount: 234, dequeueCount: 0 2013-12-09 21:15:53,821 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 240} 2013-12-09 21:15:53,821 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 234 2013-12-09 21:15:53,822 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 241, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:237, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153821, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 235} 2013-12-09 21:15:53,878 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:237 sent to queue://test_queue_z0 2013-12-09 21:15:53,878 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 35, Inflight: 0, pagedInMessages.size 200, enqueueCount: 235, dequeueCount: 0 2013-12-09 21:15:53,878 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 241} 2013-12-09 21:15:53,879 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 235 2013-12-09 21:15:53,879 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 242, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:238, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153879, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 236} 2013-12-09 21:15:53,979 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:238 sent to queue://test_queue_z0 2013-12-09 21:15:53,979 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 36, Inflight: 0, pagedInMessages.size 200, enqueueCount: 236, dequeueCount: 0 2013-12-09 21:15:53,979 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 242} 2013-12-09 21:15:53,980 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 236 2013-12-09 21:15:53,980 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 243, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:239, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153980, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 237} 2013-12-09 21:15:54,086 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:239 sent to queue://test_queue_z0 2013-12-09 21:15:54,087 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 37, Inflight: 0, pagedInMessages.size 200, enqueueCount: 237, dequeueCount: 0 2013-12-09 21:15:54,087 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 243} 2013-12-09 21:15:54,087 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 237 2013-12-09 21:15:54,088 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 244, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:240, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154087, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 238} 2013-12-09 21:15:54,152 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:240 sent to queue://test_queue_z0 2013-12-09 21:15:54,153 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 38, Inflight: 0, pagedInMessages.size 200, enqueueCount: 238, dequeueCount: 0 2013-12-09 21:15:54,153 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 244} 2013-12-09 21:15:54,153 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 238 2013-12-09 21:15:54,154 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 245, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:241, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154154, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 239} 2013-12-09 21:15:54,210 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:241 sent to queue://test_queue_z0 2013-12-09 21:15:54,211 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 39, Inflight: 0, pagedInMessages.size 200, enqueueCount: 239, dequeueCount: 0 2013-12-09 21:15:54,211 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 245} 2013-12-09 21:15:54,211 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 239 2013-12-09 21:15:54,212 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 246, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:242, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154212, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 240} 2013-12-09 21:15:54,268 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:242 sent to queue://test_queue_z0 2013-12-09 21:15:54,269 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 40, Inflight: 0, pagedInMessages.size 200, enqueueCount: 240, dequeueCount: 0 2013-12-09 21:15:54,269 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 246} 2013-12-09 21:15:54,269 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 240 2013-12-09 21:15:54,270 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 247, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:243, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154269, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 241} 2013-12-09 21:15:54,326 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:243 sent to queue://test_queue_z0 2013-12-09 21:15:54,327 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 41, Inflight: 0, pagedInMessages.size 200, enqueueCount: 241, dequeueCount: 0 2013-12-09 21:15:54,327 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 247} 2013-12-09 21:15:54,327 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 241 2013-12-09 21:15:54,328 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 248, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:244, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154327, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 242} 2013-12-09 21:15:54,384 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:244 sent to queue://test_queue_z0 2013-12-09 21:15:54,385 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 42, Inflight: 0, pagedInMessages.size 200, enqueueCount: 242, dequeueCount: 0 2013-12-09 21:15:54,385 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 248} 2013-12-09 21:15:54,386 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 242 2013-12-09 21:15:54,386 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 249, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:245, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154386, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 243} 2013-12-09 21:15:54,442 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:245 sent to queue://test_queue_z0 2013-12-09 21:15:54,443 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 43, Inflight: 0, pagedInMessages.size 200, enqueueCount: 243, dequeueCount: 0 2013-12-09 21:15:54,443 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 249} 2013-12-09 21:15:54,443 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 243 2013-12-09 21:15:54,444 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 250, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:246, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154443, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 244} 2013-12-09 21:15:54,500 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:246 sent to queue://test_queue_z0 2013-12-09 21:15:54,501 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 44, Inflight: 0, pagedInMessages.size 200, enqueueCount: 244, dequeueCount: 0 2013-12-09 21:15:54,501 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 250} 2013-12-09 21:15:54,501 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 244 2013-12-09 21:15:54,502 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 251, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:247, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154502, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 245} 2013-12-09 21:15:54,558 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:247 sent to queue://test_queue_z0 2013-12-09 21:15:54,559 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 45, Inflight: 0, pagedInMessages.size 200, enqueueCount: 245, dequeueCount: 0 2013-12-09 21:15:54,559 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 251} 2013-12-09 21:15:54,559 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 245 2013-12-09 21:15:54,559 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 252, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:248, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154559, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 246} 2013-12-09 21:15:54,616 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:248 sent to queue://test_queue_z0 2013-12-09 21:15:54,617 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 46, Inflight: 0, pagedInMessages.size 200, enqueueCount: 246, dequeueCount: 0 2013-12-09 21:15:54,617 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 252} 2013-12-09 21:15:54,618 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 246 2013-12-09 21:15:54,618 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 253, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:249, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154618, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 247} 2013-12-09 21:15:54,674 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:249 sent to queue://test_queue_z0 2013-12-09 21:15:54,675 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 47, Inflight: 0, pagedInMessages.size 200, enqueueCount: 247, dequeueCount: 0 2013-12-09 21:15:54,675 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 253} 2013-12-09 21:15:54,675 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 247 2013-12-09 21:15:54,675 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 254, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:250, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154675, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 248} 2013-12-09 21:15:54,732 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:250 sent to queue://test_queue_z0 2013-12-09 21:15:54,733 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 48, Inflight: 0, pagedInMessages.size 200, enqueueCount: 248, dequeueCount: 0 2013-12-09 21:15:54,733 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 254} 2013-12-09 21:15:54,734 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 248 2013-12-09 21:15:54,734 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 255, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:251, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154734, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 249} 2013-12-09 21:15:54,790 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:251 sent to queue://test_queue_z0 2013-12-09 21:15:54,791 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 49, Inflight: 0, pagedInMessages.size 200, enqueueCount: 249, dequeueCount: 0 2013-12-09 21:15:54,791 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 255} 2013-12-09 21:15:54,791 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 249 2013-12-09 21:15:54,792 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 256, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:252, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154792, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 250} 2013-12-09 21:15:54,848 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:252 sent to queue://test_queue_z0 2013-12-09 21:15:54,849 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 50, Inflight: 0, pagedInMessages.size 200, enqueueCount: 250, dequeueCount: 0 2013-12-09 21:15:54,849 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 256} 2013-12-09 21:15:54,849 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 250 2013-12-09 21:15:54,850 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 257, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:253, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154850, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 251} 2013-12-09 21:15:54,906 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:253 sent to queue://test_queue_z0 2013-12-09 21:15:54,907 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 51, Inflight: 0, pagedInMessages.size 200, enqueueCount: 251, dequeueCount: 0 2013-12-09 21:15:54,907 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 257} 2013-12-09 21:15:54,907 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 251 2013-12-09 21:15:54,908 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 258, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:254, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154907, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 252} 2013-12-09 21:15:54,964 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:254 sent to queue://test_queue_z0 2013-12-09 21:15:54,965 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 52, Inflight: 0, pagedInMessages.size 200, enqueueCount: 252, dequeueCount: 0 2013-12-09 21:15:54,965 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 258} 2013-12-09 21:15:54,965 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 252 2013-12-09 21:15:54,966 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 259, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:255, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154965, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 253} 2013-12-09 21:15:55,022 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:255 sent to queue://test_queue_z0 2013-12-09 21:15:55,023 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 53, Inflight: 0, pagedInMessages.size 200, enqueueCount: 253, dequeueCount: 0 2013-12-09 21:15:55,023 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 259} 2013-12-09 21:15:55,024 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 253 2013-12-09 21:15:55,024 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 260, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:256, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155024, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 254} 2013-12-09 21:15:55,080 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:256 sent to queue://test_queue_z0 2013-12-09 21:15:55,081 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 54, Inflight: 0, pagedInMessages.size 200, enqueueCount: 254, dequeueCount: 0 2013-12-09 21:15:55,081 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 260} 2013-12-09 21:15:55,081 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 254 2013-12-09 21:15:55,082 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 261, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:257, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155081, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 255} 2013-12-09 21:15:55,138 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:257 sent to queue://test_queue_z0 2013-12-09 21:15:55,139 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 55, Inflight: 0, pagedInMessages.size 200, enqueueCount: 255, dequeueCount: 0 2013-12-09 21:15:55,139 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 261} 2013-12-09 21:15:55,139 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 255 2013-12-09 21:15:55,140 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 262, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:258, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155140, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 256} 2013-12-09 21:15:55,196 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:258 sent to queue://test_queue_z0 2013-12-09 21:15:55,196 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 56, Inflight: 0, pagedInMessages.size 200, enqueueCount: 256, dequeueCount: 0 2013-12-09 21:15:55,197 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 262} 2013-12-09 21:15:55,197 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 256 2013-12-09 21:15:55,197 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 263, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:259, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155197, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 257} 2013-12-09 21:15:55,254 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:259 sent to queue://test_queue_z0 2013-12-09 21:15:55,255 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 57, Inflight: 0, pagedInMessages.size 200, enqueueCount: 257, dequeueCount: 0 2013-12-09 21:15:55,255 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 263} 2013-12-09 21:15:55,255 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 257 2013-12-09 21:15:55,255 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 264, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:260, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155255, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 258} 2013-12-09 21:15:55,312 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:260 sent to queue://test_queue_z0 2013-12-09 21:15:55,313 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 58, Inflight: 0, pagedInMessages.size 200, enqueueCount: 258, dequeueCount: 0 2013-12-09 21:15:55,313 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 264} 2013-12-09 21:15:55,313 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 258 2013-12-09 21:15:55,313 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 265, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:261, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155313, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 259} 2013-12-09 21:15:55,370 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:261 sent to queue://test_queue_z0 2013-12-09 21:15:55,371 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 59, Inflight: 0, pagedInMessages.size 200, enqueueCount: 259, dequeueCount: 0 2013-12-09 21:15:55,371 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 265} 2013-12-09 21:15:55,371 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 259 2013-12-09 21:15:55,371 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 266, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:262, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155371, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 260} 2013-12-09 21:15:55,428 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:262 sent to queue://test_queue_z0 2013-12-09 21:15:55,428 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 60, Inflight: 0, pagedInMessages.size 200, enqueueCount: 260, dequeueCount: 0 2013-12-09 21:15:55,429 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 266} 2013-12-09 21:15:55,429 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 260 2013-12-09 21:15:55,429 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 267, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:263, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155429, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 261} 2013-12-09 21:15:55,486 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:263 sent to queue://test_queue_z0 2013-12-09 21:15:55,487 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 61, Inflight: 0, pagedInMessages.size 200, enqueueCount: 261, dequeueCount: 0 2013-12-09 21:15:55,487 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 267} 2013-12-09 21:15:55,487 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 261 2013-12-09 21:15:55,487 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 268, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:264, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155487, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 262} 2013-12-09 21:15:55,544 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:264 sent to queue://test_queue_z0 2013-12-09 21:15:55,545 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 62, Inflight: 0, pagedInMessages.size 200, enqueueCount: 262, dequeueCount: 0 2013-12-09 21:15:55,545 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 268} 2013-12-09 21:15:55,545 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 262 2013-12-09 21:15:55,545 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 269, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:265, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155545, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 263} 2013-12-09 21:15:55,594 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:265 sent to queue://test_queue_z0 2013-12-09 21:15:55,594 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 63, Inflight: 0, pagedInMessages.size 200, enqueueCount: 263, dequeueCount: 0 2013-12-09 21:15:55,594 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 269} 2013-12-09 21:15:55,595 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 263 2013-12-09 21:15:55,595 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 270, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:266, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155595, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 264} 2013-12-09 21:15:55,652 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:266 sent to queue://test_queue_z0 2013-12-09 21:15:55,652 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 64, Inflight: 0, pagedInMessages.size 200, enqueueCount: 264, dequeueCount: 0 2013-12-09 21:15:55,652 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 270} 2013-12-09 21:15:55,653 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 264 2013-12-09 21:15:55,653 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 271, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:267, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155653, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 265} 2013-12-09 21:15:55,702 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:267 sent to queue://test_queue_z0 2013-12-09 21:15:55,702 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 65, Inflight: 0, pagedInMessages.size 200, enqueueCount: 265, dequeueCount: 0 2013-12-09 21:15:55,702 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 271} 2013-12-09 21:15:55,703 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 265 2013-12-09 21:15:55,703 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 272, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:268, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155703, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 266} 2013-12-09 21:15:55,759 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:268 sent to queue://test_queue_z0 2013-12-09 21:15:55,760 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 66, Inflight: 0, pagedInMessages.size 200, enqueueCount: 266, dequeueCount: 0 2013-12-09 21:15:55,760 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 272} 2013-12-09 21:15:55,760 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 266 2013-12-09 21:15:55,761 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 273, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:269, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155761, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 267} 2013-12-09 21:15:55,818 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:269 sent to queue://test_queue_z0 2013-12-09 21:15:55,818 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 67, Inflight: 0, pagedInMessages.size 200, enqueueCount: 267, dequeueCount: 0 2013-12-09 21:15:55,818 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 273} 2013-12-09 21:15:55,819 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 267 2013-12-09 21:15:55,819 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 274, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:270, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155819, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 268} 2013-12-09 21:15:55,876 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:270 sent to queue://test_queue_z0 2013-12-09 21:15:55,876 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 68, Inflight: 0, pagedInMessages.size 200, enqueueCount: 268, dequeueCount: 0 2013-12-09 21:15:55,876 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 274} 2013-12-09 21:15:55,877 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 268 2013-12-09 21:15:55,877 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 275, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:271, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155877, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 269} 2013-12-09 21:15:55,933 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:271 sent to queue://test_queue_z0 2013-12-09 21:15:55,934 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 69, Inflight: 0, pagedInMessages.size 200, enqueueCount: 269, dequeueCount: 0 2013-12-09 21:15:55,934 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 275} 2013-12-09 21:15:55,934 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 269 2013-12-09 21:15:55,935 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 276, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:272, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155935, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 270} 2013-12-09 21:15:56,000 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:272 sent to queue://test_queue_z0 2013-12-09 21:15:56,000 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 70, Inflight: 0, pagedInMessages.size 200, enqueueCount: 270, dequeueCount: 0 2013-12-09 21:15:56,000 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 276} 2013-12-09 21:15:56,001 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 270 2013-12-09 21:15:56,001 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 277, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:273, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156001, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 271} 2013-12-09 21:15:56,067 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:273 sent to queue://test_queue_z0 2013-12-09 21:15:56,068 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 71, Inflight: 0, pagedInMessages.size 200, enqueueCount: 271, dequeueCount: 0 2013-12-09 21:15:56,068 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 277} 2013-12-09 21:15:56,069 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 271 2013-12-09 21:15:56,069 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 278, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:274, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156069, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 272} 2013-12-09 21:15:56,125 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:274 sent to queue://test_queue_z0 2013-12-09 21:15:56,126 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 72, Inflight: 0, pagedInMessages.size 200, enqueueCount: 272, dequeueCount: 0 2013-12-09 21:15:56,126 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 278} 2013-12-09 21:15:56,126 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 272 2013-12-09 21:15:56,127 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 279, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:275, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156127, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 273} 2013-12-09 21:15:56,184 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:275 sent to queue://test_queue_z0 2013-12-09 21:15:56,184 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 73, Inflight: 0, pagedInMessages.size 200, enqueueCount: 273, dequeueCount: 0 2013-12-09 21:15:56,184 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 279} 2013-12-09 21:15:56,185 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 273 2013-12-09 21:15:56,185 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 280, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:276, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156185, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 274} 2013-12-09 21:15:56,242 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:276 sent to queue://test_queue_z0 2013-12-09 21:15:56,242 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 74, Inflight: 0, pagedInMessages.size 200, enqueueCount: 274, dequeueCount: 0 2013-12-09 21:15:56,242 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 280} 2013-12-09 21:15:56,243 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 274 2013-12-09 21:15:56,243 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 281, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:277, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156243, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 275} 2013-12-09 21:15:56,300 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:277 sent to queue://test_queue_z0 2013-12-09 21:15:56,300 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 75, Inflight: 0, pagedInMessages.size 200, enqueueCount: 275, dequeueCount: 0 2013-12-09 21:15:56,300 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 281} 2013-12-09 21:15:56,301 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 275 2013-12-09 21:15:56,301 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 282, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:278, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156301, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 276} 2013-12-09 21:15:56,357 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:278 sent to queue://test_queue_z0 2013-12-09 21:15:56,358 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 76, Inflight: 0, pagedInMessages.size 200, enqueueCount: 276, dequeueCount: 0 2013-12-09 21:15:56,358 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 282} 2013-12-09 21:15:56,358 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 276 2013-12-09 21:15:56,359 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 283, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:279, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156358, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 277} 2013-12-09 21:15:56,407 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:279 sent to queue://test_queue_z0 2013-12-09 21:15:56,407 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 77, Inflight: 0, pagedInMessages.size 200, enqueueCount: 277, dequeueCount: 0 2013-12-09 21:15:56,408 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 283} 2013-12-09 21:15:56,408 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 277 2013-12-09 21:15:56,408 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 284, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:280, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156408, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 278} 2013-12-09 21:15:56,454 [ Scheduled Task] DEBUG LeaseDatabaseLocker - coreActiveMQBroker1, lease keepAlive Query is UPDATE ACTIVEMQ_LOCK SET BROKER_NAME=?, TIME=? WHERE BROKER_NAME=? AND ID = 1 2013-12-09 21:15:56,457 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:280 sent to queue://test_queue_z0 2013-12-09 21:15:56,457 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 78, Inflight: 0, pagedInMessages.size 200, enqueueCount: 278, dequeueCount: 0 2013-12-09 21:15:56,457 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 284} 2013-12-09 21:15:56,458 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 278 2013-12-09 21:15:56,458 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 285, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:281, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156458, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 279} 2013-12-09 21:15:56,556 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:281 sent to queue://test_queue_z0 2013-12-09 21:15:56,557 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 79, Inflight: 0, pagedInMessages.size 200, enqueueCount: 279, dequeueCount: 0 2013-12-09 21:15:56,557 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 285} 2013-12-09 21:15:56,557 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 279 2013-12-09 21:15:56,558 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 286, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:282, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156557, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 280} 2013-12-09 21:15:56,614 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:282 sent to queue://test_queue_z0 2013-12-09 21:15:56,615 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 80, Inflight: 0, pagedInMessages.size 200, enqueueCount: 280, dequeueCount: 0 2013-12-09 21:15:56,615 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 286} 2013-12-09 21:15:56,615 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 280 2013-12-09 21:15:56,615 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 287, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:283, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156615, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 281} 2013-12-09 21:15:56,672 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:283 sent to queue://test_queue_z0 2013-12-09 21:15:56,673 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 81, Inflight: 0, pagedInMessages.size 200, enqueueCount: 281, dequeueCount: 0 2013-12-09 21:15:56,673 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 287} 2013-12-09 21:15:56,673 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 281 2013-12-09 21:15:56,674 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 288, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:284, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156673, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 282} 2013-12-09 21:15:56,722 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:284 sent to queue://test_queue_z0 2013-12-09 21:15:56,723 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 82, Inflight: 0, pagedInMessages.size 200, enqueueCount: 282, dequeueCount: 0 2013-12-09 21:15:56,723 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 288} 2013-12-09 21:15:56,723 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 282 2013-12-09 21:15:56,723 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 289, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:285, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156723, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 283} 2013-12-09 21:15:56,780 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:285 sent to queue://test_queue_z0 2013-12-09 21:15:56,780 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 83, Inflight: 0, pagedInMessages.size 200, enqueueCount: 283, dequeueCount: 0 2013-12-09 21:15:56,781 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 289} 2013-12-09 21:15:56,781 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 283 2013-12-09 21:15:56,781 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 290, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:286, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156781, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 284} 2013-12-09 21:15:56,838 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:286 sent to queue://test_queue_z0 2013-12-09 21:15:56,838 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 84, Inflight: 0, pagedInMessages.size 200, enqueueCount: 284, dequeueCount: 0 2013-12-09 21:15:56,839 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 290} 2013-12-09 21:15:56,839 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 284 2013-12-09 21:15:56,839 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 291, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:287, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156839, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 285} 2013-12-09 21:15:56,896 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:287 sent to queue://test_queue_z0 2013-12-09 21:15:56,896 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 85, Inflight: 0, pagedInMessages.size 200, enqueueCount: 285, dequeueCount: 0 2013-12-09 21:15:56,896 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 291} 2013-12-09 21:15:56,897 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 285 2013-12-09 21:15:56,897 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 292, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:288, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156897, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 286} 2013-12-09 21:15:56,954 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:288 sent to queue://test_queue_z0 2013-12-09 21:15:56,955 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 86, Inflight: 0, pagedInMessages.size 200, enqueueCount: 286, dequeueCount: 0 2013-12-09 21:15:56,955 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 292} 2013-12-09 21:15:56,955 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 286 2013-12-09 21:15:56,956 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 293, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:289, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156955, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 287} 2013-12-09 21:15:57,012 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:289 sent to queue://test_queue_z0 2013-12-09 21:15:57,012 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 87, Inflight: 0, pagedInMessages.size 200, enqueueCount: 287, dequeueCount: 0 2013-12-09 21:15:57,013 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 293} 2013-12-09 21:15:57,013 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 287 2013-12-09 21:15:57,013 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 294, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:290, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157013, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 288} 2013-12-09 21:15:57,070 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:290 sent to queue://test_queue_z0 2013-12-09 21:15:57,070 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 88, Inflight: 0, pagedInMessages.size 200, enqueueCount: 288, dequeueCount: 0 2013-12-09 21:15:57,071 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 294} 2013-12-09 21:15:57,071 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 288 2013-12-09 21:15:57,071 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 295, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:291, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157071, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 289} 2013-12-09 21:15:57,128 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:291 sent to queue://test_queue_z0 2013-12-09 21:15:57,128 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 89, Inflight: 0, pagedInMessages.size 200, enqueueCount: 289, dequeueCount: 0 2013-12-09 21:15:57,128 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 295} 2013-12-09 21:15:57,129 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 289 2013-12-09 21:15:57,129 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 296, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:292, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157129, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 290} 2013-12-09 21:15:57,186 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:292 sent to queue://test_queue_z0 2013-12-09 21:15:57,187 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 90, Inflight: 0, pagedInMessages.size 200, enqueueCount: 290, dequeueCount: 0 2013-12-09 21:15:57,187 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 296} 2013-12-09 21:15:57,187 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 290 2013-12-09 21:15:57,188 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 297, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:293, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157187, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 291} 2013-12-09 21:15:57,244 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:293 sent to queue://test_queue_z0 2013-12-09 21:15:57,244 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 91, Inflight: 0, pagedInMessages.size 200, enqueueCount: 291, dequeueCount: 0 2013-12-09 21:15:57,244 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 297} 2013-12-09 21:15:57,245 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 291 2013-12-09 21:15:57,245 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 298, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:294, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157245, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 292} 2013-12-09 21:15:57,302 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:294 sent to queue://test_queue_z0 2013-12-09 21:15:57,302 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 92, Inflight: 0, pagedInMessages.size 200, enqueueCount: 292, dequeueCount: 0 2013-12-09 21:15:57,302 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 298} 2013-12-09 21:15:57,303 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 292 2013-12-09 21:15:57,303 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 299, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:295, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157303, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 293} 2013-12-09 21:15:57,360 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:295 sent to queue://test_queue_z0 2013-12-09 21:15:57,360 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 93, Inflight: 0, pagedInMessages.size 200, enqueueCount: 293, dequeueCount: 0 2013-12-09 21:15:57,360 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 299} 2013-12-09 21:15:57,361 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 293 2013-12-09 21:15:57,361 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 300, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:296, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157361, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 294} 2013-12-09 21:15:57,418 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:296 sent to queue://test_queue_z0 2013-12-09 21:15:57,419 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 94, Inflight: 0, pagedInMessages.size 200, enqueueCount: 294, dequeueCount: 0 2013-12-09 21:15:57,419 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 300} 2013-12-09 21:15:57,420 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 294 2013-12-09 21:15:57,420 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 301, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:297, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157420, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 295} 2013-12-09 21:15:57,476 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:297 sent to queue://test_queue_z0 2013-12-09 21:15:57,476 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 95, Inflight: 0, pagedInMessages.size 200, enqueueCount: 295, dequeueCount: 0 2013-12-09 21:15:57,476 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 301} 2013-12-09 21:15:57,477 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 295 2013-12-09 21:15:57,477 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 302, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:298, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157477, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 296} 2013-12-09 21:15:57,534 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:298 sent to queue://test_queue_z0 2013-12-09 21:15:57,535 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 96, Inflight: 0, pagedInMessages.size 200, enqueueCount: 296, dequeueCount: 0 2013-12-09 21:15:57,535 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 302} 2013-12-09 21:15:57,535 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 296 2013-12-09 21:15:57,536 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 303, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:299, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157535, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 297} 2013-12-09 21:15:57,592 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:299 sent to queue://test_queue_z0 2013-12-09 21:15:57,592 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 97, Inflight: 0, pagedInMessages.size 200, enqueueCount: 297, dequeueCount: 0 2013-12-09 21:15:57,592 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 303} 2013-12-09 21:15:57,593 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 297 2013-12-09 21:15:57,593 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 304, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:300, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157593, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 298} 2013-12-09 21:15:57,650 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:300 sent to queue://test_queue_z0 2013-12-09 21:15:57,650 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 98, Inflight: 0, pagedInMessages.size 200, enqueueCount: 298, dequeueCount: 0 2013-12-09 21:15:57,651 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 304} 2013-12-09 21:15:57,651 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 298 2013-12-09 21:15:57,651 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 305, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:301, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157651, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 299} 2013-12-09 21:15:57,716 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:301 sent to queue://test_queue_z0 2013-12-09 21:15:57,716 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 99, Inflight: 0, pagedInMessages.size 200, enqueueCount: 299, dequeueCount: 0 2013-12-09 21:15:57,717 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 305} 2013-12-09 21:15:57,717 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 299 2013-12-09 21:15:57,717 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 306, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:302, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157717, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 300} 2013-12-09 21:15:57,782 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:302 sent to queue://test_queue_z0 2013-12-09 21:15:57,783 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 100, Inflight: 0, pagedInMessages.size 200, enqueueCount: 300, dequeueCount: 0 2013-12-09 21:15:57,783 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 306} 2013-12-09 21:15:57,783 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 300 2013-12-09 21:15:57,784 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 307, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:303, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157784, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 301} 2013-12-09 21:15:57,849 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:303 sent to queue://test_queue_z0 2013-12-09 21:15:57,849 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 101, Inflight: 0, pagedInMessages.size 200, enqueueCount: 301, dequeueCount: 0 2013-12-09 21:15:57,849 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 307} 2013-12-09 21:15:57,850 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 301 2013-12-09 21:15:57,850 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 308, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:304, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157850, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 302} 2013-12-09 21:15:57,915 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:304 sent to queue://test_queue_z0 2013-12-09 21:15:57,916 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 102, Inflight: 0, pagedInMessages.size 200, enqueueCount: 302, dequeueCount: 0 2013-12-09 21:15:57,916 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 308} 2013-12-09 21:15:57,916 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 302 2013-12-09 21:15:57,916 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 309, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:305, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157916, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 303} 2013-12-09 21:15:57,981 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:305 sent to queue://test_queue_z0 2013-12-09 21:15:57,982 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 103, Inflight: 0, pagedInMessages.size 200, enqueueCount: 303, dequeueCount: 0 2013-12-09 21:15:57,982 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 309} 2013-12-09 21:15:57,982 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 303 2013-12-09 21:15:57,982 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 310, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:306, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157982, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 304} 2013-12-09 21:15:58,039 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:306 sent to queue://test_queue_z0 2013-12-09 21:15:58,039 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 104, Inflight: 0, pagedInMessages.size 200, enqueueCount: 304, dequeueCount: 0 2013-12-09 21:15:58,040 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 310} 2013-12-09 21:15:58,040 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 304 2013-12-09 21:15:58,041 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 311, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:307, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158040, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 305} 2013-12-09 21:15:58,097 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:307 sent to queue://test_queue_z0 2013-12-09 21:15:58,097 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 105, Inflight: 0, pagedInMessages.size 200, enqueueCount: 305, dequeueCount: 0 2013-12-09 21:15:58,098 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 311} 2013-12-09 21:15:58,098 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 305 2013-12-09 21:15:58,098 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 312, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:308, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158098, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 306} 2013-12-09 21:15:58,165 [.0.1:57996@1666] DEBUG Usage - default:memory:queue://test_queue_z0:memory: usage change from: 2% of available memory, to: 3% of available memory 2013-12-09 21:15:58,165 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:308 sent to queue://test_queue_z0 2013-12-09 21:15:58,165 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 106, Inflight: 0, pagedInMessages.size 200, enqueueCount: 306, dequeueCount: 0 2013-12-09 21:15:58,166 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 312} 2013-12-09 21:15:58,166 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 306 2013-12-09 21:15:58,166 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 313, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:309, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158166, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 307} 2013-12-09 21:15:58,223 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:309 sent to queue://test_queue_z0 2013-12-09 21:15:58,223 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 107, Inflight: 0, pagedInMessages.size 200, enqueueCount: 307, dequeueCount: 0 2013-12-09 21:15:58,223 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 313} 2013-12-09 21:15:58,224 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 307 2013-12-09 21:15:58,224 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 314, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:310, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158224, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 308} 2013-12-09 21:15:58,281 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:310 sent to queue://test_queue_z0 2013-12-09 21:15:58,281 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 108, Inflight: 0, pagedInMessages.size 200, enqueueCount: 308, dequeueCount: 0 2013-12-09 21:15:58,282 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 314} 2013-12-09 21:15:58,282 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 308 2013-12-09 21:15:58,282 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 315, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:311, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158282, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 309} 2013-12-09 21:15:58,339 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:311 sent to queue://test_queue_z0 2013-12-09 21:15:58,339 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 109, Inflight: 0, pagedInMessages.size 200, enqueueCount: 309, dequeueCount: 0 2013-12-09 21:15:58,339 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 315} 2013-12-09 21:15:58,340 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 309 2013-12-09 21:15:58,340 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 316, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:312, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158340, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 310} 2013-12-09 21:15:58,397 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:312 sent to queue://test_queue_z0 2013-12-09 21:15:58,397 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 110, Inflight: 0, pagedInMessages.size 200, enqueueCount: 310, dequeueCount: 0 2013-12-09 21:15:58,397 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 316} 2013-12-09 21:15:58,398 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 310 2013-12-09 21:15:58,398 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 317, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:313, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158398, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 311} 2013-12-09 21:15:58,455 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:313 sent to queue://test_queue_z0 2013-12-09 21:15:58,455 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 111, Inflight: 0, pagedInMessages.size 200, enqueueCount: 311, dequeueCount: 0 2013-12-09 21:15:58,455 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 317} 2013-12-09 21:15:58,456 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 311 2013-12-09 21:15:58,456 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 318, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:314, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158456, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 312} 2013-12-09 21:15:58,513 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:314 sent to queue://test_queue_z0 2013-12-09 21:15:58,513 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 112, Inflight: 0, pagedInMessages.size 200, enqueueCount: 312, dequeueCount: 0 2013-12-09 21:15:58,513 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 318} 2013-12-09 21:15:58,514 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 312 2013-12-09 21:15:58,514 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 319, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:315, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158514, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 313} 2013-12-09 21:15:58,612 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:315 sent to queue://test_queue_z0 2013-12-09 21:15:58,613 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 113, Inflight: 0, pagedInMessages.size 200, enqueueCount: 313, dequeueCount: 0 2013-12-09 21:15:58,613 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 319} 2013-12-09 21:15:58,613 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 313 2013-12-09 21:15:58,613 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 320, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:316, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158613, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 314} 2013-12-09 21:15:58,695 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:316 sent to queue://test_queue_z0 2013-12-09 21:15:58,695 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 114, Inflight: 0, pagedInMessages.size 200, enqueueCount: 314, dequeueCount: 0 2013-12-09 21:15:58,695 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 320} 2013-12-09 21:15:58,696 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 314 2013-12-09 21:15:58,696 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 321, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:317, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158696, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 315} 2013-12-09 21:15:58,778 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:317 sent to queue://test_queue_z0 2013-12-09 21:15:58,778 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 115, Inflight: 0, pagedInMessages.size 200, enqueueCount: 315, dequeueCount: 0 2013-12-09 21:15:58,778 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 321} 2013-12-09 21:15:58,779 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 315 2013-12-09 21:15:58,779 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 322, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:318, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158779, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 316} 2013-12-09 21:15:58,836 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:318 sent to queue://test_queue_z0 2013-12-09 21:15:58,836 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 116, Inflight: 0, pagedInMessages.size 200, enqueueCount: 316, dequeueCount: 0 2013-12-09 21:15:58,836 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 322} 2013-12-09 21:15:58,837 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 316 2013-12-09 21:15:58,837 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 323, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:319, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158837, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 317} 2013-12-09 21:15:58,894 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:319 sent to queue://test_queue_z0 2013-12-09 21:15:58,894 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 117, Inflight: 0, pagedInMessages.size 200, enqueueCount: 317, dequeueCount: 0 2013-12-09 21:15:58,894 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 323} 2013-12-09 21:15:58,895 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 317 2013-12-09 21:15:58,895 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 324, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:320, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158895, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 318} 2013-12-09 21:15:58,952 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:320 sent to queue://test_queue_z0 2013-12-09 21:15:58,952 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 118, Inflight: 0, pagedInMessages.size 200, enqueueCount: 318, dequeueCount: 0 2013-12-09 21:15:58,952 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 324} 2013-12-09 21:15:58,953 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 318 2013-12-09 21:15:58,953 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 325, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:321, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158953, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 319} 2013-12-09 21:15:59,010 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:321 sent to queue://test_queue_z0 2013-12-09 21:15:59,010 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 119, Inflight: 0, pagedInMessages.size 200, enqueueCount: 319, dequeueCount: 0 2013-12-09 21:15:59,010 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 325} 2013-12-09 21:15:59,011 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 319 2013-12-09 21:15:59,011 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 326, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:322, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159011, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 320} 2013-12-09 21:15:59,068 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:322 sent to queue://test_queue_z0 2013-12-09 21:15:59,068 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 120, Inflight: 0, pagedInMessages.size 200, enqueueCount: 320, dequeueCount: 0 2013-12-09 21:15:59,068 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 326} 2013-12-09 21:15:59,069 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 320 2013-12-09 21:15:59,069 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 327, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:323, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159069, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 321} 2013-12-09 21:15:59,072 [WriteCheckTimer] DEBUG AbstractInactivityMonitor - WriteChecker: 10000ms elapsed since last write check. 2013-12-09 21:15:59,076 [WriteCheckTimer] DEBUG AbstractInactivityMonitor - WriteChecker: 10001ms elapsed since last write check. 2013-12-09 21:15:59,126 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:323 sent to queue://test_queue_z0 2013-12-09 21:15:59,126 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 121, Inflight: 0, pagedInMessages.size 200, enqueueCount: 321, dequeueCount: 0 2013-12-09 21:15:59,126 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 327} 2013-12-09 21:15:59,126 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 321 2013-12-09 21:15:59,127 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 328, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:324, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159127, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 322} 2013-12-09 21:15:59,184 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:324 sent to queue://test_queue_z0 2013-12-09 21:15:59,184 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 122, Inflight: 0, pagedInMessages.size 200, enqueueCount: 322, dequeueCount: 0 2013-12-09 21:15:59,184 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 328} 2013-12-09 21:15:59,185 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 322 2013-12-09 21:15:59,185 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 329, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:325, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159185, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 323} 2013-12-09 21:15:59,242 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:325 sent to queue://test_queue_z0 2013-12-09 21:15:59,242 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 123, Inflight: 0, pagedInMessages.size 200, enqueueCount: 323, dequeueCount: 0 2013-12-09 21:15:59,242 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 329} 2013-12-09 21:15:59,242 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 323 2013-12-09 21:15:59,243 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 330, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:326, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159243, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 324} 2013-12-09 21:15:59,300 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:326 sent to queue://test_queue_z0 2013-12-09 21:15:59,300 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 124, Inflight: 0, pagedInMessages.size 200, enqueueCount: 324, dequeueCount: 0 2013-12-09 21:15:59,300 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 330} 2013-12-09 21:15:59,301 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 324 2013-12-09 21:15:59,301 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 331, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:327, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159301, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 325} 2013-12-09 21:15:59,357 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:327 sent to queue://test_queue_z0 2013-12-09 21:15:59,358 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 125, Inflight: 0, pagedInMessages.size 200, enqueueCount: 325, dequeueCount: 0 2013-12-09 21:15:59,358 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 331} 2013-12-09 21:15:59,358 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 325 2013-12-09 21:15:59,359 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 332, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:328, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159359, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 326} 2013-12-09 21:15:59,416 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:328 sent to queue://test_queue_z0 2013-12-09 21:15:59,416 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 126, Inflight: 0, pagedInMessages.size 200, enqueueCount: 326, dequeueCount: 0 2013-12-09 21:15:59,416 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 332} 2013-12-09 21:15:59,416 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 326 2013-12-09 21:15:59,417 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 333, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:329, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159417, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 327} 2013-12-09 21:15:59,482 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:329 sent to queue://test_queue_z0 2013-12-09 21:15:59,482 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 127, Inflight: 0, pagedInMessages.size 200, enqueueCount: 327, dequeueCount: 0 2013-12-09 21:15:59,482 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 333} 2013-12-09 21:15:59,483 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 327 2013-12-09 21:15:59,483 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 334, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:330, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159483, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 328} 2013-12-09 21:15:59,548 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:330 sent to queue://test_queue_z0 2013-12-09 21:15:59,548 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 128, Inflight: 0, pagedInMessages.size 200, enqueueCount: 328, dequeueCount: 0 2013-12-09 21:15:59,548 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 334} 2013-12-09 21:15:59,549 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 328 2013-12-09 21:15:59,549 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 335, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:331, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159549, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 329} 2013-12-09 21:15:59,606 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:331 sent to queue://test_queue_z0 2013-12-09 21:15:59,606 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 129, Inflight: 0, pagedInMessages.size 200, enqueueCount: 329, dequeueCount: 0 2013-12-09 21:15:59,606 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 335} 2013-12-09 21:15:59,607 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 329 2013-12-09 21:15:59,607 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 336, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:332, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159607, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 330} 2013-12-09 21:15:59,672 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:332 sent to queue://test_queue_z0 2013-12-09 21:15:59,673 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 130, Inflight: 0, pagedInMessages.size 200, enqueueCount: 330, dequeueCount: 0 2013-12-09 21:15:59,673 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 336} 2013-12-09 21:15:59,673 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 330 2013-12-09 21:15:59,673 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 337, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:333, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159673, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 331} 2013-12-09 21:15:59,738 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:333 sent to queue://test_queue_z0 2013-12-09 21:15:59,739 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 131, Inflight: 0, pagedInMessages.size 200, enqueueCount: 331, dequeueCount: 0 2013-12-09 21:15:59,739 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 337} 2013-12-09 21:15:59,739 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 331 2013-12-09 21:15:59,740 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 338, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:334, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159739, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 332} 2013-12-09 21:15:59,796 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:334 sent to queue://test_queue_z0 2013-12-09 21:15:59,797 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 132, Inflight: 0, pagedInMessages.size 200, enqueueCount: 332, dequeueCount: 0 2013-12-09 21:15:59,797 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 338} 2013-12-09 21:15:59,798 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 332 2013-12-09 21:15:59,798 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 339, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:335, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159798, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 333} 2013-12-09 21:15:59,854 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:335 sent to queue://test_queue_z0 2013-12-09 21:15:59,855 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 133, Inflight: 0, pagedInMessages.size 200, enqueueCount: 333, dequeueCount: 0 2013-12-09 21:15:59,855 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 339} 2013-12-09 21:15:59,855 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 333 2013-12-09 21:15:59,856 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 340, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:336, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159856, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 334} 2013-12-09 21:15:59,918 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:336 sent to queue://test_queue_z0 2013-12-09 21:15:59,919 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 134, Inflight: 0, pagedInMessages.size 200, enqueueCount: 334, dequeueCount: 0 2013-12-09 21:15:59,919 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 340} 2013-12-09 21:15:59,919 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 334 2013-12-09 21:15:59,920 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 341, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:337, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159920, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 335} 2013-12-09 21:16:00,136 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:337 sent to queue://test_queue_z0 2013-12-09 21:16:00,136 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 135, Inflight: 0, pagedInMessages.size 200, enqueueCount: 335, dequeueCount: 0 2013-12-09 21:16:00,136 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 341} 2013-12-09 21:16:00,137 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 335 2013-12-09 21:16:00,137 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 342, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:338, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620160137, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 336} 2013-12-09 21:16:00,260 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:338 sent to queue://test_queue_z0 2013-12-09 21:16:00,260 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 136, Inflight: 0, pagedInMessages.size 200, enqueueCount: 336, dequeueCount: 0 2013-12-09 21:16:00,260 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 342} 2013-12-09 21:16:00,260 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 336 2013-12-09 21:16:00,261 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 343, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:339, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620160261, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 337} 2013-12-09 21:16:00,434 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:339 sent to queue://test_queue_z0 2013-12-09 21:16:00,434 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 137, Inflight: 0, pagedInMessages.size 200, enqueueCount: 337, dequeueCount: 0 2013-12-09 21:16:00,434 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 343} 2013-12-09 21:16:00,435 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 337 2013-12-09 21:16:00,435 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 344, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:340, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620160435, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 338} 2013-12-09 21:16:00,567 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:340 sent to queue://test_queue_z0 2013-12-09 21:16:00,568 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 138, Inflight: 0, pagedInMessages.size 200, enqueueCount: 338, dequeueCount: 0 2013-12-09 21:16:00,568 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 344} 2013-12-09 21:16:00,568 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 338 2013-12-09 21:16:00,569 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 345, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:341, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620160568, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 339} 2013-12-09 21:16:00,672 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:341 sent to queue://test_queue_z0 2013-12-09 21:16:00,673 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 139, Inflight: 0, pagedInMessages.size 200, enqueueCount: 339, dequeueCount: 0 2013-12-09 21:16:00,673 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 345} 2013-12-09 21:16:00,674 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 339 2013-12-09 21:16:00,674 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 346, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:342, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620160674, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 340} 2013-12-09 21:16:00,725 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:342 sent to queue://test_queue_z0 2013-12-09 21:16:00,725 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 140, Inflight: 0, pagedInMessages.size 200, enqueueCount: 340, dequeueCount: 0 2013-12-09 21:16:00,725 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 346} 2013-12-09 21:16:00,726 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 340 2013-12-09 21:16:00,726 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 347, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:343, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620160726, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 341} 2013-12-09 21:16:00,783 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:343 sent to queue://test_queue_z0 2013-12-09 21:16:00,783 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 141, Inflight: 0, pagedInMessages.size 200, enqueueCount: 341, dequeueCount: 0 2013-12-09 21:16:00,783 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 347} 2013-12-09 21:16:00,784 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 341 2013-12-09 21:16:00,784 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 348, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:344, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620160784, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 342} 2013-12-09 21:16:00,841 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:344 sent to queue://test_queue_z0 2013-12-09 21:16:00,841 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 142, Inflight: 0, pagedInMessages.size 200, enqueueCount: 342, dequeueCount: 0 2013-12-09 21:16:00,841 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 348} 2013-12-09 21:16:00,842 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 342 2013-12-09 21:16:00,842 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 349, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:345, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620160842, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 343} 2013-12-09 21:16:00,899 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:345 sent to queue://test_queue_z0 2013-12-09 21:16:00,899 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 143, Inflight: 0, pagedInMessages.size 200, enqueueCount: 343, dequeueCount: 0 2013-12-09 21:16:00,899 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 349} 2013-12-09 21:16:00,900 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 343 2013-12-09 21:16:00,900 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 350, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:346, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620160900, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 344} 2013-12-09 21:16:00,957 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:346 sent to queue://test_queue_z0 2013-12-09 21:16:00,957 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 144, Inflight: 0, pagedInMessages.size 200, enqueueCount: 344, dequeueCount: 0 2013-12-09 21:16:00,957 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 350} 2013-12-09 21:16:00,958 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 344 2013-12-09 21:16:00,958 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 351, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:347, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620160958, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 345} 2013-12-09 21:16:01,015 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:347 sent to queue://test_queue_z0 2013-12-09 21:16:01,015 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 145, Inflight: 0, pagedInMessages.size 200, enqueueCount: 345, dequeueCount: 0 2013-12-09 21:16:01,015 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 351} 2013-12-09 21:16:01,016 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 345 2013-12-09 21:16:01,016 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 352, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:348, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620161016, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 346} 2013-12-09 21:16:01,073 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:348 sent to queue://test_queue_z0 2013-12-09 21:16:01,073 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 146, Inflight: 0, pagedInMessages.size 200, enqueueCount: 346, dequeueCount: 0 2013-12-09 21:16:01,073 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 352} 2013-12-09 21:16:01,074 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 346 2013-12-09 21:16:01,074 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 353, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:349, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620161074, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 347} 2013-12-09 21:16:01,139 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:349 sent to queue://test_queue_z0 2013-12-09 21:16:01,139 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 147, Inflight: 0, pagedInMessages.size 200, enqueueCount: 347, dequeueCount: 0 2013-12-09 21:16:01,139 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 353} 2013-12-09 21:16:01,140 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 347 2013-12-09 21:16:01,140 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 354, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:350, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620161140, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 348} 2013-12-09 21:16:01,197 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:350 sent to queue://test_queue_z0 2013-12-09 21:16:01,197 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 148, Inflight: 0, pagedInMessages.size 200, enqueueCount: 348, dequeueCount: 0 2013-12-09 21:16:01,198 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 354} 2013-12-09 21:16:01,198 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 348 2013-12-09 21:16:01,198 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 355, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:351, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620161198, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 349} 2013-12-09 21:16:01,255 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:351 sent to queue://test_queue_z0 2013-12-09 21:16:01,255 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 149, Inflight: 0, pagedInMessages.size 200, enqueueCount: 349, dequeueCount: 0 2013-12-09 21:16:01,256 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 355} 2013-12-09 21:16:01,256 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 349 2013-12-09 21:16:01,256 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 356, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:352, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620161256, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 350} 2013-12-09 21:16:01,313 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:352 sent to queue://test_queue_z0 2013-12-09 21:16:01,313 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 150, Inflight: 0, pagedInMessages.size 200, enqueueCount: 350, dequeueCount: 0 2013-12-09 21:16:01,313 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 356} 2013-12-09 21:16:01,314 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 350 2013-12-09 21:16:01,314 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 357, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:353, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620161314, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 351} 2013-12-09 21:16:01,371 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:353 sent to queue://test_queue_z0 2013-12-09 21:16:01,371 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 151, Inflight: 0, pagedInMessages.size 200, enqueueCount: 351, dequeueCount: 0 2013-12-09 21:16:01,371 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 357} 2013-12-09 21:16:01,372 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 351 2013-12-09 21:16:01,372 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 358, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:354, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620161372, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 352} 2013-12-09 21:16:01,437 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:354 sent to queue://test_queue_z0 2013-12-09 21:16:01,438 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 152, Inflight: 0, pagedInMessages.size 200, enqueueCount: 352, dequeueCount: 0 2013-12-09 21:16:01,438 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 358} 2013-12-09 21:16:01,438 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 352 2013-12-09 21:16:01,438 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 359, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:355, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620161438, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 353} 2013-12-09 21:16:01,454 [ Scheduled Task] DEBUG LeaseDatabaseLocker - coreActiveMQBroker1, lease keepAlive Query is UPDATE ACTIVEMQ_LOCK SET BROKER_NAME=?, TIME=? WHERE BROKER_NAME=? AND ID = 1 2013-12-09 21:16:01,504 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:355 sent to queue://test_queue_z0 2013-12-09 21:16:01,504 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 153, Inflight: 0, pagedInMessages.size 200, enqueueCount: 353, dequeueCount: 0 2013-12-09 21:16:01,504 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 359} 2013-12-09 21:16:01,504 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 353 2013-12-09 21:16:01,505 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 360, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:356, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620161505, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 354} 2013-12-09 21:16:01,620 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:356 sent to queue://test_queue_z0 2013-12-09 21:16:01,620 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 154, Inflight: 0, pagedInMessages.size 200, enqueueCount: 354, dequeueCount: 0 2013-12-09 21:16:01,620 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 360} 2013-12-09 21:16:01,621 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 354 2013-12-09 21:16:01,621 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 361, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:357, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620161621, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 355} 2013-12-09 21:16:01,686 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:357 sent to queue://test_queue_z0 2013-12-09 21:16:01,686 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 155, Inflight: 0, pagedInMessages.size 200, enqueueCount: 355, dequeueCount: 0 2013-12-09 21:16:01,686 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 361} 2013-12-09 21:16:01,687 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 355 2013-12-09 21:16:01,687 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 362, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:358, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620161687, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 356} 2013-12-09 21:16:01,752 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:358 sent to queue://test_queue_z0 2013-12-09 21:16:01,752 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 156, Inflight: 0, pagedInMessages.size 200, enqueueCount: 356, dequeueCount: 0 2013-12-09 21:16:01,752 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 362} 2013-12-09 21:16:01,753 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 356 2013-12-09 21:16:01,753 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 363, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:359, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620161753, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 357} 2013-12-09 21:16:01,810 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:359 sent to queue://test_queue_z0 2013-12-09 21:16:01,810 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 157, Inflight: 0, pagedInMessages.size 200, enqueueCount: 357, dequeueCount: 0 2013-12-09 21:16:01,810 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 363} 2013-12-09 21:16:01,811 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 357 2013-12-09 21:16:01,811 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 364, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:360, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620161811, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 358} 2013-12-09 21:16:01,868 [.0.1:57996@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:360 sent to queue://test_queue_z0 2013-12-09 21:16:01,868 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 158, Inflight: 0, pagedInMessages.size 200, enqueueCount: 358, dequeueCount: 0 2013-12-09 21:16:01,869 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 364} 2013-12-09 21:16:01,869 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 358 2013-12-09 21:16:01,870 [pool-2-thread-1] DEBUG Connection:11 - SENDING: ActiveMQTextMessage {commandId = 365, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:361, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620161869, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 359} 2013-12-09 21:16:02,220 [.0.1:57996@1666] WARN JDBCPersistenceAdapter - Error while closing connection: No operations allowed after statement closed. com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operations allowed after statement closed. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.Util.getInstance(Util.java:386) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1015) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:989) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:975) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:920) at com.mysql.jdbc.StatementImpl.checkClosed(StatementImpl.java:461) at com.mysql.jdbc.PreparedStatement.clearBatch(PreparedStatement.java:1143) at com.mysql.jdbc.PreparedStatement.executeBatch(PreparedStatement.java:1471) at org.apache.commons.dbcp.DelegatingStatement.executeBatch(DelegatingStatement.java:297) at org.apache.commons.dbcp.DelegatingStatement.executeBatch(DelegatingStatement.java:297) at org.apache.commons.dbcp.DelegatingStatement.executeBatch(DelegatingStatement.java:297) at org.apache.activemq.store.jdbc.TransactionContext.executeBatch(TransactionContext.java:106) at org.apache.activemq.store.jdbc.TransactionContext.executeBatch(TransactionContext.java:84) at org.apache.activemq.store.jdbc.TransactionContext.close(TransactionContext.java:132) at org.apache.activemq.store.jdbc.JDBCMessageStore.addMessage(JDBCMessageStore.java:129) at org.apache.activemq.store.memory.MemoryTransactionStore.addMessage(MemoryTransactionStore.java:327) at org.apache.activemq.store.memory.MemoryTransactionStore$1.asyncAddQueueMessage(MemoryTransactionStore.java:154) at org.apache.activemq.broker.region.Queue.doMessageSend(Queue.java:842) at org.apache.activemq.broker.region.Queue.send(Queue.java:700) at org.apache.activemq.broker.region.AbstractRegion.send(AbstractRegion.java:394) at org.apache.activemq.broker.region.RegionBroker.send(RegionBroker.java:441) at org.apache.activemq.broker.BrokerFilter.send(BrokerFilter.java:147) at org.apache.activemq.broker.CompositeDestinationBroker.send(CompositeDestinationBroker.java:96) at org.apache.activemq.broker.TransactionBroker.send(TransactionBroker.java:307) at org.apache.activemq.broker.MutableBrokerFilter.send(MutableBrokerFilter.java:152) at org.apache.activemq.broker.TransportConnection.processMessage(TransportConnection.java:467) at org.apache.activemq.command.ActiveMQMessage.visit(ActiveMQMessage.java:751) at org.apache.activemq.broker.TransportConnection.service(TransportConnection.java:292) at org.apache.activemq.broker.TransportConnection$1.onCommand(TransportConnection.java:149) at org.apache.activemq.transport.MutexTransport.onCommand(MutexTransport.java:50) at org.apache.activemq.transport.WireFormatNegotiator.onCommand(WireFormatNegotiator.java:113) at org.apache.activemq.transport.AbstractInactivityMonitor.onCommand(AbstractInactivityMonitor.java:270) at org.apache.activemq.transport.TransportSupport.doConsume(TransportSupport.java:83) at org.apache.activemq.transport.tcp.TcpTransport.doRun(TcpTransport.java:214) at org.apache.activemq.transport.tcp.TcpTransport.run(TcpTransport.java:196) at java.lang.Thread.run(Thread.java:722) 2013-12-09 21:16:02,225 [.0.1:57996@1666] INFO DefaultIOExceptionHandler - Initiating stop/restart of transports on BrokerService[coreActiveMQBroker1] due to IO exception, java.io.IOException: No operations allowed after statement closed. java.io.IOException: No operations allowed after statement closed. at org.apache.activemq.util.IOExceptionSupport.create(IOExceptionSupport.java:45) at org.apache.activemq.store.jdbc.TransactionContext.close(TransactionContext.java:141) at org.apache.activemq.store.jdbc.JDBCMessageStore.addMessage(JDBCMessageStore.java:129) at org.apache.activemq.store.memory.MemoryTransactionStore.addMessage(MemoryTransactionStore.java:327) at org.apache.activemq.store.memory.MemoryTransactionStore$1.asyncAddQueueMessage(MemoryTransactionStore.java:154) at org.apache.activemq.broker.region.Queue.doMessageSend(Queue.java:842) at org.apache.activemq.broker.region.Queue.send(Queue.java:700) at org.apache.activemq.broker.region.AbstractRegion.send(AbstractRegion.java:394) at org.apache.activemq.broker.region.RegionBroker.send(RegionBroker.java:441) at org.apache.activemq.broker.BrokerFilter.send(BrokerFilter.java:147) at org.apache.activemq.broker.CompositeDestinationBroker.send(CompositeDestinationBroker.java:96) at org.apache.activemq.broker.TransactionBroker.send(TransactionBroker.java:307) at org.apache.activemq.broker.MutableBrokerFilter.send(MutableBrokerFilter.java:152) at org.apache.activemq.broker.TransportConnection.processMessage(TransportConnection.java:467) at org.apache.activemq.command.ActiveMQMessage.visit(ActiveMQMessage.java:751) at org.apache.activemq.broker.TransportConnection.service(TransportConnection.java:292) at org.apache.activemq.broker.TransportConnection$1.onCommand(TransportConnection.java:149) at org.apache.activemq.transport.MutexTransport.onCommand(MutexTransport.java:50) at org.apache.activemq.transport.WireFormatNegotiator.onCommand(WireFormatNegotiator.java:113) at org.apache.activemq.transport.AbstractInactivityMonitor.onCommand(AbstractInactivityMonitor.java:270) at org.apache.activemq.transport.TransportSupport.doConsume(TransportSupport.java:83) at org.apache.activemq.transport.tcp.TcpTransport.doRun(TcpTransport.java:214) at org.apache.activemq.transport.tcp.TcpTransport.run(TcpTransport.java:196) at java.lang.Thread.run(Thread.java:722) Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operations allowed after statement closed. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.Util.getInstance(Util.java:386) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1015) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:989) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:975) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:920) at com.mysql.jdbc.StatementImpl.checkClosed(StatementImpl.java:461) at com.mysql.jdbc.PreparedStatement.clearBatch(PreparedStatement.java:1143) at com.mysql.jdbc.PreparedStatement.executeBatch(PreparedStatement.java:1471) at org.apache.commons.dbcp.DelegatingStatement.executeBatch(DelegatingStatement.java:297) at org.apache.commons.dbcp.DelegatingStatement.executeBatch(DelegatingStatement.java:297) at org.apache.commons.dbcp.DelegatingStatement.executeBatch(DelegatingStatement.java:297) at org.apache.activemq.store.jdbc.TransactionContext.executeBatch(TransactionContext.java:106) at org.apache.activemq.store.jdbc.TransactionContext.executeBatch(TransactionContext.java:84) at org.apache.activemq.store.jdbc.TransactionContext.close(TransactionContext.java:132) ... 22 more 2013-12-09 21:16:02,231 [.0.1:57996@1666] DEBUG Service - Error occured while processing sync command: ActiveMQTextMessage {commandId = 365, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:361, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620161869, arrival = 0, brokerInTime = 1386620161871, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3f506489, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 359}, exception: org.apache.activemq.broker.SuppressReplyException: Stop/RestartTransportsInitiated org.apache.activemq.broker.SuppressReplyException: Stop/RestartTransportsInitiated at org.apache.activemq.util.DefaultIOExceptionHandler.handle(DefaultIOExceptionHandler.java:124) at org.apache.activemq.broker.BrokerService.handleIOException(BrokerService.java:2528) at org.apache.activemq.store.jdbc.TransactionContext.close(TransactionContext.java:142) at org.apache.activemq.store.jdbc.JDBCMessageStore.addMessage(JDBCMessageStore.java:129) at org.apache.activemq.store.memory.MemoryTransactionStore.addMessage(MemoryTransactionStore.java:327) at org.apache.activemq.store.memory.MemoryTransactionStore$1.asyncAddQueueMessage(MemoryTransactionStore.java:154) at org.apache.activemq.broker.region.Queue.doMessageSend(Queue.java:842) at org.apache.activemq.broker.region.Queue.send(Queue.java:700) at org.apache.activemq.broker.region.AbstractRegion.send(AbstractRegion.java:394) at org.apache.activemq.broker.region.RegionBroker.send(RegionBroker.java:441) at org.apache.activemq.broker.BrokerFilter.send(BrokerFilter.java:147) at org.apache.activemq.broker.CompositeDestinationBroker.send(CompositeDestinationBroker.java:96) at org.apache.activemq.broker.TransactionBroker.send(TransactionBroker.java:307) at org.apache.activemq.broker.MutableBrokerFilter.send(MutableBrokerFilter.java:152) at org.apache.activemq.broker.TransportConnection.processMessage(TransportConnection.java:467) at org.apache.activemq.command.ActiveMQMessage.visit(ActiveMQMessage.java:751) at org.apache.activemq.broker.TransportConnection.service(TransportConnection.java:292) at org.apache.activemq.broker.TransportConnection$1.onCommand(TransportConnection.java:149) at org.apache.activemq.transport.MutexTransport.onCommand(MutexTransport.java:50) at org.apache.activemq.transport.WireFormatNegotiator.onCommand(WireFormatNegotiator.java:113) at org.apache.activemq.transport.AbstractInactivityMonitor.onCommand(AbstractInactivityMonitor.java:270) at org.apache.activemq.transport.TransportSupport.doConsume(TransportSupport.java:83) at org.apache.activemq.transport.tcp.TcpTransport.doRun(TcpTransport.java:214) at org.apache.activemq.transport.tcp.TcpTransport.run(TcpTransport.java:196) at java.lang.Thread.run(Thread.java:722) Caused by: java.io.IOException: No operations allowed after statement closed. at org.apache.activemq.util.IOExceptionSupport.create(IOExceptionSupport.java:45) at org.apache.activemq.store.jdbc.TransactionContext.close(TransactionContext.java:141) ... 22 more Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operations allowed after statement closed. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.Util.getInstance(Util.java:386) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1015) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:989) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:975) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:920) at com.mysql.jdbc.StatementImpl.checkClosed(StatementImpl.java:461) at com.mysql.jdbc.PreparedStatement.clearBatch(PreparedStatement.java:1143) at com.mysql.jdbc.PreparedStatement.executeBatch(PreparedStatement.java:1471) at org.apache.commons.dbcp.DelegatingStatement.executeBatch(DelegatingStatement.java:297) at org.apache.commons.dbcp.DelegatingStatement.executeBatch(DelegatingStatement.java:297) at org.apache.commons.dbcp.DelegatingStatement.executeBatch(DelegatingStatement.java:297) at org.apache.activemq.store.jdbc.TransactionContext.executeBatch(TransactionContext.java:106) at org.apache.activemq.store.jdbc.TransactionContext.executeBatch(TransactionContext.java:84) at org.apache.activemq.store.jdbc.TransactionContext.close(TransactionContext.java:132) ... 22 more 2013-12-09 21:16:02,238 [.0.1:57996@1666] INFO TransportConnection - Suppressing reply to: ActiveMQTextMessage {commandId = 365, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:361, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620161869, arrival = 0, brokerInTime = 1386620161871, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3f506489, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 359} on: org.apache.activemq.broker.SuppressReplyException: Stop/RestartTransportsInitiated, cause: java.io.IOException: No operations allowed after statement closed. 2013-12-09 21:16:02,240 [.0.1:57996@1666] WARN Service - Async error occurred: org.apache.activemq.broker.SuppressReplyException: Stop/RestartTransportsInitiated at org.apache.activemq.util.DefaultIOExceptionHandler.handle(DefaultIOExceptionHandler.java:124) at org.apache.activemq.broker.BrokerService.handleIOException(BrokerService.java:2528) at org.apache.activemq.store.jdbc.TransactionContext.close(TransactionContext.java:142) at org.apache.activemq.store.jdbc.JDBCMessageStore.addMessage(JDBCMessageStore.java:129) at org.apache.activemq.store.memory.MemoryTransactionStore.addMessage(MemoryTransactionStore.java:327) at org.apache.activemq.store.memory.MemoryTransactionStore$1.asyncAddQueueMessage(MemoryTransactionStore.java:154) at org.apache.activemq.broker.region.Queue.doMessageSend(Queue.java:842) at org.apache.activemq.broker.region.Queue.send(Queue.java:700) at org.apache.activemq.broker.region.AbstractRegion.send(AbstractRegion.java:394) at org.apache.activemq.broker.region.RegionBroker.send(RegionBroker.java:441) at org.apache.activemq.broker.BrokerFilter.send(BrokerFilter.java:147) at org.apache.activemq.broker.CompositeDestinationBroker.send(CompositeDestinationBroker.java:96) at org.apache.activemq.broker.TransactionBroker.send(TransactionBroker.java:307) at org.apache.activemq.broker.MutableBrokerFilter.send(MutableBrokerFilter.java:152) at org.apache.activemq.broker.TransportConnection.processMessage(TransportConnection.java:467) at org.apache.activemq.command.ActiveMQMessage.visit(ActiveMQMessage.java:751) at org.apache.activemq.broker.TransportConnection.service(TransportConnection.java:292) at org.apache.activemq.broker.TransportConnection$1.onCommand(TransportConnection.java:149) at org.apache.activemq.transport.MutexTransport.onCommand(MutexTransport.java:50) at org.apache.activemq.transport.WireFormatNegotiator.onCommand(WireFormatNegotiator.java:113) at org.apache.activemq.transport.AbstractInactivityMonitor.onCommand(AbstractInactivityMonitor.java:270) at org.apache.activemq.transport.TransportSupport.doConsume(TransportSupport.java:83) at org.apache.activemq.transport.tcp.TcpTransport.doRun(TcpTransport.java:214) at org.apache.activemq.transport.tcp.TcpTransport.run(TcpTransport.java:196) at java.lang.Thread.run(Thread.java:722) Caused by: java.io.IOException: No operations allowed after statement closed. at org.apache.activemq.util.IOExceptionSupport.create(IOExceptionSupport.java:45) at org.apache.activemq.store.jdbc.TransactionContext.close(TransactionContext.java:141) ... 22 more Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operations allowed after statement closed. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.Util.getInstance(Util.java:386) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1015) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:989) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:975) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:920) at com.mysql.jdbc.StatementImpl.checkClosed(StatementImpl.java:461) at com.mysql.jdbc.PreparedStatement.clearBatch(PreparedStatement.java:1143) at com.mysql.jdbc.PreparedStatement.executeBatch(PreparedStatement.java:1471) at org.apache.commons.dbcp.DelegatingStatement.executeBatch(DelegatingStatement.java:297) at org.apache.commons.dbcp.DelegatingStatement.executeBatch(DelegatingStatement.java:297) at org.apache.commons.dbcp.DelegatingStatement.executeBatch(DelegatingStatement.java:297) at org.apache.activemq.store.jdbc.TransactionContext.executeBatch(TransactionContext.java:106) at org.apache.activemq.store.jdbc.TransactionContext.executeBatch(TransactionContext.java:84) at org.apache.activemq.store.jdbc.TransactionContext.close(TransactionContext.java:132) ... 22 more 2013-12-09 21:16:02,247 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED: ConnectionError {commandId = 0, responseRequired = false} 2013-12-09 21:16:02,248 [1666?trace=true] DEBUG ActiveMQConnection - Async exception with no exception listener: java.lang.Throwable: org.apache.activemq.broker.SuppressReplyException: Stop/RestartTransportsInitiated java.lang.Throwable: org.apache.activemq.broker.SuppressReplyException: Stop/RestartTransportsInitiated at org.apache.activemq.util.DefaultIOExceptionHandler.handle(DefaultIOExceptionHandler.java:124) at org.apache.activemq.broker.BrokerService.handleIOException(BrokerService.java:2528) at org.apache.activemq.store.jdbc.TransactionContext.close(TransactionContext.java:142) at org.apache.activemq.store.jdbc.JDBCMessageStore.addMessage(JDBCMessageStore.java:129) at org.apache.activemq.store.memory.MemoryTransactionStore.addMessage(MemoryTransactionStore.java:327) at org.apache.activemq.store.memory.MemoryTransactionStore$1.asyncAddQueueMessage(MemoryTransactionStore.java:154) at org.apache.activemq.broker.region.Queue.doMessageSend(Queue.java:842) at org.apache.activemq.broker.region.Queue.send(Queue.java:700) at org.apache.activemq.broker.region.AbstractRegion.send(AbstractRegion.java:394) at org.apache.activemq.broker.region.RegionBroker.send(RegionBroker.java:441) at org.apache.activemq.broker.BrokerFilter.send(BrokerFilter.java:147) at org.apache.activemq.broker.CompositeDestinationBroker.send(CompositeDestinationBroker.java:96) at org.apache.activemq.broker.TransactionBroker.send(TransactionBroker.java:307) at org.apache.activemq.broker.MutableBrokerFilter.send(MutableBrokerFilter.java:152) at org.apache.activemq.broker.TransportConnection.processMessage(TransportConnection.java:467) at org.apache.activemq.command.ActiveMQMessage.visit(ActiveMQMessage.java:751) at org.apache.activemq.broker.TransportConnection.service(TransportConnection.java:292) at org.apache.activemq.broker.TransportConnection$1.onCommand(TransportConnection.java:149) at org.apache.activemq.transport.MutexTransport.onCommand(MutexTransport.java:50) at org.apache.activemq.transport.WireFormatNegotiator.onCommand(WireFormatNegotiator.java:113) at org.apache.activemq.transport.AbstractInactivityMonitor.onCommand(AbstractInactivityMonitor.java:270) at org.apache.activemq.transport.TransportSupport.doConsume(TransportSupport.java:83) at org.apache.activemq.transport.tcp.TcpTransport.doRun(TcpTransport.java:214) at org.apache.activemq.transport.tcp.TcpTransport.run(TcpTransport.java:196) at java.lang.Thread.run(Thread.java:722) Caused by: java.io.IOException: No operations allowed after statement closed. at org.apache.activemq.util.IOExceptionSupport.create(IOExceptionSupport.java:45) at org.apache.activemq.store.jdbc.TransactionContext.close(TransactionContext.java:141) ... 22 more Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operations allowed after statement closed. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.Util.getInstance(Util.java:386) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1015) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:989) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:975) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:920) at com.mysql.jdbc.StatementImpl.checkClosed(StatementImpl.java:461) at com.mysql.jdbc.PreparedStatement.clearBatch(PreparedStatement.java:1143) at com.mysql.jdbc.PreparedStatement.executeBatch(PreparedStatement.java:1471) at org.apache.commons.dbcp.DelegatingStatement.executeBatch(DelegatingStatement.java:297) at org.apache.commons.dbcp.DelegatingStatement.executeBatch(DelegatingStatement.java:297) at org.apache.commons.dbcp.DelegatingStatement.executeBatch(DelegatingStatement.java:297) at org.apache.activemq.store.jdbc.TransactionContext.executeBatch(TransactionContext.java:106) at org.apache.activemq.store.jdbc.TransactionContext.executeBatch(TransactionContext.java:84) at org.apache.activemq.store.jdbc.TransactionContext.close(TransactionContext.java:132) ... 22 more 2013-12-09 21:16:03,077 [Broker1] Task-1] DEBUG TransportConnection - Stopping connection: tcp://127.0.0.1:57996 2013-12-09 21:16:03,077 [Broker1] Task-1] DEBUG TcpTransport - Stopping transport tcp:///127.0.0.1:57996@1666 2013-12-09 21:16:03,077 [Broker1] Task-1] DEBUG TaskRunnerFactory - Initialized TaskRunnerFactory[ActiveMQ Task] using ExecutorService: java.util.concurrent.ThreadPoolExecutor@1eb23fce[Running, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0] 2013-12-09 21:16:03,078 [ActiveMQ Task-1] DEBUG TcpTransport - Closed socket Socket[addr=/127.0.0.1,port=57996,localport=1666] 2013-12-09 21:16:03,078 [.0.1:1666@57996] DEBUG Connection:11 - RECEIVED Exception: java.io.EOFException java.io.EOFException at java.io.DataInputStream.readInt(DataInputStream.java:392) at org.apache.activemq.openwire.OpenWireFormat.unmarshal(OpenWireFormat.java:275) at org.apache.activemq.transport.tcp.TcpTransport.readCommand(TcpTransport.java:221) at org.apache.activemq.transport.tcp.TcpTransport.doRun(TcpTransport.java:213) at org.apache.activemq.transport.tcp.TcpTransport.run(TcpTransport.java:196) at java.lang.Thread.run(Thread.java:722) 2013-12-09 21:16:03,078 [Broker1] Task-1] DEBUG ThreadPoolUtils - Forcing shutdown of ExecutorService: java.util.concurrent.ThreadPoolExecutor@1eb23fce[Running, pool size = 1, active threads = 0, queued tasks = 0, completed tasks = 1] 2013-12-09 21:16:03,079 [.0.1:1666@57996] DEBUG ThreadPoolUtils - Shutdown of ExecutorService: java.util.concurrent.ThreadPoolExecutor@5323e7b7[Terminated, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0] is shutdown: true and terminated: true took: 0.000 seconds. 2013-12-09 21:16:03,079 [Broker1] Task-1] DEBUG TransportConnection - Stopped transport: tcp://127.0.0.1:57996 2013-12-09 21:16:03,080 [.0.1:1666@57996] DEBUG TcpTransport - Stopping transport tcp://localhost/127.0.0.1:1666@57996 2013-12-09 21:16:03,080 [Broker1] Task-1] DEBUG TransportConnection - Cleaning up connection resources: tcp://127.0.0.1:57996 2013-12-09 21:16:03,080 [.0.1:1666@57996] DEBUG TaskRunnerFactory - Initialized TaskRunnerFactory[ActiveMQ Task] using ExecutorService: java.util.concurrent.ThreadPoolExecutor@15363c8e[Running, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0] 2013-12-09 21:16:03,080 [Broker1] Task-1] DEBUG TransportConnection - remove connection id: ID:sideshow.home-57960-1386620121463-3:1 2013-12-09 21:16:03,081 [Broker1] Task-1] DEBUG AbstractRegion - coreActiveMQBroker1 removing consumer: ID:sideshow.home-57960-1386620121463-3:1:-1:1 for destination: ActiveMQ.Advisory.TempQueue,ActiveMQ.Advisory.TempTopic 2013-12-09 21:16:03,081 [ActiveMQ Task-1] DEBUG TcpTransport - Closed socket Socket[addr=localhost/127.0.0.1,port=1666,localport=57996] 2013-12-09 21:16:03,081 [.0.1:1666@57996] DEBUG ThreadPoolUtils - Forcing shutdown of ExecutorService: java.util.concurrent.ThreadPoolExecutor@15363c8e[Running, pool size = 1, active threads = 0, queued tasks = 0, completed tasks = 1] 2013-12-09 21:16:03,082 [Broker1] Task-1] DEBUG TransportConnection - Connection Stopped: tcp://127.0.0.1:57996 2013-12-09 21:16:03,082 [.0.1:1666@57996] WARN FailoverTransport - Transport (tcp://127.0.0.1:1666) failed, reason: java.io.EOFException, attempting to automatically reconnect 2013-12-09 21:16:03,082 [stop transports] INFO TransportConnector - Connector openwire stopped 2013-12-09 21:16:03,082 [ActiveMQ Task-1] DEBUG FailoverTransport - urlList connectionList:[tcp://localhost:1666?trace=true], from: [tcp://localhost:1666?trace=true] 2013-12-09 21:16:03,083 [stop transports] INFO DefaultIOExceptionHandler - Successfully stopped transports on BrokerService[coreActiveMQBroker1] 2013-12-09 21:16:03,083 [ActiveMQ Task-1] DEBUG FailoverTransport - Waiting 10 ms before attempting connection. 2013-12-09 21:16:03,083 [tart transports] DEBUG LeaseDatabaseLocker - coreActiveMQBroker1, lease keepAlive Query is UPDATE ACTIVEMQ_LOCK SET BROKER_NAME=?, TIME=? WHERE BROKER_NAME=? AND ID = 1 2013-12-09 21:16:03,085 [tart transports] WARN LeaseDatabaseLocker - coreActiveMQBroker1, failed to update lease: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet successfully received from the server was 1,523 milliseconds ago. The last packet sent successfully to the server was 0 milliseconds ago. com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet successfully received from the server was 1,523 milliseconds ago. The last packet sent successfully to the server was 0 milliseconds ago. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1121) at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3603) at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3492) at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:4043) at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2503) at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2664) at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2815) at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:2155) at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java:2458) at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java:2375) at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java:2359) at org.apache.commons.dbcp.DelegatingPreparedStatement.executeUpdate(DelegatingPreparedStatement.java:105) at org.apache.commons.dbcp.DelegatingPreparedStatement.executeUpdate(DelegatingPreparedStatement.java:105) at org.apache.commons.dbcp.DelegatingPreparedStatement.executeUpdate(DelegatingPreparedStatement.java:105) at org.apache.activemq.store.jdbc.LeaseDatabaseLocker.keepAlive(LeaseDatabaseLocker.java:189) at org.apache.activemq.store.jdbc.JDBCIOExceptionHandler.hasLockOwnership(JDBCIOExceptionHandler.java:44) at org.apache.activemq.util.DefaultIOExceptionHandler$1$1.run(DefaultIOExceptionHandler.java:93) Caused by: java.net.SocketException: Connection reset at java.net.SocketInputStream.read(SocketInputStream.java:189) at java.net.SocketInputStream.read(SocketInputStream.java:121) at com.mysql.jdbc.util.ReadAheadInputStream.fill(ReadAheadInputStream.java:114) at com.mysql.jdbc.util.ReadAheadInputStream.readFromUnderlyingStreamIfNecessary(ReadAheadInputStream.java:161) at com.mysql.jdbc.util.ReadAheadInputStream.read(ReadAheadInputStream.java:189) at com.mysql.jdbc.MysqlIO.readFully(MysqlIO.java:3049) at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3503) ... 15 more 2013-12-09 21:16:03,089 [tart transports] DEBUG AbstractJDBCLocker - exception while closing connection: java.sql.SQLException: Already closed. java.sql.SQLException: Already closed. at org.apache.commons.dbcp.PoolableConnection.close(PoolableConnection.java:114) at org.apache.commons.dbcp.PoolingDataSource$PoolGuardConnectionWrapper.close(PoolingDataSource.java:191) at org.apache.activemq.store.jdbc.AbstractJDBCLocker.close(AbstractJDBCLocker.java:86) at org.apache.activemq.store.jdbc.LeaseDatabaseLocker.keepAlive(LeaseDatabaseLocker.java:201) at org.apache.activemq.store.jdbc.JDBCIOExceptionHandler.hasLockOwnership(JDBCIOExceptionHandler.java:44) at org.apache.activemq.util.DefaultIOExceptionHandler$1$1.run(DefaultIOExceptionHandler.java:93) 2013-12-09 21:16:03,092 [tart transports] DEBUG JDBCPersistenceAdapter - Could not get JDBC connection for checkpoint: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. 2013-12-09 21:16:03,092 [tart transports] INFO DefaultIOExceptionHandler - waiting for broker persistence adapter checkpoint to succeed before restarting transports 2013-12-09 21:16:03,094 [ActiveMQ Task-1] DEBUG FailoverTransport - Attempting 0th connect to: tcp://localhost:1666?trace=true 2013-12-09 21:16:03,095 [ActiveMQ Task-1] DEBUG FailoverTransport - Connect fail to: tcp://localhost:1666?trace=true, reason: java.net.ConnectException: Connection refused 2013-12-09 21:16:03,095 [ActiveMQ Task-1] DEBUG TcpTransport - Stopping transport tcp://localhost:1666?trace=true 2013-12-09 21:16:03,095 [ActiveMQ Task-1] DEBUG TaskRunnerFactory - Initialized TaskRunnerFactory[ActiveMQ Task] using ExecutorService: java.util.concurrent.ThreadPoolExecutor@1571e0f6[Running, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0] 2013-12-09 21:16:03,096 [ActiveMQ Task-1] DEBUG TcpTransport - Closed socket Socket[unconnected] 2013-12-09 21:16:03,096 [ActiveMQ Task-1] DEBUG ThreadPoolUtils - Forcing shutdown of ExecutorService: java.util.concurrent.ThreadPoolExecutor@1571e0f6[Running, pool size = 1, active threads = 0, queued tasks = 0, completed tasks = 1] 2013-12-09 21:16:03,096 [ActiveMQ Task-1] DEBUG FailoverTransport - Waiting 10 ms before attempting connection 2013-12-09 21:16:03,108 [ActiveMQ Task-1] DEBUG FailoverTransport - urlList connectionList:[tcp://localhost:1666?trace=true], from: [tcp://localhost:1666?trace=true] 2013-12-09 21:16:03,108 [ActiveMQ Task-1] DEBUG FailoverTransport - Waiting 20 ms before attempting connection. 2013-12-09 21:16:03,129 [ActiveMQ Task-1] DEBUG FailoverTransport - Attempting 1th connect to: tcp://localhost:1666?trace=true 2013-12-09 21:16:03,130 [ActiveMQ Task-1] DEBUG FailoverTransport - Connect fail to: tcp://localhost:1666?trace=true, reason: java.net.ConnectException: Connection refused 2013-12-09 21:16:03,130 [ActiveMQ Task-1] DEBUG TcpTransport - Stopping transport tcp://localhost:1666?trace=true 2013-12-09 21:16:03,130 [ActiveMQ Task-1] DEBUG TaskRunnerFactory - Initialized TaskRunnerFactory[ActiveMQ Task] using ExecutorService: java.util.concurrent.ThreadPoolExecutor@2efe5f5d[Running, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0] 2013-12-09 21:16:03,131 [ActiveMQ Task-1] DEBUG TcpTransport - Closed socket Socket[unconnected] 2013-12-09 21:16:03,131 [ActiveMQ Task-1] DEBUG ThreadPoolUtils - Forcing shutdown of ExecutorService: java.util.concurrent.ThreadPoolExecutor@2efe5f5d[Running, pool size = 1, active threads = 0, queued tasks = 0, completed tasks = 1] 2013-12-09 21:16:03,132 [ActiveMQ Task-1] DEBUG FailoverTransport - Waiting 20 ms before attempting connection 2013-12-09 21:16:03,153 [ActiveMQ Task-1] DEBUG FailoverTransport - urlList connectionList:[tcp://localhost:1666?trace=true], from: [tcp://localhost:1666?trace=true] 2013-12-09 21:16:03,153 [ActiveMQ Task-1] DEBUG FailoverTransport - Waiting 40 ms before attempting connection. 2013-12-09 21:16:03,195 [ActiveMQ Task-1] DEBUG FailoverTransport - Attempting 2th connect to: tcp://localhost:1666?trace=true 2013-12-09 21:16:03,196 [ActiveMQ Task-1] DEBUG FailoverTransport - Connect fail to: tcp://localhost:1666?trace=true, reason: java.net.ConnectException: Connection refused 2013-12-09 21:16:03,196 [ActiveMQ Task-1] DEBUG TcpTransport - Stopping transport tcp://localhost:1666?trace=true 2013-12-09 21:16:03,197 [ActiveMQ Task-1] DEBUG TaskRunnerFactory - Initialized TaskRunnerFactory[ActiveMQ Task] using ExecutorService: java.util.concurrent.ThreadPoolExecutor@3dd4e21a[Running, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0] 2013-12-09 21:16:03,197 [ActiveMQ Task-1] DEBUG TcpTransport - Closed socket Socket[unconnected] 2013-12-09 21:16:03,198 [ActiveMQ Task-1] DEBUG ThreadPoolUtils - Forcing shutdown of ExecutorService: java.util.concurrent.ThreadPoolExecutor@3dd4e21a[Running, pool size = 1, active threads = 0, queued tasks = 0, completed tasks = 1] 2013-12-09 21:16:03,198 [ActiveMQ Task-1] DEBUG FailoverTransport - Waiting 40 ms before attempting connection 2013-12-09 21:16:03,239 [ActiveMQ Task-1] DEBUG FailoverTransport - urlList connectionList:[tcp://localhost:1666?trace=true], from: [tcp://localhost:1666?trace=true] 2013-12-09 21:16:03,239 [ActiveMQ Task-1] DEBUG FailoverTransport - Waiting 80 ms before attempting connection. 2013-12-09 21:16:03,320 [ActiveMQ Task-1] DEBUG FailoverTransport - Attempting 3th connect to: tcp://localhost:1666?trace=true 2013-12-09 21:16:03,320 [ActiveMQ Task-1] DEBUG FailoverTransport - Connect fail to: tcp://localhost:1666?trace=true, reason: java.net.ConnectException: Connection refused 2013-12-09 21:16:03,321 [ActiveMQ Task-1] DEBUG TcpTransport - Stopping transport tcp://localhost:1666?trace=true 2013-12-09 21:16:03,321 [ActiveMQ Task-1] DEBUG TaskRunnerFactory - Initialized TaskRunnerFactory[ActiveMQ Task] using ExecutorService: java.util.concurrent.ThreadPoolExecutor@7c443b9f[Running, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0] 2013-12-09 21:16:03,321 [ActiveMQ Task-1] DEBUG TcpTransport - Closed socket Socket[unconnected] 2013-12-09 21:16:03,322 [ActiveMQ Task-1] DEBUG ThreadPoolUtils - Forcing shutdown of ExecutorService: java.util.concurrent.ThreadPoolExecutor@7c443b9f[Running, pool size = 1, active threads = 0, queued tasks = 0, completed tasks = 1] 2013-12-09 21:16:03,322 [ActiveMQ Task-1] DEBUG FailoverTransport - Waiting 80 ms before attempting connection 2013-12-09 21:16:03,403 [ActiveMQ Task-1] DEBUG FailoverTransport - urlList connectionList:[tcp://localhost:1666?trace=true], from: [tcp://localhost:1666?trace=true] 2013-12-09 21:16:03,403 [ActiveMQ Task-1] DEBUG FailoverTransport - Waiting 160 ms before attempting connection. 2013-12-09 21:16:03,565 [ActiveMQ Task-1] DEBUG FailoverTransport - Attempting 4th connect to: tcp://localhost:1666?trace=true 2013-12-09 21:16:03,566 [ActiveMQ Task-1] DEBUG FailoverTransport - Connect fail to: tcp://localhost:1666?trace=true, reason: java.net.ConnectException: Connection refused 2013-12-09 21:16:03,566 [ActiveMQ Task-1] DEBUG TcpTransport - Stopping transport tcp://localhost:1666?trace=true 2013-12-09 21:16:03,566 [ActiveMQ Task-1] DEBUG TaskRunnerFactory - Initialized TaskRunnerFactory[ActiveMQ Task] using ExecutorService: java.util.concurrent.ThreadPoolExecutor@15038edc[Running, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0] 2013-12-09 21:16:03,567 [ActiveMQ Task-1] DEBUG TcpTransport - Closed socket Socket[unconnected] 2013-12-09 21:16:03,567 [ActiveMQ Task-1] DEBUG ThreadPoolUtils - Forcing shutdown of ExecutorService: java.util.concurrent.ThreadPoolExecutor@15038edc[Running, pool size = 1, active threads = 0, queued tasks = 0, completed tasks = 1] 2013-12-09 21:16:03,567 [ActiveMQ Task-1] DEBUG FailoverTransport - Waiting 160 ms before attempting connection 2013-12-09 21:16:03,729 [ActiveMQ Task-1] DEBUG FailoverTransport - urlList connectionList:[tcp://localhost:1666?trace=true], from: [tcp://localhost:1666?trace=true] 2013-12-09 21:16:03,729 [ActiveMQ Task-1] DEBUG FailoverTransport - Waiting 320 ms before attempting connection. 2013-12-09 21:16:04,050 [ActiveMQ Task-1] DEBUG FailoverTransport - Attempting 5th connect to: tcp://localhost:1666?trace=true 2013-12-09 21:16:04,051 [ActiveMQ Task-1] DEBUG FailoverTransport - Connect fail to: tcp://localhost:1666?trace=true, reason: java.net.ConnectException: Connection refused 2013-12-09 21:16:04,051 [ActiveMQ Task-1] DEBUG TcpTransport - Stopping transport tcp://localhost:1666?trace=true 2013-12-09 21:16:04,051 [ActiveMQ Task-1] DEBUG TaskRunnerFactory - Initialized TaskRunnerFactory[ActiveMQ Task] using ExecutorService: java.util.concurrent.ThreadPoolExecutor@7715db[Running, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0] 2013-12-09 21:16:04,052 [ActiveMQ Task-1] DEBUG TcpTransport - Closed socket Socket[unconnected] 2013-12-09 21:16:04,052 [ActiveMQ Task-1] DEBUG ThreadPoolUtils - Forcing shutdown of ExecutorService: java.util.concurrent.ThreadPoolExecutor@7715db[Running, pool size = 1, active threads = 0, queued tasks = 0, completed tasks = 1] 2013-12-09 21:16:04,052 [ActiveMQ Task-1] DEBUG FailoverTransport - Waiting 320 ms before attempting connection 2013-12-09 21:16:04,374 [ActiveMQ Task-1] DEBUG FailoverTransport - urlList connectionList:[tcp://localhost:1666?trace=true], from: [tcp://localhost:1666?trace=true] 2013-12-09 21:16:04,374 [ActiveMQ Task-1] DEBUG FailoverTransport - Waiting 640 ms before attempting connection. 2013-12-09 21:16:05,015 [ActiveMQ Task-1] DEBUG FailoverTransport - Attempting 6th connect to: tcp://localhost:1666?trace=true 2013-12-09 21:16:05,016 [ActiveMQ Task-1] DEBUG FailoverTransport - Connect fail to: tcp://localhost:1666?trace=true, reason: java.net.ConnectException: Connection refused 2013-12-09 21:16:05,016 [ActiveMQ Task-1] DEBUG TcpTransport - Stopping transport tcp://localhost:1666?trace=true 2013-12-09 21:16:05,016 [ActiveMQ Task-1] DEBUG TaskRunnerFactory - Initialized TaskRunnerFactory[ActiveMQ Task] using ExecutorService: java.util.concurrent.ThreadPoolExecutor@3a9d7845[Running, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0] 2013-12-09 21:16:05,017 [ActiveMQ Task-1] DEBUG TcpTransport - Closed socket Socket[unconnected] 2013-12-09 21:16:05,017 [ActiveMQ Task-1] DEBUG ThreadPoolUtils - Forcing shutdown of ExecutorService: java.util.concurrent.ThreadPoolExecutor@3a9d7845[Running, pool size = 1, active threads = 0, queued tasks = 0, completed tasks = 1] 2013-12-09 21:16:05,018 [ActiveMQ Task-1] DEBUG FailoverTransport - Waiting 640 ms before attempting connection 2013-12-09 21:16:05,659 [ActiveMQ Task-1] DEBUG FailoverTransport - urlList connectionList:[tcp://localhost:1666?trace=true], from: [tcp://localhost:1666?trace=true] 2013-12-09 21:16:05,659 [ActiveMQ Task-1] DEBUG FailoverTransport - Waiting 1280 ms before attempting connection. 2013-12-09 21:16:06,454 [ Scheduled Task] DEBUG LeaseDatabaseLocker - coreActiveMQBroker1, lease keepAlive Query is UPDATE ACTIVEMQ_LOCK SET BROKER_NAME=?, TIME=? WHERE BROKER_NAME=? AND ID = 1 2013-12-09 21:16:06,457 [ Scheduled Task] WARN LeaseDatabaseLocker - coreActiveMQBroker1, failed to update lease: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1121) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:355) at com.mysql.jdbc.ConnectionImpl.coreConnect(ConnectionImpl.java:2479) at com.mysql.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:2516) at com.mysql.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:2301) at com.mysql.jdbc.ConnectionImpl.(ConnectionImpl.java:834) at com.mysql.jdbc.JDBC4Connection.(JDBC4Connection.java:47) at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:416) at com.mysql.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:317) at org.apache.commons.dbcp.DriverConnectionFactory.createConnection(DriverConnectionFactory.java:38) at org.apache.commons.dbcp.PoolableConnectionFactory.makeObject(PoolableConnectionFactory.java:582) at org.apache.commons.pool.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:1188) at org.apache.commons.dbcp.PoolingDataSource.getConnection(PoolingDataSource.java:106) at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:1044) at org.apache.activemq.store.jdbc.AbstractJDBCLocker.getConnection(AbstractJDBCLocker.java:80) at org.apache.activemq.store.jdbc.LeaseDatabaseLocker.keepAlive(LeaseDatabaseLocker.java:178) at org.apache.activemq.broker.LockableServiceSupport.keepLockAlive(LockableServiceSupport.java:125) at org.apache.activemq.broker.LockableServiceSupport$1.run(LockableServiceSupport.java:98) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471) at java.util.concurrent.FutureTask$Sync.innerRunAndReset(FutureTask.java:351) at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:178) at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:178) at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603) at java.lang.Thread.run(Thread.java:722) Caused by: java.net.ConnectException: Connection refused at java.net.PlainSocketImpl.socketConnect(Native Method) at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:339) at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:200) at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:182) at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:391) at java.net.Socket.connect(Socket.java:579) at java.net.Socket.connect(Socket.java:528) at java.net.Socket.(Socket.java:425) at java.net.Socket.(Socket.java:241) at com.mysql.jdbc.StandardSocketFactory.connect(StandardSocketFactory.java:259) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:305) ... 29 more 2013-12-09 21:16:06,462 [ Scheduled Task] WARN LockableServiceSupport - locker keepAlive resulted in org.apache.activemq.broker.SuppressReplyException: Stop/RestartTransportsInitiated at org.apache.activemq.util.DefaultIOExceptionHandler.handle(DefaultIOExceptionHandler.java:124) at org.apache.activemq.broker.BrokerService.handleIOException(BrokerService.java:2528) at org.apache.activemq.store.jdbc.LeaseDatabaseLocker.keepAlive(LeaseDatabaseLocker.java:197) at org.apache.activemq.broker.LockableServiceSupport.keepLockAlive(LockableServiceSupport.java:125) at org.apache.activemq.broker.LockableServiceSupport$1.run(LockableServiceSupport.java:98) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471) at java.util.concurrent.FutureTask$Sync.innerRunAndReset(FutureTask.java:351) at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:178) at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:178) at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603) at java.lang.Thread.run(Thread.java:722) Caused by: java.io.IOException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. at org.apache.activemq.util.IOExceptionSupport.create(IOExceptionSupport.java:45) at org.apache.activemq.store.jdbc.LeaseDatabaseLocker.keepAlive(LeaseDatabaseLocker.java:196) ... 10 more Caused by: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1121) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:355) at com.mysql.jdbc.ConnectionImpl.coreConnect(ConnectionImpl.java:2479) at com.mysql.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:2516) at com.mysql.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:2301) at com.mysql.jdbc.ConnectionImpl.(ConnectionImpl.java:834) at com.mysql.jdbc.JDBC4Connection.(JDBC4Connection.java:47) at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:416) at com.mysql.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:317) at org.apache.commons.dbcp.DriverConnectionFactory.createConnection(DriverConnectionFactory.java:38) at org.apache.commons.dbcp.PoolableConnectionFactory.makeObject(PoolableConnectionFactory.java:582) at org.apache.commons.pool.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:1188) at org.apache.commons.dbcp.PoolingDataSource.getConnection(PoolingDataSource.java:106) at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:1044) at org.apache.activemq.store.jdbc.AbstractJDBCLocker.getConnection(AbstractJDBCLocker.java:80) at org.apache.activemq.store.jdbc.LeaseDatabaseLocker.keepAlive(LeaseDatabaseLocker.java:178) ... 10 more Caused by: java.net.ConnectException: Connection refused at java.net.PlainSocketImpl.socketConnect(Native Method) at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:339) at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:200) at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:182) at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:391) at java.net.Socket.connect(Socket.java:579) at java.net.Socket.connect(Socket.java:528) at java.net.Socket.(Socket.java:425) at java.net.Socket.(Socket.java:241) at com.mysql.jdbc.StandardSocketFactory.connect(StandardSocketFactory.java:259) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:305) ... 29 more 2013-12-09 21:16:06,941 [ActiveMQ Task-1] DEBUG FailoverTransport - Attempting 7th connect to: tcp://localhost:1666?trace=true 2013-12-09 21:16:06,941 [ActiveMQ Task-1] DEBUG FailoverTransport - Connect fail to: tcp://localhost:1666?trace=true, reason: java.net.ConnectException: Connection refused 2013-12-09 21:16:06,942 [ActiveMQ Task-1] DEBUG TcpTransport - Stopping transport tcp://localhost:1666?trace=true 2013-12-09 21:16:06,942 [ActiveMQ Task-1] DEBUG TaskRunnerFactory - Initialized TaskRunnerFactory[ActiveMQ Task] using ExecutorService: java.util.concurrent.ThreadPoolExecutor@1cfb7091[Running, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0] 2013-12-09 21:16:06,942 [ActiveMQ Task-1] DEBUG TcpTransport - Closed socket Socket[unconnected] 2013-12-09 21:16:06,943 [ActiveMQ Task-1] DEBUG ThreadPoolUtils - Forcing shutdown of ExecutorService: java.util.concurrent.ThreadPoolExecutor@1cfb7091[Running, pool size = 1, active threads = 0, queued tasks = 0, completed tasks = 1] 2013-12-09 21:16:06,943 [ActiveMQ Task-1] DEBUG FailoverTransport - Waiting 1280 ms before attempting connection 2013-12-09 21:16:08,093 [tart transports] DEBUG LeaseDatabaseLocker - coreActiveMQBroker1, lease keepAlive Query is UPDATE ACTIVEMQ_LOCK SET BROKER_NAME=?, TIME=? WHERE BROKER_NAME=? AND ID = 1 2013-12-09 21:16:08,096 [tart transports] WARN LeaseDatabaseLocker - coreActiveMQBroker1, failed to update lease: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1121) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:355) at com.mysql.jdbc.ConnectionImpl.coreConnect(ConnectionImpl.java:2479) at com.mysql.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:2516) at com.mysql.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:2301) at com.mysql.jdbc.ConnectionImpl.(ConnectionImpl.java:834) at com.mysql.jdbc.JDBC4Connection.(JDBC4Connection.java:47) at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:416) at com.mysql.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:317) at org.apache.commons.dbcp.DriverConnectionFactory.createConnection(DriverConnectionFactory.java:38) at org.apache.commons.dbcp.PoolableConnectionFactory.makeObject(PoolableConnectionFactory.java:582) at org.apache.commons.pool.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:1188) at org.apache.commons.dbcp.PoolingDataSource.getConnection(PoolingDataSource.java:106) at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:1044) at org.apache.activemq.store.jdbc.AbstractJDBCLocker.getConnection(AbstractJDBCLocker.java:80) at org.apache.activemq.store.jdbc.LeaseDatabaseLocker.keepAlive(LeaseDatabaseLocker.java:178) at org.apache.activemq.store.jdbc.JDBCIOExceptionHandler.hasLockOwnership(JDBCIOExceptionHandler.java:44) at org.apache.activemq.util.DefaultIOExceptionHandler$1$1.run(DefaultIOExceptionHandler.java:93) Caused by: java.net.ConnectException: Connection refused at java.net.PlainSocketImpl.socketConnect(Native Method) at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:339) at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:200) at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:182) at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:391) at java.net.Socket.connect(Socket.java:579) at java.net.Socket.connect(Socket.java:528) at java.net.Socket.(Socket.java:425) at java.net.Socket.(Socket.java:241) at com.mysql.jdbc.StandardSocketFactory.connect(StandardSocketFactory.java:259) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:305) ... 21 more 2013-12-09 21:16:08,103 [tart transports] DEBUG JDBCPersistenceAdapter - Could not get JDBC connection for checkpoint: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. 2013-12-09 21:16:08,104 [tart transports] INFO DefaultIOExceptionHandler - waiting for broker persistence adapter checkpoint to succeed before restarting transports 2013-12-09 21:16:08,224 [ActiveMQ Task-1] DEBUG FailoverTransport - urlList connectionList:[tcp://localhost:1666?trace=true], from: [tcp://localhost:1666?trace=true] 2013-12-09 21:16:08,225 [ActiveMQ Task-1] DEBUG FailoverTransport - Waiting 2560 ms before attempting connection. 2013-12-09 21:16:10,785 [ActiveMQ Task-1] DEBUG FailoverTransport - Attempting 8th connect to: tcp://localhost:1666?trace=true 2013-12-09 21:16:10,786 [ActiveMQ Task-1] DEBUG FailoverTransport - Connect fail to: tcp://localhost:1666?trace=true, reason: java.net.ConnectException: Connection refused 2013-12-09 21:16:10,786 [ActiveMQ Task-1] DEBUG TcpTransport - Stopping transport tcp://localhost:1666?trace=true 2013-12-09 21:16:10,786 [ActiveMQ Task-1] DEBUG TaskRunnerFactory - Initialized TaskRunnerFactory[ActiveMQ Task] using ExecutorService: java.util.concurrent.ThreadPoolExecutor@7171ec76[Running, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0] 2013-12-09 21:16:10,787 [ActiveMQ Task-1] DEBUG TcpTransport - Closed socket Socket[unconnected] 2013-12-09 21:16:10,787 [ActiveMQ Task-1] DEBUG ThreadPoolUtils - Forcing shutdown of ExecutorService: java.util.concurrent.ThreadPoolExecutor@7171ec76[Running, pool size = 1, active threads = 0, queued tasks = 0, completed tasks = 1] 2013-12-09 21:16:10,788 [ActiveMQ Task-1] DEBUG FailoverTransport - Waiting 2560 ms before attempting connection 2013-12-09 21:16:11,454 [ Scheduled Task] DEBUG LeaseDatabaseLocker - coreActiveMQBroker1, lease keepAlive Query is UPDATE ACTIVEMQ_LOCK SET BROKER_NAME=?, TIME=? WHERE BROKER_NAME=? AND ID = 1 2013-12-09 21:16:11,457 [ Scheduled Task] WARN LeaseDatabaseLocker - coreActiveMQBroker1, failed to update lease: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. at sun.reflect.GeneratedConstructorAccessor11.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1121) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:355) at com.mysql.jdbc.ConnectionImpl.coreConnect(ConnectionImpl.java:2479) at com.mysql.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:2516) at com.mysql.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:2301) at com.mysql.jdbc.ConnectionImpl.(ConnectionImpl.java:834) at com.mysql.jdbc.JDBC4Connection.(JDBC4Connection.java:47) at sun.reflect.GeneratedConstructorAccessor12.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:416) at com.mysql.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:317) at org.apache.commons.dbcp.DriverConnectionFactory.createConnection(DriverConnectionFactory.java:38) at org.apache.commons.dbcp.PoolableConnectionFactory.makeObject(PoolableConnectionFactory.java:582) at org.apache.commons.pool.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:1188) at org.apache.commons.dbcp.PoolingDataSource.getConnection(PoolingDataSource.java:106) at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:1044) at org.apache.activemq.store.jdbc.AbstractJDBCLocker.getConnection(AbstractJDBCLocker.java:80) at org.apache.activemq.store.jdbc.LeaseDatabaseLocker.keepAlive(LeaseDatabaseLocker.java:178) at org.apache.activemq.broker.LockableServiceSupport.keepLockAlive(LockableServiceSupport.java:125) at org.apache.activemq.broker.LockableServiceSupport$1.run(LockableServiceSupport.java:98) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471) at java.util.concurrent.FutureTask$Sync.innerRunAndReset(FutureTask.java:351) at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:178) at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:178) at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603) at java.lang.Thread.run(Thread.java:722) Caused by: java.net.ConnectException: Connection refused at java.net.PlainSocketImpl.socketConnect(Native Method) at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:339) at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:200) at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:182) at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:391) at java.net.Socket.connect(Socket.java:579) at java.net.Socket.connect(Socket.java:528) at java.net.Socket.(Socket.java:425) at java.net.Socket.(Socket.java:241) at com.mysql.jdbc.StandardSocketFactory.connect(StandardSocketFactory.java:259) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:305) ... 28 more 2013-12-09 21:16:11,461 [ Scheduled Task] WARN LockableServiceSupport - locker keepAlive resulted in org.apache.activemq.broker.SuppressReplyException: Stop/RestartTransportsInitiated at org.apache.activemq.util.DefaultIOExceptionHandler.handle(DefaultIOExceptionHandler.java:124) at org.apache.activemq.broker.BrokerService.handleIOException(BrokerService.java:2528) at org.apache.activemq.store.jdbc.LeaseDatabaseLocker.keepAlive(LeaseDatabaseLocker.java:197) at org.apache.activemq.broker.LockableServiceSupport.keepLockAlive(LockableServiceSupport.java:125) at org.apache.activemq.broker.LockableServiceSupport$1.run(LockableServiceSupport.java:98) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471) at java.util.concurrent.FutureTask$Sync.innerRunAndReset(FutureTask.java:351) at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:178) at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:178) at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603) at java.lang.Thread.run(Thread.java:722) Caused by: java.io.IOException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. at org.apache.activemq.util.IOExceptionSupport.create(IOExceptionSupport.java:45) at org.apache.activemq.store.jdbc.LeaseDatabaseLocker.keepAlive(LeaseDatabaseLocker.java:196) ... 10 more Caused by: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. at sun.reflect.GeneratedConstructorAccessor11.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1121) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:355) at com.mysql.jdbc.ConnectionImpl.coreConnect(ConnectionImpl.java:2479) at com.mysql.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:2516) at com.mysql.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:2301) at com.mysql.jdbc.ConnectionImpl.(ConnectionImpl.java:834) at com.mysql.jdbc.JDBC4Connection.(JDBC4Connection.java:47) at sun.reflect.GeneratedConstructorAccessor12.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:416) at com.mysql.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:317) at org.apache.commons.dbcp.DriverConnectionFactory.createConnection(DriverConnectionFactory.java:38) at org.apache.commons.dbcp.PoolableConnectionFactory.makeObject(PoolableConnectionFactory.java:582) at org.apache.commons.pool.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:1188) at org.apache.commons.dbcp.PoolingDataSource.getConnection(PoolingDataSource.java:106) at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:1044) at org.apache.activemq.store.jdbc.AbstractJDBCLocker.getConnection(AbstractJDBCLocker.java:80) at org.apache.activemq.store.jdbc.LeaseDatabaseLocker.keepAlive(LeaseDatabaseLocker.java:178) ... 10 more Caused by: java.net.ConnectException: Connection refused at java.net.PlainSocketImpl.socketConnect(Native Method) at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:339) at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:200) at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:182) at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:391) at java.net.Socket.connect(Socket.java:579) at java.net.Socket.connect(Socket.java:528) at java.net.Socket.(Socket.java:425) at java.net.Socket.(Socket.java:241) at com.mysql.jdbc.StandardSocketFactory.connect(StandardSocketFactory.java:259) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:305) ... 28 more 2013-12-09 21:16:11,881 [pool-1-thread-1] INFO ConsumerProducerDBFailoverTest - DB restarting 2013-12-09 21:16:13,105 [tart transports] DEBUG LeaseDatabaseLocker - coreActiveMQBroker1, lease keepAlive Query is UPDATE ACTIVEMQ_LOCK SET BROKER_NAME=?, TIME=? WHERE BROKER_NAME=? AND ID = 1 2013-12-09 21:16:13,349 [ActiveMQ Task-1] DEBUG FailoverTransport - urlList connectionList:[tcp://localhost:1666?trace=true], from: [tcp://localhost:1666?trace=true] 2013-12-09 21:16:13,349 [ActiveMQ Task-1] DEBUG FailoverTransport - Waiting 5000 ms before attempting connection. 2013-12-09 21:16:13,521 [tart transports] INFO TransportServerThreadSupport - Listening for connections at: tcp://localhost.home:1666?closeAsync=false 2013-12-09 21:16:13,521 [tart transports] INFO TransportConnector - Connector openwire started 2013-12-09 21:16:13,521 [tart transports] INFO DefaultIOExceptionHandler - Successfully restarted transports on BrokerService[coreActiveMQBroker1] 2013-12-09 21:16:16,454 [ Scheduled Task] DEBUG LeaseDatabaseLocker - coreActiveMQBroker1, lease keepAlive Query is UPDATE ACTIVEMQ_LOCK SET BROKER_NAME=?, TIME=? WHERE BROKER_NAME=? AND ID = 1 2013-12-09 21:16:18,350 [ActiveMQ Task-1] DEBUG FailoverTransport - Attempting 9th connect to: tcp://localhost:1666?trace=true 2013-12-09 21:16:18,351 [ActiveMQ Task-1] DEBUG WireFormatNegotiator - Sending: WireFormatInfo { version=10, properties={MaxFrameSize=9223372036854775807, CacheSize=1024, CacheEnabled=true, SizePrefixDisabled=false, MaxInactivityDurationInitalDelay=10000, TcpNoDelayEnabled=true, MaxInactivityDuration=30000, TightEncodingEnabled=true, StackTraceEnabled=true}, magic=[A,c,t,i,v,e,M,Q]} 2013-12-09 21:16:18,351 [ActiveMQ Task-1] DEBUG Connection:21 - SENDING: WireFormatInfo { version=10, properties={MaxFrameSize=9223372036854775807, CacheSize=1024, CacheEnabled=true, SizePrefixDisabled=false, MaxInactivityDurationInitalDelay=10000, TcpNoDelayEnabled=true, MaxInactivityDuration=30000, TightEncodingEnabled=true, StackTraceEnabled=true}, magic=[A,c,t,i,v,e,M,Q]} 2013-12-09 21:16:18,353 [Broker1] Task-1] DEBUG WireFormatNegotiator - Sending: WireFormatInfo { version=10, properties={MaxFrameSize=9223372036854775807, CacheSize=1024, CacheEnabled=true, SizePrefixDisabled=false, MaxInactivityDurationInitalDelay=10000, TcpNoDelayEnabled=true, MaxInactivityDuration=30000, TightEncodingEnabled=true, StackTraceEnabled=true}, magic=[A,c,t,i,v,e,M,Q]} 2013-12-09 21:16:18,353 [.0.1:58028@1666] DEBUG WireFormatNegotiator - Received WireFormat: WireFormatInfo { version=10, properties={CacheSize=1024, MaxFrameSize=9223372036854775807, CacheEnabled=true, SizePrefixDisabled=false, TcpNoDelayEnabled=true, MaxInactivityDurationInitalDelay=10000, MaxInactivityDuration=30000, TightEncodingEnabled=true, StackTraceEnabled=true}, magic=[A,c,t,i,v,e,M,Q]} 2013-12-09 21:16:18,354 [Broker1] Task-1] DEBUG InactivityMonitor - Using min of local: WireFormatInfo { version=10, properties={MaxFrameSize=9223372036854775807, CacheSize=1024, CacheEnabled=true, SizePrefixDisabled=false, MaxInactivityDurationInitalDelay=10000, TcpNoDelayEnabled=true, MaxInactivityDuration=30000, TightEncodingEnabled=true, StackTraceEnabled=true}, magic=[A,c,t,i,v,e,M,Q]} and remote: WireFormatInfo { version=10, properties={CacheSize=1024, MaxFrameSize=9223372036854775807, CacheEnabled=true, SizePrefixDisabled=false, TcpNoDelayEnabled=true, MaxInactivityDurationInitalDelay=10000, MaxInactivityDuration=30000, TightEncodingEnabled=true, StackTraceEnabled=true}, magic=[A,c,t,i,v,e,M,Q]} 2013-12-09 21:16:18,356 [.0.1:58028@1666] DEBUG WireFormatNegotiator - tcp:///127.0.0.1:58028@1666 before negotiation: OpenWireFormat{version=10, cacheEnabled=false, stackTraceEnabled=false, tightEncodingEnabled=false, sizePrefixDisabled=false, maxFrameSize=9223372036854775807} 2013-12-09 21:16:18,356 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: WireFormatInfo { version=10, properties={CacheSize=1024, MaxFrameSize=9223372036854775807, CacheEnabled=true, SizePrefixDisabled=false, TcpNoDelayEnabled=true, MaxInactivityDurationInitalDelay=10000, MaxInactivityDuration=30000, TightEncodingEnabled=true, StackTraceEnabled=true}, magic=[A,c,t,i,v,e,M,Q]} 2013-12-09 21:16:18,357 [.0.1:58028@1666] DEBUG WireFormatNegotiator - tcp:///127.0.0.1:58028@1666 after negotiation: OpenWireFormat{version=10, cacheEnabled=true, stackTraceEnabled=true, tightEncodingEnabled=true, sizePrefixDisabled=false, maxFrameSize=9223372036854775807} 2013-12-09 21:16:18,357 [.0.1:1666@58028] DEBUG InactivityMonitor - Using min of local: WireFormatInfo { version=10, properties={MaxFrameSize=9223372036854775807, CacheSize=1024, CacheEnabled=true, SizePrefixDisabled=false, MaxInactivityDurationInitalDelay=10000, TcpNoDelayEnabled=true, MaxInactivityDuration=30000, TightEncodingEnabled=true, StackTraceEnabled=true}, magic=[A,c,t,i,v,e,M,Q]} and remote: WireFormatInfo { version=10, properties={CacheSize=1024, MaxFrameSize=9223372036854775807, CacheEnabled=true, SizePrefixDisabled=false, TcpNoDelayEnabled=true, MaxInactivityDurationInitalDelay=10000, MaxInactivityDuration=30000, TightEncodingEnabled=true, StackTraceEnabled=true}, magic=[A,c,t,i,v,e,M,Q]} 2013-12-09 21:16:18,359 [.0.1:1666@58028] DEBUG WireFormatNegotiator - Received WireFormat: WireFormatInfo { version=10, properties={CacheSize=1024, MaxFrameSize=9223372036854775807, CacheEnabled=true, SizePrefixDisabled=false, TcpNoDelayEnabled=true, MaxInactivityDurationInitalDelay=10000, MaxInactivityDuration=30000, TightEncodingEnabled=true, StackTraceEnabled=true}, magic=[A,c,t,i,v,e,M,Q]} 2013-12-09 21:16:18,359 [.0.1:1666@58028] DEBUG WireFormatNegotiator - tcp://localhost/127.0.0.1:1666@58028 before negotiation: OpenWireFormat{version=10, cacheEnabled=false, stackTraceEnabled=false, tightEncodingEnabled=false, sizePrefixDisabled=false, maxFrameSize=9223372036854775807} 2013-12-09 21:16:18,360 [.0.1:1666@58028] DEBUG WireFormatNegotiator - tcp://localhost/127.0.0.1:1666@58028 after negotiation: OpenWireFormat{version=10, cacheEnabled=true, stackTraceEnabled=true, tightEncodingEnabled=true, sizePrefixDisabled=false, maxFrameSize=9223372036854775807} 2013-12-09 21:16:18,360 [ActiveMQ Task-1] DEBUG Connection:21 - SENDING: ConnectionControl {commandId = 0, responseRequired = false, suspend = false, resume = false, close = false, exit = false, faultTolerant = true, connectedBrokers = , reconnectTo = , token = null, rebalanceConnection = false} 2013-12-09 21:16:18,360 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: BrokerInfo {commandId = 0, responseRequired = false, brokerId = ID:sideshow.home-57960-1386620121463-0:1, brokerURL = tcp://127.0.0.1:1666, slaveBroker = false, masterBroker = false, faultTolerantConfiguration = false, networkConnection = false, duplexConnection = false, peerBrokerInfos = null, brokerName = coreActiveMQBroker1, connectionId = 0, brokerUploadUrl = null, networkProperties = null} 2013-12-09 21:16:18,360 [ActiveMQ Task-1] DEBUG ConnectionStateTracker - conn: ID:sideshow.home-57960-1386620121463-3:1 2013-12-09 21:16:18,361 [ActiveMQ Task-1] DEBUG Connection:21 - SENDING: ConnectionInfo {commandId = 1, responseRequired = true, connectionId = ID:sideshow.home-57960-1386620121463-3:1, clientId = ID:sideshow.home-57960-1386620121463-2:1, clientIp = null, userName = admin, password = *****, brokerPath = null, brokerMasterConnector = false, manageable = true, clientMaster = true, faultTolerant = true, failoverReconnect = true} 2013-12-09 21:16:18,362 [ActiveMQ Task-1] DEBUG ConnectionStateTracker - session: ID:sideshow.home-57960-1386620121463-3:1:-1 2013-12-09 21:16:18,363 [.0.1:58028@1666] DEBUG TransportConnection - Setting up new connection id: ID:sideshow.home-57960-1386620121463-3:1, address: tcp://127.0.0.1:58028, info: ConnectionInfo {commandId = 1, responseRequired = true, connectionId = ID:sideshow.home-57960-1386620121463-3:1, clientId = ID:sideshow.home-57960-1386620121463-2:1, clientIp = null, userName = admin, password = *****, brokerPath = null, brokerMasterConnector = false, manageable = true, clientMaster = true, faultTolerant = true, failoverReconnect = true} 2013-12-09 21:16:18,363 [ActiveMQ Task-1] DEBUG Connection:21 - SENDING: SessionInfo {commandId = 0, responseRequired = false, sessionId = ID:sideshow.home-57960-1386620121463-3:1:-1} 2013-12-09 21:16:18,364 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 1} 2013-12-09 21:16:18,364 [ActiveMQ Task-1] DEBUG ConnectionStateTracker - restore consumer: ID:sideshow.home-57960-1386620121463-3:1:-1:1 2013-12-09 21:16:18,364 [.0.1:1666@58028] DEBUG ResponseCorrelator - Received unexpected response: {Response {commandId = 0, responseRequired = false, correlationId = 1}}for command id: 1 2013-12-09 21:16:18,364 [ActiveMQ Task-1] DEBUG Connection:21 - SENDING: ConsumerInfo {commandId = 2, responseRequired = true, consumerId = ID:sideshow.home-57960-1386620121463-3:1:-1:1, destination = ActiveMQ.Advisory.TempQueue,ActiveMQ.Advisory.TempTopic, prefetchSize = 1000, maximumPendingMessageLimit = 0, browser = false, dispatchAsync = true, selector = null, clientId = null, subscriptionName = null, noLocal = true, exclusive = false, retroactive = false, priority = 0, brokerPath = null, optimizedAcknowledge = false, noRangeAcks = false, additionalPredicate = null} 2013-12-09 21:16:18,364 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: ConnectionControl {commandId = 0, responseRequired = false, suspend = false, resume = false, close = false, exit = false, faultTolerant = false, connectedBrokers = , reconnectTo = , token = null, rebalanceConnection = false} 2013-12-09 21:16:18,365 [.0.1:58028@1666] DEBUG AbstractRegion - coreActiveMQBroker1 adding consumer: ID:sideshow.home-57960-1386620121463-3:1:-1:1 for destination: ActiveMQ.Advisory.TempQueue,ActiveMQ.Advisory.TempTopic 2013-12-09 21:16:18,365 [ActiveMQ Task-1] DEBUG ConnectionStateTracker - session: ID:sideshow.home-57960-1386620121463-3:1:1 2013-12-09 21:16:18,366 [ActiveMQ Task-1] DEBUG Connection:21 - SENDING: SessionInfo {commandId = 3, responseRequired = false, sessionId = ID:sideshow.home-57960-1386620121463-3:1:1} 2013-12-09 21:16:18,366 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 2} 2013-12-09 21:16:18,367 [ActiveMQ Task-1] DEBUG ConnectionStateTracker - producer: ID:sideshow.home-57960-1386620121463-3:1:1:1 2013-12-09 21:16:18,367 [.0.1:1666@58028] DEBUG ResponseCorrelator - Received unexpected response: {Response {commandId = 0, responseRequired = false, correlationId = 2}}for command id: 2 2013-12-09 21:16:18,367 [ActiveMQ Task-1] DEBUG Connection:21 - SENDING: ProducerInfo {commandId = 4, responseRequired = true, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, brokerPath = null, dispatchAsync = false, windowSize = 0} 2013-12-09 21:16:18,368 [ActiveMQ Task-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 365, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:361, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620161869, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@74de56cd, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 359} 2013-12-09 21:16:18,368 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 4} 2013-12-09 21:16:18,369 [.0.1:1666@58028] DEBUG ResponseCorrelator - Received unexpected response: {Response {commandId = 0, responseRequired = false, correlationId = 4}}for command id: 4 2013-12-09 21:16:18,369 [ActiveMQ Task-1] DEBUG FailoverTransport - Connection established 2013-12-09 21:16:18,370 [ActiveMQ Task-1] INFO FailoverTransport - Successfully reconnected to tcp://localhost:1666?trace=true 2013-12-09 21:16:18,371 [.0.1:58028@1666] DEBUG ProducerBrokerExchange - last stored sequence id set: 361 2013-12-09 21:16:18,372 [.0.1:58028@1666] DEBUG ProducerBrokerExchange - suppressing duplicated message send [ID:sideshow.home-57960-1386620121463-3:1:1:1:361] with producerSequenceId [361] less than last stored: 361 2013-12-09 21:16:18,372 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 365} 2013-12-09 21:16:18,372 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 359 2013-12-09 21:16:18,373 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 366, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:362, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620178373, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 360} 2013-12-09 21:16:18,429 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:362 sent to queue://test_queue_z0 2013-12-09 21:16:18,429 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 159, Inflight: 0, pagedInMessages.size 200, enqueueCount: 359, dequeueCount: 0 2013-12-09 21:16:18,429 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 366} 2013-12-09 21:16:18,430 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 360 2013-12-09 21:16:18,430 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 367, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:363, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620178430, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 361} 2013-12-09 21:16:18,486 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:363 sent to queue://test_queue_z0 2013-12-09 21:16:18,487 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 160, Inflight: 0, pagedInMessages.size 200, enqueueCount: 360, dequeueCount: 0 2013-12-09 21:16:18,487 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 367} 2013-12-09 21:16:18,487 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 361 2013-12-09 21:16:18,487 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 368, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:364, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620178487, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 362} 2013-12-09 21:16:18,544 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:364 sent to queue://test_queue_z0 2013-12-09 21:16:18,544 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 161, Inflight: 0, pagedInMessages.size 200, enqueueCount: 361, dequeueCount: 0 2013-12-09 21:16:18,545 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 368} 2013-12-09 21:16:18,545 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 362 2013-12-09 21:16:18,545 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 369, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:365, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620178545, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 363} 2013-12-09 21:16:18,602 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:365 sent to queue://test_queue_z0 2013-12-09 21:16:18,603 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 162, Inflight: 0, pagedInMessages.size 200, enqueueCount: 362, dequeueCount: 0 2013-12-09 21:16:18,603 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 369} 2013-12-09 21:16:18,603 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 363 2013-12-09 21:16:18,603 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 370, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:366, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620178603, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 364} 2013-12-09 21:16:18,660 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:366 sent to queue://test_queue_z0 2013-12-09 21:16:18,661 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 163, Inflight: 0, pagedInMessages.size 200, enqueueCount: 363, dequeueCount: 0 2013-12-09 21:16:18,661 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 370} 2013-12-09 21:16:18,661 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 364 2013-12-09 21:16:18,662 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 371, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:367, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620178662, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 365} 2013-12-09 21:16:18,728 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:367 sent to queue://test_queue_z0 2013-12-09 21:16:18,728 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 164, Inflight: 0, pagedInMessages.size 200, enqueueCount: 364, dequeueCount: 0 2013-12-09 21:16:18,728 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 371} 2013-12-09 21:16:18,729 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 365 2013-12-09 21:16:18,729 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 372, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:368, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620178729, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 366} 2013-12-09 21:16:18,786 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:368 sent to queue://test_queue_z0 2013-12-09 21:16:18,786 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 165, Inflight: 0, pagedInMessages.size 200, enqueueCount: 365, dequeueCount: 0 2013-12-09 21:16:18,787 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 372} 2013-12-09 21:16:18,787 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 366 2013-12-09 21:16:18,787 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 373, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:369, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620178787, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 367} 2013-12-09 21:16:18,844 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:369 sent to queue://test_queue_z0 2013-12-09 21:16:18,844 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 166, Inflight: 0, pagedInMessages.size 200, enqueueCount: 366, dequeueCount: 0 2013-12-09 21:16:18,844 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 373} 2013-12-09 21:16:18,845 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 367 2013-12-09 21:16:18,845 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 374, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:370, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620178845, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 368} 2013-12-09 21:16:18,902 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:370 sent to queue://test_queue_z0 2013-12-09 21:16:18,902 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 167, Inflight: 0, pagedInMessages.size 200, enqueueCount: 367, dequeueCount: 0 2013-12-09 21:16:18,902 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 374} 2013-12-09 21:16:18,903 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 368 2013-12-09 21:16:18,903 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 375, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:371, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620178903, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 369} 2013-12-09 21:16:18,960 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:371 sent to queue://test_queue_z0 2013-12-09 21:16:18,960 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 168, Inflight: 0, pagedInMessages.size 200, enqueueCount: 368, dequeueCount: 0 2013-12-09 21:16:18,960 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 375} 2013-12-09 21:16:18,961 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 369 2013-12-09 21:16:18,961 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 376, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:372, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620178961, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 370} 2013-12-09 21:16:19,018 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:372 sent to queue://test_queue_z0 2013-12-09 21:16:19,019 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 169, Inflight: 0, pagedInMessages.size 200, enqueueCount: 369, dequeueCount: 0 2013-12-09 21:16:19,019 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 376} 2013-12-09 21:16:19,019 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 370 2013-12-09 21:16:19,020 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 377, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:373, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620179019, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 371} 2013-12-09 21:16:19,076 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:373 sent to queue://test_queue_z0 2013-12-09 21:16:19,076 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 170, Inflight: 0, pagedInMessages.size 200, enqueueCount: 370, dequeueCount: 0 2013-12-09 21:16:19,076 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 377} 2013-12-09 21:16:19,077 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 371 2013-12-09 21:16:19,077 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 378, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:374, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620179077, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 372} 2013-12-09 21:16:19,134 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:374 sent to queue://test_queue_z0 2013-12-09 21:16:19,134 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 171, Inflight: 0, pagedInMessages.size 200, enqueueCount: 371, dequeueCount: 0 2013-12-09 21:16:19,134 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 378} 2013-12-09 21:16:19,135 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 372 2013-12-09 21:16:19,135 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 379, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:375, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620179135, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 373} 2013-12-09 21:16:19,192 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:375 sent to queue://test_queue_z0 2013-12-09 21:16:19,192 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 172, Inflight: 0, pagedInMessages.size 200, enqueueCount: 372, dequeueCount: 0 2013-12-09 21:16:19,193 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 379} 2013-12-09 21:16:19,193 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 373 2013-12-09 21:16:19,193 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 380, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:376, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620179193, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 374} 2013-12-09 21:16:19,250 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:376 sent to queue://test_queue_z0 2013-12-09 21:16:19,250 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 173, Inflight: 0, pagedInMessages.size 200, enqueueCount: 373, dequeueCount: 0 2013-12-09 21:16:19,250 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 380} 2013-12-09 21:16:19,251 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 374 2013-12-09 21:16:19,251 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 381, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:377, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620179251, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 375} 2013-12-09 21:16:19,308 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:377 sent to queue://test_queue_z0 2013-12-09 21:16:19,309 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 174, Inflight: 0, pagedInMessages.size 200, enqueueCount: 374, dequeueCount: 0 2013-12-09 21:16:19,309 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 381} 2013-12-09 21:16:19,309 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 375 2013-12-09 21:16:19,309 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 382, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:378, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620179309, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 376} 2013-12-09 21:16:19,374 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:378 sent to queue://test_queue_z0 2013-12-09 21:16:19,374 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 175, Inflight: 0, pagedInMessages.size 200, enqueueCount: 375, dequeueCount: 0 2013-12-09 21:16:19,375 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 382} 2013-12-09 21:16:19,375 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 376 2013-12-09 21:16:19,375 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 383, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:379, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620179375, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 377} 2013-12-09 21:16:19,440 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:379 sent to queue://test_queue_z0 2013-12-09 21:16:19,441 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 176, Inflight: 0, pagedInMessages.size 200, enqueueCount: 376, dequeueCount: 0 2013-12-09 21:16:19,441 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 383} 2013-12-09 21:16:19,441 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 377 2013-12-09 21:16:19,441 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 384, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:380, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620179441, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 378} 2013-12-09 21:16:19,506 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:380 sent to queue://test_queue_z0 2013-12-09 21:16:19,507 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 177, Inflight: 0, pagedInMessages.size 200, enqueueCount: 377, dequeueCount: 0 2013-12-09 21:16:19,507 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 384} 2013-12-09 21:16:19,507 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 378 2013-12-09 21:16:19,508 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 385, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:381, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620179507, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 379} 2013-12-09 21:16:19,573 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:381 sent to queue://test_queue_z0 2013-12-09 21:16:19,573 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 178, Inflight: 0, pagedInMessages.size 200, enqueueCount: 378, dequeueCount: 0 2013-12-09 21:16:19,573 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 385} 2013-12-09 21:16:19,574 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 379 2013-12-09 21:16:19,574 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 386, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:382, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620179574, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 380} 2013-12-09 21:16:19,639 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:382 sent to queue://test_queue_z0 2013-12-09 21:16:19,639 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 179, Inflight: 0, pagedInMessages.size 200, enqueueCount: 379, dequeueCount: 0 2013-12-09 21:16:19,639 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 386} 2013-12-09 21:16:19,640 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 380 2013-12-09 21:16:19,640 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 387, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:383, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620179640, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 381} 2013-12-09 21:16:19,697 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:383 sent to queue://test_queue_z0 2013-12-09 21:16:19,698 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 180, Inflight: 0, pagedInMessages.size 200, enqueueCount: 380, dequeueCount: 0 2013-12-09 21:16:19,698 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 387} 2013-12-09 21:16:19,698 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 381 2013-12-09 21:16:19,699 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 388, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:384, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620179699, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 382} 2013-12-09 21:16:19,755 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:384 sent to queue://test_queue_z0 2013-12-09 21:16:19,756 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 181, Inflight: 0, pagedInMessages.size 200, enqueueCount: 381, dequeueCount: 0 2013-12-09 21:16:19,756 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 388} 2013-12-09 21:16:19,756 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 382 2013-12-09 21:16:19,757 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 389, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:385, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620179756, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 383} 2013-12-09 21:16:19,813 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:385 sent to queue://test_queue_z0 2013-12-09 21:16:19,813 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 182, Inflight: 0, pagedInMessages.size 200, enqueueCount: 382, dequeueCount: 0 2013-12-09 21:16:19,813 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 389} 2013-12-09 21:16:19,814 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 383 2013-12-09 21:16:19,814 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 390, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:386, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620179814, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 384} 2013-12-09 21:16:19,871 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:386 sent to queue://test_queue_z0 2013-12-09 21:16:19,871 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 183, Inflight: 0, pagedInMessages.size 200, enqueueCount: 383, dequeueCount: 0 2013-12-09 21:16:19,872 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 390} 2013-12-09 21:16:19,872 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 384 2013-12-09 21:16:19,872 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 391, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:387, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620179872, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 385} 2013-12-09 21:16:19,929 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:387 sent to queue://test_queue_z0 2013-12-09 21:16:19,929 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 184, Inflight: 0, pagedInMessages.size 200, enqueueCount: 384, dequeueCount: 0 2013-12-09 21:16:19,929 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 391} 2013-12-09 21:16:19,930 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 385 2013-12-09 21:16:19,930 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 392, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:388, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620179930, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 386} 2013-12-09 21:16:19,987 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:388 sent to queue://test_queue_z0 2013-12-09 21:16:19,987 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 185, Inflight: 0, pagedInMessages.size 200, enqueueCount: 385, dequeueCount: 0 2013-12-09 21:16:19,987 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 392} 2013-12-09 21:16:19,988 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 386 2013-12-09 21:16:19,988 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 393, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:389, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620179988, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 387} 2013-12-09 21:16:20,045 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:389 sent to queue://test_queue_z0 2013-12-09 21:16:20,045 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 186, Inflight: 0, pagedInMessages.size 200, enqueueCount: 386, dequeueCount: 0 2013-12-09 21:16:20,045 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 393} 2013-12-09 21:16:20,046 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 387 2013-12-09 21:16:20,046 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 394, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:390, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620180046, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 388} 2013-12-09 21:16:20,103 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:390 sent to queue://test_queue_z0 2013-12-09 21:16:20,103 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 187, Inflight: 0, pagedInMessages.size 200, enqueueCount: 387, dequeueCount: 0 2013-12-09 21:16:20,103 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 394} 2013-12-09 21:16:20,104 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 388 2013-12-09 21:16:20,104 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 395, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:391, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620180104, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 389} 2013-12-09 21:16:20,161 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:391 sent to queue://test_queue_z0 2013-12-09 21:16:20,161 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 188, Inflight: 0, pagedInMessages.size 200, enqueueCount: 388, dequeueCount: 0 2013-12-09 21:16:20,161 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 395} 2013-12-09 21:16:20,162 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 389 2013-12-09 21:16:20,162 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 396, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:392, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620180162, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 390} 2013-12-09 21:16:20,219 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:392 sent to queue://test_queue_z0 2013-12-09 21:16:20,219 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 189, Inflight: 0, pagedInMessages.size 200, enqueueCount: 389, dequeueCount: 0 2013-12-09 21:16:20,220 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 396} 2013-12-09 21:16:20,220 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 390 2013-12-09 21:16:20,220 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 397, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:393, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620180220, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 391} 2013-12-09 21:16:20,277 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:393 sent to queue://test_queue_z0 2013-12-09 21:16:20,277 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 190, Inflight: 0, pagedInMessages.size 200, enqueueCount: 390, dequeueCount: 0 2013-12-09 21:16:20,277 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 397} 2013-12-09 21:16:20,278 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 391 2013-12-09 21:16:20,278 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 398, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:394, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620180278, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 392} 2013-12-09 21:16:20,335 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:394 sent to queue://test_queue_z0 2013-12-09 21:16:20,335 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 191, Inflight: 0, pagedInMessages.size 200, enqueueCount: 391, dequeueCount: 0 2013-12-09 21:16:20,335 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 398} 2013-12-09 21:16:20,336 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 392 2013-12-09 21:16:20,336 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 399, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:395, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620180336, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 393} 2013-12-09 21:16:20,393 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:395 sent to queue://test_queue_z0 2013-12-09 21:16:20,393 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 192, Inflight: 0, pagedInMessages.size 200, enqueueCount: 392, dequeueCount: 0 2013-12-09 21:16:20,393 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 399} 2013-12-09 21:16:20,394 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 393 2013-12-09 21:16:20,394 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 400, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:396, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620180394, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 394} 2013-12-09 21:16:20,451 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:396 sent to queue://test_queue_z0 2013-12-09 21:16:20,451 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 193, Inflight: 0, pagedInMessages.size 200, enqueueCount: 393, dequeueCount: 0 2013-12-09 21:16:20,452 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 400} 2013-12-09 21:16:20,452 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 394 2013-12-09 21:16:20,453 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 401, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:397, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620180453, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 395} 2013-12-09 21:16:20,509 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:397 sent to queue://test_queue_z0 2013-12-09 21:16:20,509 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 194, Inflight: 0, pagedInMessages.size 200, enqueueCount: 394, dequeueCount: 0 2013-12-09 21:16:20,509 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 401} 2013-12-09 21:16:20,510 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 395 2013-12-09 21:16:20,510 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 402, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:398, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620180510, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 396} 2013-12-09 21:16:20,567 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:398 sent to queue://test_queue_z0 2013-12-09 21:16:20,567 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 195, Inflight: 0, pagedInMessages.size 200, enqueueCount: 395, dequeueCount: 0 2013-12-09 21:16:20,567 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 402} 2013-12-09 21:16:20,568 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 396 2013-12-09 21:16:20,568 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 403, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:399, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620180568, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 397} 2013-12-09 21:16:20,625 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:399 sent to queue://test_queue_z0 2013-12-09 21:16:20,625 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 196, Inflight: 0, pagedInMessages.size 200, enqueueCount: 396, dequeueCount: 0 2013-12-09 21:16:20,625 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 403} 2013-12-09 21:16:20,626 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 397 2013-12-09 21:16:20,626 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 404, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:400, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620180626, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 398} 2013-12-09 21:16:20,683 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:400 sent to queue://test_queue_z0 2013-12-09 21:16:20,683 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 197, Inflight: 0, pagedInMessages.size 200, enqueueCount: 397, dequeueCount: 0 2013-12-09 21:16:20,683 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 404} 2013-12-09 21:16:20,684 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 398 2013-12-09 21:16:20,684 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 405, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:401, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620180684, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 399} 2013-12-09 21:16:20,741 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:401 sent to queue://test_queue_z0 2013-12-09 21:16:20,741 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 198, Inflight: 0, pagedInMessages.size 200, enqueueCount: 398, dequeueCount: 0 2013-12-09 21:16:20,741 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 405} 2013-12-09 21:16:20,742 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 399 2013-12-09 21:16:20,742 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 406, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:402, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620180742, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 400} 2013-12-09 21:16:20,809 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:402 sent to queue://test_queue_z0 2013-12-09 21:16:20,809 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 199, Inflight: 0, pagedInMessages.size 200, enqueueCount: 399, dequeueCount: 0 2013-12-09 21:16:20,809 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 406} 2013-12-09 21:16:20,810 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 400 2013-12-09 21:16:20,810 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 407, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:403, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620180810, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 401} 2013-12-09 21:16:20,867 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:403 sent to queue://test_queue_z0 2013-12-09 21:16:20,867 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 200, Inflight: 0, pagedInMessages.size 200, enqueueCount: 400, dequeueCount: 0 2013-12-09 21:16:20,867 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 407} 2013-12-09 21:16:20,868 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 401 2013-12-09 21:16:20,868 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 408, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:404, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620180868, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 402} 2013-12-09 21:16:20,925 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:404 sent to queue://test_queue_z0 2013-12-09 21:16:20,925 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 200, Inflight: 0, pagedInMessages.size 200, enqueueCount: 401, dequeueCount: 0 2013-12-09 21:16:20,925 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 408} 2013-12-09 21:16:20,925 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 402 2013-12-09 21:16:20,926 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 409, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:405, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620180926, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 403} 2013-12-09 21:16:20,983 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:405 sent to queue://test_queue_z0 2013-12-09 21:16:20,983 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 200, Inflight: 0, pagedInMessages.size 200, enqueueCount: 402, dequeueCount: 0 2013-12-09 21:16:20,984 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 409} 2013-12-09 21:16:20,984 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 403 2013-12-09 21:16:20,984 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 410, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:406, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620180984, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 404} 2013-12-09 21:16:21,040 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:406 sent to queue://test_queue_z0 2013-12-09 21:16:21,041 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 200, Inflight: 0, pagedInMessages.size 200, enqueueCount: 403, dequeueCount: 0 2013-12-09 21:16:21,041 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 410} 2013-12-09 21:16:21,041 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 404 2013-12-09 21:16:21,042 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 411, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:407, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620181041, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 405} 2013-12-09 21:16:21,107 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:407 sent to queue://test_queue_z0 2013-12-09 21:16:21,107 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 200, Inflight: 0, pagedInMessages.size 200, enqueueCount: 404, dequeueCount: 0 2013-12-09 21:16:21,107 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 411} 2013-12-09 21:16:21,108 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 405 2013-12-09 21:16:21,108 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 412, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:408, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620181108, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 406} 2013-12-09 21:16:21,173 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:408 sent to queue://test_queue_z0 2013-12-09 21:16:21,173 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 200, Inflight: 0, pagedInMessages.size 200, enqueueCount: 405, dequeueCount: 0 2013-12-09 21:16:21,173 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 412} 2013-12-09 21:16:21,174 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 406 2013-12-09 21:16:21,174 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 413, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:409, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620181174, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 407} 2013-12-09 21:16:21,239 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:409 sent to queue://test_queue_z0 2013-12-09 21:16:21,240 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 200, Inflight: 0, pagedInMessages.size 200, enqueueCount: 406, dequeueCount: 0 2013-12-09 21:16:21,240 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 413} 2013-12-09 21:16:21,240 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 407 2013-12-09 21:16:21,240 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 414, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:410, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620181240, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 408} 2013-12-09 21:16:21,297 [.0.1:58028@1666] DEBUG Usage - default:memory:queue://test_queue_z0:memory: usage change from: 3% of available memory, to: 4% of available memory 2013-12-09 21:16:21,297 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:410 sent to queue://test_queue_z0 2013-12-09 21:16:21,298 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 200, Inflight: 0, pagedInMessages.size 200, enqueueCount: 407, dequeueCount: 0 2013-12-09 21:16:21,298 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 414} 2013-12-09 21:16:21,298 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 408 2013-12-09 21:16:21,299 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 415, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:411, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620181298, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 409} 2013-12-09 21:16:21,363 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:411 sent to queue://test_queue_z0 2013-12-09 21:16:21,364 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 200, Inflight: 0, pagedInMessages.size 200, enqueueCount: 408, dequeueCount: 0 2013-12-09 21:16:21,364 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 415} 2013-12-09 21:16:21,364 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 409 2013-12-09 21:16:21,365 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 416, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:412, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620181364, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 410} 2013-12-09 21:16:21,430 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:412 sent to queue://test_queue_z0 2013-12-09 21:16:21,430 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 200, Inflight: 0, pagedInMessages.size 200, enqueueCount: 409, dequeueCount: 0 2013-12-09 21:16:21,430 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 416} 2013-12-09 21:16:21,431 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 410 2013-12-09 21:16:21,431 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 417, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:413, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620181431, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 411} 2013-12-09 21:16:21,454 [ Scheduled Task] DEBUG LeaseDatabaseLocker - coreActiveMQBroker1, lease keepAlive Query is UPDATE ACTIVEMQ_LOCK SET BROKER_NAME=?, TIME=? WHERE BROKER_NAME=? AND ID = 1 2013-12-09 21:16:21,488 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:413 sent to queue://test_queue_z0 2013-12-09 21:16:21,488 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 200, Inflight: 0, pagedInMessages.size 200, enqueueCount: 410, dequeueCount: 0 2013-12-09 21:16:21,488 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 417} 2013-12-09 21:16:21,489 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 411 2013-12-09 21:16:21,489 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 418, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:414, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620181489, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 412} 2013-12-09 21:16:21,587 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:414 sent to queue://test_queue_z0 2013-12-09 21:16:21,587 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 200, Inflight: 0, pagedInMessages.size 200, enqueueCount: 411, dequeueCount: 0 2013-12-09 21:16:21,587 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 418} 2013-12-09 21:16:21,588 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 412 2013-12-09 21:16:21,588 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 419, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:415, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620181588, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 413} 2013-12-09 21:16:21,645 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:415 sent to queue://test_queue_z0 2013-12-09 21:16:21,646 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 200, Inflight: 0, pagedInMessages.size 200, enqueueCount: 412, dequeueCount: 0 2013-12-09 21:16:21,646 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 419} 2013-12-09 21:16:21,646 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 413 2013-12-09 21:16:21,646 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 420, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:416, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620181646, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 414} 2013-12-09 21:16:21,703 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:416 sent to queue://test_queue_z0 2013-12-09 21:16:21,704 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 200, Inflight: 0, pagedInMessages.size 200, enqueueCount: 413, dequeueCount: 0 2013-12-09 21:16:21,704 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 420} 2013-12-09 21:16:21,704 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 414 2013-12-09 21:16:21,704 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 421, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:417, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620181704, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 415} 2013-12-09 21:16:21,761 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:417 sent to queue://test_queue_z0 2013-12-09 21:16:21,762 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 200, Inflight: 0, pagedInMessages.size 200, enqueueCount: 414, dequeueCount: 0 2013-12-09 21:16:21,762 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 421} 2013-12-09 21:16:21,762 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 415 2013-12-09 21:16:21,762 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 422, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:418, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620181762, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 416} 2013-12-09 21:16:21,819 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:418 sent to queue://test_queue_z0 2013-12-09 21:16:21,819 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 200, Inflight: 0, pagedInMessages.size 200, enqueueCount: 415, dequeueCount: 0 2013-12-09 21:16:21,819 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 422} 2013-12-09 21:16:21,820 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 416 2013-12-09 21:16:21,820 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 423, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:419, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620181820, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 417} 2013-12-09 21:16:21,871 [ker1] Scheduler] DEBUG Queue - queue://test_queue_z0 expiring messages .. 2013-12-09 21:16:21,871 [ker1] Scheduler] DEBUG Queue - test_queue_z0 toPageIn: 200, Inflight: 0, pagedInMessages.size 200, enqueueCount: 415, dequeueCount: 0 2013-12-09 21:16:21,877 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:419 sent to queue://test_queue_z0 2013-12-09 21:16:21,878 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 16, Inflight: 0, pagedInMessages.size 283, enqueueCount: 416, dequeueCount: 0 2013-12-09 21:16:21,878 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 423} 2013-12-09 21:16:21,879 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 417 2013-12-09 21:16:21,879 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 424, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:420, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620181879, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 418} 2013-12-09 21:16:21,894 [ker1] Scheduler] DEBUG Queue - queue://test_queue_z0 expiring messages done. 2013-12-09 21:16:21,894 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 16, Inflight: 0, pagedInMessages.size 400, enqueueCount: 416, dequeueCount: 0 2013-12-09 21:16:21,895 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 16, Inflight: 0, pagedInMessages.size 400, enqueueCount: 416, dequeueCount: 0 2013-12-09 21:16:21,895 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 16, Inflight: 0, pagedInMessages.size 400, enqueueCount: 416, dequeueCount: 0 2013-12-09 21:16:21,935 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:420 sent to queue://test_queue_z0 2013-12-09 21:16:21,936 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 17, Inflight: 0, pagedInMessages.size 400, enqueueCount: 417, dequeueCount: 0 2013-12-09 21:16:21,936 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 424} 2013-12-09 21:16:21,936 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 418 2013-12-09 21:16:21,937 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 425, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:421, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620181937, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 419} 2013-12-09 21:16:21,993 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:421 sent to queue://test_queue_z0 2013-12-09 21:16:21,994 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 18, Inflight: 0, pagedInMessages.size 400, enqueueCount: 418, dequeueCount: 0 2013-12-09 21:16:21,994 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 425} 2013-12-09 21:16:21,994 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 419 2013-12-09 21:16:21,995 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 426, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:422, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620181995, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 420} 2013-12-09 21:16:22,051 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:422 sent to queue://test_queue_z0 2013-12-09 21:16:22,052 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 19, Inflight: 0, pagedInMessages.size 400, enqueueCount: 419, dequeueCount: 0 2013-12-09 21:16:22,052 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 426} 2013-12-09 21:16:22,052 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 420 2013-12-09 21:16:22,053 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 427, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:423, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620182052, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 421} 2013-12-09 21:16:22,109 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:423 sent to queue://test_queue_z0 2013-12-09 21:16:22,109 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 20, Inflight: 0, pagedInMessages.size 400, enqueueCount: 420, dequeueCount: 0 2013-12-09 21:16:22,110 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 427} 2013-12-09 21:16:22,110 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 421 2013-12-09 21:16:22,110 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 428, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:424, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620182110, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 422} 2013-12-09 21:16:22,167 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:424 sent to queue://test_queue_z0 2013-12-09 21:16:22,167 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 21, Inflight: 0, pagedInMessages.size 400, enqueueCount: 421, dequeueCount: 0 2013-12-09 21:16:22,168 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 428} 2013-12-09 21:16:22,168 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 422 2013-12-09 21:16:22,168 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 429, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:425, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620182168, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 423} 2013-12-09 21:16:22,225 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:425 sent to queue://test_queue_z0 2013-12-09 21:16:22,225 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 22, Inflight: 0, pagedInMessages.size 400, enqueueCount: 422, dequeueCount: 0 2013-12-09 21:16:22,225 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 429} 2013-12-09 21:16:22,226 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 423 2013-12-09 21:16:22,227 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 430, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:426, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620182226, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 424} 2013-12-09 21:16:22,283 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:426 sent to queue://test_queue_z0 2013-12-09 21:16:22,283 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 23, Inflight: 0, pagedInMessages.size 400, enqueueCount: 423, dequeueCount: 0 2013-12-09 21:16:22,283 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 430} 2013-12-09 21:16:22,284 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 424 2013-12-09 21:16:22,284 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 431, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:427, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620182284, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 425} 2013-12-09 21:16:22,341 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:427 sent to queue://test_queue_z0 2013-12-09 21:16:22,341 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 24, Inflight: 0, pagedInMessages.size 400, enqueueCount: 424, dequeueCount: 0 2013-12-09 21:16:22,341 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 431} 2013-12-09 21:16:22,342 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 425 2013-12-09 21:16:22,342 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 432, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:428, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620182342, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 426} 2013-12-09 21:16:22,399 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:428 sent to queue://test_queue_z0 2013-12-09 21:16:22,399 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 25, Inflight: 0, pagedInMessages.size 400, enqueueCount: 425, dequeueCount: 0 2013-12-09 21:16:22,399 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 432} 2013-12-09 21:16:22,400 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 426 2013-12-09 21:16:22,400 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 433, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:429, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620182400, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 427} 2013-12-09 21:16:22,457 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:429 sent to queue://test_queue_z0 2013-12-09 21:16:22,457 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 26, Inflight: 0, pagedInMessages.size 400, enqueueCount: 426, dequeueCount: 0 2013-12-09 21:16:22,457 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 433} 2013-12-09 21:16:22,458 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 427 2013-12-09 21:16:22,458 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 434, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:430, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620182458, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 428} 2013-12-09 21:16:22,515 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:430 sent to queue://test_queue_z0 2013-12-09 21:16:22,515 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 27, Inflight: 0, pagedInMessages.size 400, enqueueCount: 427, dequeueCount: 0 2013-12-09 21:16:22,515 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 434} 2013-12-09 21:16:22,516 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 428 2013-12-09 21:16:22,516 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 435, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:431, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620182516, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 429} 2013-12-09 21:16:22,573 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:431 sent to queue://test_queue_z0 2013-12-09 21:16:22,573 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 28, Inflight: 0, pagedInMessages.size 400, enqueueCount: 428, dequeueCount: 0 2013-12-09 21:16:22,573 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 435} 2013-12-09 21:16:22,574 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 429 2013-12-09 21:16:22,574 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 436, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:432, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620182574, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 430} 2013-12-09 21:16:22,631 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:432 sent to queue://test_queue_z0 2013-12-09 21:16:22,632 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 29, Inflight: 0, pagedInMessages.size 400, enqueueCount: 429, dequeueCount: 0 2013-12-09 21:16:22,632 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 436} 2013-12-09 21:16:22,632 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 430 2013-12-09 21:16:22,633 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 437, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:433, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620182632, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 431} 2013-12-09 21:16:22,689 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:433 sent to queue://test_queue_z0 2013-12-09 21:16:22,689 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 30, Inflight: 0, pagedInMessages.size 400, enqueueCount: 430, dequeueCount: 0 2013-12-09 21:16:22,689 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 437} 2013-12-09 21:16:22,690 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 431 2013-12-09 21:16:22,690 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 438, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:434, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620182690, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 432} 2013-12-09 21:16:22,747 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:434 sent to queue://test_queue_z0 2013-12-09 21:16:22,747 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 31, Inflight: 0, pagedInMessages.size 400, enqueueCount: 431, dequeueCount: 0 2013-12-09 21:16:22,747 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 438} 2013-12-09 21:16:22,748 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 432 2013-12-09 21:16:22,748 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 439, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:435, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620182748, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 433} 2013-12-09 21:16:22,805 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:435 sent to queue://test_queue_z0 2013-12-09 21:16:22,806 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 32, Inflight: 0, pagedInMessages.size 400, enqueueCount: 432, dequeueCount: 0 2013-12-09 21:16:22,806 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 439} 2013-12-09 21:16:22,806 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 433 2013-12-09 21:16:22,807 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 440, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:436, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620182807, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 434} 2013-12-09 21:16:22,881 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:436 sent to queue://test_queue_z0 2013-12-09 21:16:22,881 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 33, Inflight: 0, pagedInMessages.size 400, enqueueCount: 433, dequeueCount: 0 2013-12-09 21:16:22,881 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 440} 2013-12-09 21:16:22,882 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 434 2013-12-09 21:16:22,883 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 441, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:437, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620182882, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 435} 2013-12-09 21:16:22,989 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:437 sent to queue://test_queue_z0 2013-12-09 21:16:22,989 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 34, Inflight: 0, pagedInMessages.size 400, enqueueCount: 434, dequeueCount: 0 2013-12-09 21:16:22,989 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 441} 2013-12-09 21:16:22,990 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 435 2013-12-09 21:16:22,991 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 442, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:438, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620182990, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 436} 2013-12-09 21:16:23,096 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:438 sent to queue://test_queue_z0 2013-12-09 21:16:23,097 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 35, Inflight: 0, pagedInMessages.size 400, enqueueCount: 435, dequeueCount: 0 2013-12-09 21:16:23,097 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 442} 2013-12-09 21:16:23,097 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 436 2013-12-09 21:16:23,098 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 443, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:439, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620183098, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 437} 2013-12-09 21:16:23,208 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:439 sent to queue://test_queue_z0 2013-12-09 21:16:23,209 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 36, Inflight: 0, pagedInMessages.size 400, enqueueCount: 436, dequeueCount: 0 2013-12-09 21:16:23,209 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 443} 2013-12-09 21:16:23,209 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 437 2013-12-09 21:16:23,210 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 444, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:440, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620183210, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 438} 2013-12-09 21:16:23,518 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:440 sent to queue://test_queue_z0 2013-12-09 21:16:23,518 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 37, Inflight: 0, pagedInMessages.size 400, enqueueCount: 437, dequeueCount: 0 2013-12-09 21:16:23,518 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 444} 2013-12-09 21:16:23,519 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 438 2013-12-09 21:16:23,519 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 445, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:441, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620183519, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 439} 2013-12-09 21:16:23,666 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:441 sent to queue://test_queue_z0 2013-12-09 21:16:23,667 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 38, Inflight: 0, pagedInMessages.size 400, enqueueCount: 438, dequeueCount: 0 2013-12-09 21:16:23,667 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 445} 2013-12-09 21:16:23,667 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 439 2013-12-09 21:16:23,668 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 446, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:442, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620183668, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 440} 2013-12-09 21:16:23,772 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:442 sent to queue://test_queue_z0 2013-12-09 21:16:23,772 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 39, Inflight: 0, pagedInMessages.size 400, enqueueCount: 439, dequeueCount: 0 2013-12-09 21:16:23,772 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 446} 2013-12-09 21:16:23,773 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 440 2013-12-09 21:16:23,773 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 447, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:443, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620183773, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 441} 2013-12-09 21:16:23,824 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:443 sent to queue://test_queue_z0 2013-12-09 21:16:23,824 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 40, Inflight: 0, pagedInMessages.size 400, enqueueCount: 440, dequeueCount: 0 2013-12-09 21:16:23,824 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 447} 2013-12-09 21:16:23,825 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 441 2013-12-09 21:16:23,825 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 448, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:444, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620183825, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 442} 2013-12-09 21:16:23,882 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:444 sent to queue://test_queue_z0 2013-12-09 21:16:23,882 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 41, Inflight: 0, pagedInMessages.size 400, enqueueCount: 441, dequeueCount: 0 2013-12-09 21:16:23,882 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 448} 2013-12-09 21:16:23,883 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 442 2013-12-09 21:16:23,883 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 449, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:445, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620183883, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 443} 2013-12-09 21:16:23,940 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:445 sent to queue://test_queue_z0 2013-12-09 21:16:23,940 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 42, Inflight: 0, pagedInMessages.size 400, enqueueCount: 442, dequeueCount: 0 2013-12-09 21:16:23,940 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 449} 2013-12-09 21:16:23,941 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 443 2013-12-09 21:16:23,941 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 450, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:446, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620183941, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 444} 2013-12-09 21:16:23,998 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:446 sent to queue://test_queue_z0 2013-12-09 21:16:23,998 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 43, Inflight: 0, pagedInMessages.size 400, enqueueCount: 443, dequeueCount: 0 2013-12-09 21:16:23,998 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 450} 2013-12-09 21:16:23,999 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 444 2013-12-09 21:16:24,000 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 451, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:447, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620183999, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 445} 2013-12-09 21:16:24,056 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:447 sent to queue://test_queue_z0 2013-12-09 21:16:24,056 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 44, Inflight: 0, pagedInMessages.size 400, enqueueCount: 444, dequeueCount: 0 2013-12-09 21:16:24,056 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 451} 2013-12-09 21:16:24,057 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 445 2013-12-09 21:16:24,057 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 452, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:448, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620184057, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 446} 2013-12-09 21:16:24,114 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:448 sent to queue://test_queue_z0 2013-12-09 21:16:24,114 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 45, Inflight: 0, pagedInMessages.size 400, enqueueCount: 445, dequeueCount: 0 2013-12-09 21:16:24,114 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 452} 2013-12-09 21:16:24,115 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 446 2013-12-09 21:16:24,115 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 453, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:449, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620184115, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 447} 2013-12-09 21:16:24,172 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:449 sent to queue://test_queue_z0 2013-12-09 21:16:24,172 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 46, Inflight: 0, pagedInMessages.size 400, enqueueCount: 446, dequeueCount: 0 2013-12-09 21:16:24,172 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 453} 2013-12-09 21:16:24,173 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 447 2013-12-09 21:16:24,173 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 454, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:450, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620184173, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 448} 2013-12-09 21:16:24,230 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:450 sent to queue://test_queue_z0 2013-12-09 21:16:24,230 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 47, Inflight: 0, pagedInMessages.size 400, enqueueCount: 447, dequeueCount: 0 2013-12-09 21:16:24,230 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 454} 2013-12-09 21:16:24,231 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 448 2013-12-09 21:16:24,231 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 455, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:451, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620184231, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 449} 2013-12-09 21:16:24,288 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:451 sent to queue://test_queue_z0 2013-12-09 21:16:24,288 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 48, Inflight: 0, pagedInMessages.size 400, enqueueCount: 448, dequeueCount: 0 2013-12-09 21:16:24,288 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 455} 2013-12-09 21:16:24,289 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 449 2013-12-09 21:16:24,289 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 456, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:452, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620184289, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 450} 2013-12-09 21:16:24,346 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:452 sent to queue://test_queue_z0 2013-12-09 21:16:24,346 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 49, Inflight: 0, pagedInMessages.size 400, enqueueCount: 449, dequeueCount: 0 2013-12-09 21:16:24,346 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 456} 2013-12-09 21:16:24,347 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 450 2013-12-09 21:16:24,348 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 457, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:453, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620184347, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 451} 2013-12-09 21:16:24,404 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:453 sent to queue://test_queue_z0 2013-12-09 21:16:24,404 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 50, Inflight: 0, pagedInMessages.size 400, enqueueCount: 450, dequeueCount: 0 2013-12-09 21:16:24,404 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 457} 2013-12-09 21:16:24,405 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 451 2013-12-09 21:16:24,405 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 458, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:454, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620184405, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 452} 2013-12-09 21:16:24,462 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:454 sent to queue://test_queue_z0 2013-12-09 21:16:24,462 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 51, Inflight: 0, pagedInMessages.size 400, enqueueCount: 451, dequeueCount: 0 2013-12-09 21:16:24,462 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 458} 2013-12-09 21:16:24,463 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 452 2013-12-09 21:16:24,463 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 459, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:455, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620184463, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 453} 2013-12-09 21:16:24,520 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:455 sent to queue://test_queue_z0 2013-12-09 21:16:24,520 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 52, Inflight: 0, pagedInMessages.size 400, enqueueCount: 452, dequeueCount: 0 2013-12-09 21:16:24,520 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 459} 2013-12-09 21:16:24,521 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 453 2013-12-09 21:16:24,521 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 460, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:456, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620184521, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 454} 2013-12-09 21:16:24,578 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:456 sent to queue://test_queue_z0 2013-12-09 21:16:24,578 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 53, Inflight: 0, pagedInMessages.size 400, enqueueCount: 453, dequeueCount: 0 2013-12-09 21:16:24,578 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 460} 2013-12-09 21:16:24,579 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 454 2013-12-09 21:16:24,579 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 461, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:457, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620184579, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 455} 2013-12-09 21:16:24,636 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:457 sent to queue://test_queue_z0 2013-12-09 21:16:24,636 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 54, Inflight: 0, pagedInMessages.size 400, enqueueCount: 454, dequeueCount: 0 2013-12-09 21:16:24,636 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 461} 2013-12-09 21:16:24,637 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 455 2013-12-09 21:16:24,637 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 462, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:458, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620184637, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 456} 2013-12-09 21:16:24,694 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:458 sent to queue://test_queue_z0 2013-12-09 21:16:24,694 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 55, Inflight: 0, pagedInMessages.size 400, enqueueCount: 455, dequeueCount: 0 2013-12-09 21:16:24,694 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 462} 2013-12-09 21:16:24,695 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 456 2013-12-09 21:16:24,695 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 463, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:459, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620184695, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 457} 2013-12-09 21:16:24,752 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:459 sent to queue://test_queue_z0 2013-12-09 21:16:24,752 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 56, Inflight: 0, pagedInMessages.size 400, enqueueCount: 456, dequeueCount: 0 2013-12-09 21:16:24,752 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 463} 2013-12-09 21:16:24,753 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 457 2013-12-09 21:16:24,753 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 464, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:460, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620184753, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 458} 2013-12-09 21:16:24,810 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:460 sent to queue://test_queue_z0 2013-12-09 21:16:24,810 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 57, Inflight: 0, pagedInMessages.size 400, enqueueCount: 457, dequeueCount: 0 2013-12-09 21:16:24,810 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 464} 2013-12-09 21:16:24,810 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 458 2013-12-09 21:16:24,811 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 465, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:461, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620184811, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 459} 2013-12-09 21:16:24,868 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:461 sent to queue://test_queue_z0 2013-12-09 21:16:24,868 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 58, Inflight: 0, pagedInMessages.size 400, enqueueCount: 458, dequeueCount: 0 2013-12-09 21:16:24,868 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 465} 2013-12-09 21:16:24,868 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 459 2013-12-09 21:16:24,869 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 466, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:462, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620184869, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 460} 2013-12-09 21:16:24,926 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:462 sent to queue://test_queue_z0 2013-12-09 21:16:24,926 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 59, Inflight: 0, pagedInMessages.size 400, enqueueCount: 459, dequeueCount: 0 2013-12-09 21:16:24,926 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 466} 2013-12-09 21:16:24,926 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 460 2013-12-09 21:16:24,927 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 467, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:463, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620184927, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 461} 2013-12-09 21:16:24,984 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:463 sent to queue://test_queue_z0 2013-12-09 21:16:24,984 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 60, Inflight: 0, pagedInMessages.size 400, enqueueCount: 460, dequeueCount: 0 2013-12-09 21:16:24,984 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 467} 2013-12-09 21:16:24,985 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 461 2013-12-09 21:16:24,985 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 468, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:464, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620184985, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 462} 2013-12-09 21:16:25,042 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:464 sent to queue://test_queue_z0 2013-12-09 21:16:25,042 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 61, Inflight: 0, pagedInMessages.size 400, enqueueCount: 461, dequeueCount: 0 2013-12-09 21:16:25,042 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 468} 2013-12-09 21:16:25,043 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 462 2013-12-09 21:16:25,043 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 469, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:465, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620185043, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 463} 2013-12-09 21:16:25,100 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:465 sent to queue://test_queue_z0 2013-12-09 21:16:25,100 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 62, Inflight: 0, pagedInMessages.size 400, enqueueCount: 462, dequeueCount: 0 2013-12-09 21:16:25,100 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 469} 2013-12-09 21:16:25,101 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 463 2013-12-09 21:16:25,101 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 470, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:466, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620185101, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 464} 2013-12-09 21:16:25,157 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:466 sent to queue://test_queue_z0 2013-12-09 21:16:25,158 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 63, Inflight: 0, pagedInMessages.size 400, enqueueCount: 463, dequeueCount: 0 2013-12-09 21:16:25,158 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 470} 2013-12-09 21:16:25,158 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 464 2013-12-09 21:16:25,159 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 471, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:467, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620185159, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 465} 2013-12-09 21:16:25,215 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:467 sent to queue://test_queue_z0 2013-12-09 21:16:25,216 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 64, Inflight: 0, pagedInMessages.size 400, enqueueCount: 464, dequeueCount: 0 2013-12-09 21:16:25,216 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 471} 2013-12-09 21:16:25,217 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 465 2013-12-09 21:16:25,217 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 472, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:468, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620185217, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 466} 2013-12-09 21:16:25,267 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:468 sent to queue://test_queue_z0 2013-12-09 21:16:25,267 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 65, Inflight: 0, pagedInMessages.size 400, enqueueCount: 465, dequeueCount: 0 2013-12-09 21:16:25,267 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 472} 2013-12-09 21:16:25,268 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 466 2013-12-09 21:16:25,268 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 473, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:469, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620185268, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 467} 2013-12-09 21:16:25,325 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:469 sent to queue://test_queue_z0 2013-12-09 21:16:25,325 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 66, Inflight: 0, pagedInMessages.size 400, enqueueCount: 466, dequeueCount: 0 2013-12-09 21:16:25,325 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 473} 2013-12-09 21:16:25,326 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 467 2013-12-09 21:16:25,326 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 474, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:470, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620185326, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 468} 2013-12-09 21:16:25,383 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:470 sent to queue://test_queue_z0 2013-12-09 21:16:25,383 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 67, Inflight: 0, pagedInMessages.size 400, enqueueCount: 467, dequeueCount: 0 2013-12-09 21:16:25,383 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 474} 2013-12-09 21:16:25,384 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 468 2013-12-09 21:16:25,385 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 475, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:471, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620185384, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 469} 2013-12-09 21:16:25,441 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:471 sent to queue://test_queue_z0 2013-12-09 21:16:25,441 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 68, Inflight: 0, pagedInMessages.size 400, enqueueCount: 468, dequeueCount: 0 2013-12-09 21:16:25,441 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 475} 2013-12-09 21:16:25,442 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 469 2013-12-09 21:16:25,442 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 476, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:472, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620185442, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 470} 2013-12-09 21:16:25,499 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:472 sent to queue://test_queue_z0 2013-12-09 21:16:25,499 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 69, Inflight: 0, pagedInMessages.size 400, enqueueCount: 469, dequeueCount: 0 2013-12-09 21:16:25,499 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 476} 2013-12-09 21:16:25,500 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 470 2013-12-09 21:16:25,500 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 477, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:473, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620185500, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 471} 2013-12-09 21:16:25,557 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:473 sent to queue://test_queue_z0 2013-12-09 21:16:25,557 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 70, Inflight: 0, pagedInMessages.size 400, enqueueCount: 470, dequeueCount: 0 2013-12-09 21:16:25,557 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 477} 2013-12-09 21:16:25,558 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 471 2013-12-09 21:16:25,558 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 478, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:474, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620185558, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 472} 2013-12-09 21:16:25,615 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:474 sent to queue://test_queue_z0 2013-12-09 21:16:25,615 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 71, Inflight: 0, pagedInMessages.size 400, enqueueCount: 471, dequeueCount: 0 2013-12-09 21:16:25,615 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 478} 2013-12-09 21:16:25,616 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 472 2013-12-09 21:16:25,617 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 479, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:475, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620185616, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 473} 2013-12-09 21:16:25,673 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:475 sent to queue://test_queue_z0 2013-12-09 21:16:25,673 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 72, Inflight: 0, pagedInMessages.size 400, enqueueCount: 472, dequeueCount: 0 2013-12-09 21:16:25,673 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 479} 2013-12-09 21:16:25,674 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 473 2013-12-09 21:16:25,675 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 480, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:476, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620185674, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 474} 2013-12-09 21:16:25,731 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:476 sent to queue://test_queue_z0 2013-12-09 21:16:25,731 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 73, Inflight: 0, pagedInMessages.size 400, enqueueCount: 473, dequeueCount: 0 2013-12-09 21:16:25,731 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 480} 2013-12-09 21:16:25,732 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 474 2013-12-09 21:16:25,733 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 481, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:477, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620185732, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 475} 2013-12-09 21:16:25,789 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:477 sent to queue://test_queue_z0 2013-12-09 21:16:25,789 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 74, Inflight: 0, pagedInMessages.size 400, enqueueCount: 474, dequeueCount: 0 2013-12-09 21:16:25,789 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 481} 2013-12-09 21:16:25,790 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 475 2013-12-09 21:16:25,790 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 482, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:478, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620185790, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 476} 2013-12-09 21:16:25,847 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:478 sent to queue://test_queue_z0 2013-12-09 21:16:25,847 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 75, Inflight: 0, pagedInMessages.size 400, enqueueCount: 475, dequeueCount: 0 2013-12-09 21:16:25,847 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 482} 2013-12-09 21:16:25,848 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 476 2013-12-09 21:16:25,848 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 483, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:479, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620185848, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 477} 2013-12-09 21:16:25,905 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:479 sent to queue://test_queue_z0 2013-12-09 21:16:25,905 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 76, Inflight: 0, pagedInMessages.size 400, enqueueCount: 476, dequeueCount: 0 2013-12-09 21:16:25,906 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 483} 2013-12-09 21:16:25,906 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 477 2013-12-09 21:16:25,907 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 484, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:480, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620185907, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 478} 2013-12-09 21:16:25,963 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:480 sent to queue://test_queue_z0 2013-12-09 21:16:25,963 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 77, Inflight: 0, pagedInMessages.size 400, enqueueCount: 477, dequeueCount: 0 2013-12-09 21:16:25,963 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 484} 2013-12-09 21:16:25,964 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 478 2013-12-09 21:16:25,964 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 485, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:481, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620185964, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 479} 2013-12-09 21:16:26,021 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:481 sent to queue://test_queue_z0 2013-12-09 21:16:26,021 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 78, Inflight: 0, pagedInMessages.size 400, enqueueCount: 478, dequeueCount: 0 2013-12-09 21:16:26,021 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 485} 2013-12-09 21:16:26,022 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 479 2013-12-09 21:16:26,022 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 486, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:482, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620186022, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 480} 2013-12-09 21:16:26,079 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:482 sent to queue://test_queue_z0 2013-12-09 21:16:26,079 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 79, Inflight: 0, pagedInMessages.size 400, enqueueCount: 479, dequeueCount: 0 2013-12-09 21:16:26,079 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 486} 2013-12-09 21:16:26,079 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 480 2013-12-09 21:16:26,080 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 487, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:483, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620186080, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 481} 2013-12-09 21:16:26,137 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:483 sent to queue://test_queue_z0 2013-12-09 21:16:26,137 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 80, Inflight: 0, pagedInMessages.size 400, enqueueCount: 480, dequeueCount: 0 2013-12-09 21:16:26,137 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 487} 2013-12-09 21:16:26,138 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 481 2013-12-09 21:16:26,138 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 488, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:484, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620186138, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 482} 2013-12-09 21:16:26,195 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:484 sent to queue://test_queue_z0 2013-12-09 21:16:26,195 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 81, Inflight: 0, pagedInMessages.size 400, enqueueCount: 481, dequeueCount: 0 2013-12-09 21:16:26,195 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 488} 2013-12-09 21:16:26,196 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 482 2013-12-09 21:16:26,196 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 489, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:485, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620186196, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 483} 2013-12-09 21:16:26,252 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:485 sent to queue://test_queue_z0 2013-12-09 21:16:26,253 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 82, Inflight: 0, pagedInMessages.size 400, enqueueCount: 482, dequeueCount: 0 2013-12-09 21:16:26,253 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 489} 2013-12-09 21:16:26,253 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 483 2013-12-09 21:16:26,254 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 490, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:486, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620186254, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 484} 2013-12-09 21:16:26,311 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:486 sent to queue://test_queue_z0 2013-12-09 21:16:26,311 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 83, Inflight: 0, pagedInMessages.size 400, enqueueCount: 483, dequeueCount: 0 2013-12-09 21:16:26,311 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 490} 2013-12-09 21:16:26,312 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 484 2013-12-09 21:16:26,312 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 491, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:487, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620186312, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 485} 2013-12-09 21:16:26,369 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:487 sent to queue://test_queue_z0 2013-12-09 21:16:26,369 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 84, Inflight: 0, pagedInMessages.size 400, enqueueCount: 484, dequeueCount: 0 2013-12-09 21:16:26,369 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 491} 2013-12-09 21:16:26,369 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 485 2013-12-09 21:16:26,370 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 492, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:488, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620186370, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 486} 2013-12-09 21:16:26,427 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:488 sent to queue://test_queue_z0 2013-12-09 21:16:26,427 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 85, Inflight: 0, pagedInMessages.size 400, enqueueCount: 485, dequeueCount: 0 2013-12-09 21:16:26,427 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 492} 2013-12-09 21:16:26,427 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 486 2013-12-09 21:16:26,428 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 493, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:489, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620186428, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 487} 2013-12-09 21:16:26,454 [ Scheduled Task] DEBUG LeaseDatabaseLocker - coreActiveMQBroker1, lease keepAlive Query is UPDATE ACTIVEMQ_LOCK SET BROKER_NAME=?, TIME=? WHERE BROKER_NAME=? AND ID = 1 2013-12-09 21:16:26,485 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:489 sent to queue://test_queue_z0 2013-12-09 21:16:26,485 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 86, Inflight: 0, pagedInMessages.size 400, enqueueCount: 486, dequeueCount: 0 2013-12-09 21:16:26,485 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 493} 2013-12-09 21:16:26,486 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 487 2013-12-09 21:16:26,486 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 494, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:490, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620186486, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 488} 2013-12-09 21:16:26,584 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:490 sent to queue://test_queue_z0 2013-12-09 21:16:26,584 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 87, Inflight: 0, pagedInMessages.size 400, enqueueCount: 487, dequeueCount: 0 2013-12-09 21:16:26,585 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 494} 2013-12-09 21:16:26,585 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 488 2013-12-09 21:16:26,586 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 495, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:491, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620186585, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 489} 2013-12-09 21:16:26,642 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:491 sent to queue://test_queue_z0 2013-12-09 21:16:26,642 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 88, Inflight: 0, pagedInMessages.size 400, enqueueCount: 488, dequeueCount: 0 2013-12-09 21:16:26,643 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 495} 2013-12-09 21:16:26,643 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 489 2013-12-09 21:16:26,643 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 496, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:492, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620186643, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 490} 2013-12-09 21:16:26,700 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:492 sent to queue://test_queue_z0 2013-12-09 21:16:26,700 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 89, Inflight: 0, pagedInMessages.size 400, enqueueCount: 489, dequeueCount: 0 2013-12-09 21:16:26,700 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 496} 2013-12-09 21:16:26,701 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 490 2013-12-09 21:16:26,701 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 497, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:493, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620186701, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 491} 2013-12-09 21:16:26,758 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:493 sent to queue://test_queue_z0 2013-12-09 21:16:26,758 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 90, Inflight: 0, pagedInMessages.size 400, enqueueCount: 490, dequeueCount: 0 2013-12-09 21:16:26,758 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 497} 2013-12-09 21:16:26,759 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 491 2013-12-09 21:16:26,759 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 498, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:494, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620186759, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 492} 2013-12-09 21:16:26,816 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:494 sent to queue://test_queue_z0 2013-12-09 21:16:26,816 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 91, Inflight: 0, pagedInMessages.size 400, enqueueCount: 491, dequeueCount: 0 2013-12-09 21:16:26,816 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 498} 2013-12-09 21:16:26,817 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 492 2013-12-09 21:16:26,817 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 499, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:495, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620186817, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 493} 2013-12-09 21:16:26,874 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:495 sent to queue://test_queue_z0 2013-12-09 21:16:26,874 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 92, Inflight: 0, pagedInMessages.size 400, enqueueCount: 492, dequeueCount: 0 2013-12-09 21:16:26,874 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 499} 2013-12-09 21:16:26,875 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 493 2013-12-09 21:16:26,875 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 500, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:496, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620186875, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 494} 2013-12-09 21:16:26,932 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:496 sent to queue://test_queue_z0 2013-12-09 21:16:26,932 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 93, Inflight: 0, pagedInMessages.size 400, enqueueCount: 493, dequeueCount: 0 2013-12-09 21:16:26,932 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 500} 2013-12-09 21:16:26,933 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 494 2013-12-09 21:16:26,933 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 501, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:497, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620186933, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 495} 2013-12-09 21:16:26,998 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:497 sent to queue://test_queue_z0 2013-12-09 21:16:26,998 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 94, Inflight: 0, pagedInMessages.size 400, enqueueCount: 494, dequeueCount: 0 2013-12-09 21:16:26,999 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 501} 2013-12-09 21:16:26,999 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 495 2013-12-09 21:16:26,999 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 502, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:498, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620186999, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 496} 2013-12-09 21:16:27,064 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:498 sent to queue://test_queue_z0 2013-12-09 21:16:27,065 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 95, Inflight: 0, pagedInMessages.size 400, enqueueCount: 495, dequeueCount: 0 2013-12-09 21:16:27,065 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 502} 2013-12-09 21:16:27,065 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 496 2013-12-09 21:16:27,066 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 503, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:499, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620187066, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 497} 2013-12-09 21:16:27,131 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:499 sent to queue://test_queue_z0 2013-12-09 21:16:27,131 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 96, Inflight: 0, pagedInMessages.size 400, enqueueCount: 496, dequeueCount: 0 2013-12-09 21:16:27,131 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 503} 2013-12-09 21:16:27,132 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 497 2013-12-09 21:16:27,132 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 504, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:500, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620187132, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 498} 2013-12-09 21:16:27,197 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:500 sent to queue://test_queue_z0 2013-12-09 21:16:27,197 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 97, Inflight: 0, pagedInMessages.size 400, enqueueCount: 497, dequeueCount: 0 2013-12-09 21:16:27,197 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 504} 2013-12-09 21:16:27,198 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 498 2013-12-09 21:16:27,198 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 505, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:501, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620187198, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 499} 2013-12-09 21:16:27,263 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:501 sent to queue://test_queue_z0 2013-12-09 21:16:27,264 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 98, Inflight: 0, pagedInMessages.size 400, enqueueCount: 498, dequeueCount: 0 2013-12-09 21:16:27,264 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 505} 2013-12-09 21:16:27,264 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 499 2013-12-09 21:16:27,264 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 506, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:502, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620187264, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 500} 2013-12-09 21:16:27,331 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:502 sent to queue://test_queue_z0 2013-12-09 21:16:27,331 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 99, Inflight: 0, pagedInMessages.size 400, enqueueCount: 499, dequeueCount: 0 2013-12-09 21:16:27,331 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 506} 2013-12-09 21:16:27,332 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 500 2013-12-09 21:16:27,332 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 507, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:503, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620187332, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 501} 2013-12-09 21:16:27,389 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:503 sent to queue://test_queue_z0 2013-12-09 21:16:27,389 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 100, Inflight: 0, pagedInMessages.size 400, enqueueCount: 500, dequeueCount: 0 2013-12-09 21:16:27,389 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 507} 2013-12-09 21:16:27,390 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 501 2013-12-09 21:16:27,390 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 508, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:504, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620187390, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 502} 2013-12-09 21:16:27,447 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:504 sent to queue://test_queue_z0 2013-12-09 21:16:27,447 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 101, Inflight: 0, pagedInMessages.size 400, enqueueCount: 501, dequeueCount: 0 2013-12-09 21:16:27,447 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 508} 2013-12-09 21:16:27,448 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 502 2013-12-09 21:16:27,448 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 509, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:505, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620187448, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 503} 2013-12-09 21:16:27,505 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:505 sent to queue://test_queue_z0 2013-12-09 21:16:27,505 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 102, Inflight: 0, pagedInMessages.size 400, enqueueCount: 502, dequeueCount: 0 2013-12-09 21:16:27,505 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 509} 2013-12-09 21:16:27,506 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 503 2013-12-09 21:16:27,506 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 510, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:506, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620187506, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 504} 2013-12-09 21:16:27,563 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:506 sent to queue://test_queue_z0 2013-12-09 21:16:27,563 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 103, Inflight: 0, pagedInMessages.size 400, enqueueCount: 503, dequeueCount: 0 2013-12-09 21:16:27,563 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 510} 2013-12-09 21:16:27,564 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 504 2013-12-09 21:16:27,564 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 511, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:507, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620187564, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 505} 2013-12-09 21:16:27,621 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:507 sent to queue://test_queue_z0 2013-12-09 21:16:27,621 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 104, Inflight: 0, pagedInMessages.size 400, enqueueCount: 504, dequeueCount: 0 2013-12-09 21:16:27,621 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 511} 2013-12-09 21:16:27,622 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 505 2013-12-09 21:16:27,622 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 512, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:508, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620187622, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 506} 2013-12-09 21:16:27,679 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:508 sent to queue://test_queue_z0 2013-12-09 21:16:27,679 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 105, Inflight: 0, pagedInMessages.size 400, enqueueCount: 505, dequeueCount: 0 2013-12-09 21:16:27,679 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 512} 2013-12-09 21:16:27,680 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 506 2013-12-09 21:16:27,680 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 513, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:509, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620187680, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 507} 2013-12-09 21:16:27,737 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:509 sent to queue://test_queue_z0 2013-12-09 21:16:27,737 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 106, Inflight: 0, pagedInMessages.size 400, enqueueCount: 506, dequeueCount: 0 2013-12-09 21:16:27,737 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 513} 2013-12-09 21:16:27,738 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 507 2013-12-09 21:16:27,738 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 514, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:510, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620187738, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 508} 2013-12-09 21:16:27,795 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:510 sent to queue://test_queue_z0 2013-12-09 21:16:27,795 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 107, Inflight: 0, pagedInMessages.size 400, enqueueCount: 507, dequeueCount: 0 2013-12-09 21:16:27,795 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 514} 2013-12-09 21:16:27,796 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 508 2013-12-09 21:16:27,796 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 515, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:511, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620187796, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 509} 2013-12-09 21:16:27,853 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:511 sent to queue://test_queue_z0 2013-12-09 21:16:27,853 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 108, Inflight: 0, pagedInMessages.size 400, enqueueCount: 508, dequeueCount: 0 2013-12-09 21:16:27,853 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 515} 2013-12-09 21:16:27,854 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 509 2013-12-09 21:16:27,854 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 516, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:512, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620187854, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 510} 2013-12-09 21:16:27,911 [.0.1:58028@1666] DEBUG Usage - default:memory:queue://test_queue_z0:memory: usage change from: 4% of available memory, to: 5% of available memory 2013-12-09 21:16:27,911 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:512 sent to queue://test_queue_z0 2013-12-09 21:16:27,911 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 109, Inflight: 0, pagedInMessages.size 400, enqueueCount: 509, dequeueCount: 0 2013-12-09 21:16:27,911 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 516} 2013-12-09 21:16:27,912 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 510 2013-12-09 21:16:27,912 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 517, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:513, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620187912, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 511} 2013-12-09 21:16:27,969 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:513 sent to queue://test_queue_z0 2013-12-09 21:16:27,969 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 110, Inflight: 0, pagedInMessages.size 400, enqueueCount: 510, dequeueCount: 0 2013-12-09 21:16:27,969 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 517} 2013-12-09 21:16:27,970 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 511 2013-12-09 21:16:27,970 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 518, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:514, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620187970, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 512} 2013-12-09 21:16:28,027 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:514 sent to queue://test_queue_z0 2013-12-09 21:16:28,027 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 111, Inflight: 0, pagedInMessages.size 400, enqueueCount: 511, dequeueCount: 0 2013-12-09 21:16:28,027 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 518} 2013-12-09 21:16:28,028 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 512 2013-12-09 21:16:28,028 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 519, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:515, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620188028, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 513} 2013-12-09 21:16:28,085 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:515 sent to queue://test_queue_z0 2013-12-09 21:16:28,085 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 112, Inflight: 0, pagedInMessages.size 400, enqueueCount: 512, dequeueCount: 0 2013-12-09 21:16:28,085 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 519} 2013-12-09 21:16:28,085 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 513 2013-12-09 21:16:28,086 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 520, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:516, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620188086, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 514} 2013-12-09 21:16:28,142 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:516 sent to queue://test_queue_z0 2013-12-09 21:16:28,143 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 113, Inflight: 0, pagedInMessages.size 400, enqueueCount: 513, dequeueCount: 0 2013-12-09 21:16:28,143 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 520} 2013-12-09 21:16:28,143 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 514 2013-12-09 21:16:28,144 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 521, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:517, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620188144, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 515} 2013-12-09 21:16:28,201 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:517 sent to queue://test_queue_z0 2013-12-09 21:16:28,201 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 114, Inflight: 0, pagedInMessages.size 400, enqueueCount: 514, dequeueCount: 0 2013-12-09 21:16:28,201 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 521} 2013-12-09 21:16:28,202 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 515 2013-12-09 21:16:28,202 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 522, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:518, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620188202, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 516} 2013-12-09 21:16:28,259 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:518 sent to queue://test_queue_z0 2013-12-09 21:16:28,259 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 115, Inflight: 0, pagedInMessages.size 400, enqueueCount: 515, dequeueCount: 0 2013-12-09 21:16:28,259 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 522} 2013-12-09 21:16:28,260 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 516 2013-12-09 21:16:28,260 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 523, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:519, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620188260, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 517} 2013-12-09 21:16:28,317 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:519 sent to queue://test_queue_z0 2013-12-09 21:16:28,318 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 116, Inflight: 0, pagedInMessages.size 400, enqueueCount: 516, dequeueCount: 0 2013-12-09 21:16:28,318 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 523} 2013-12-09 21:16:28,318 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 517 2013-12-09 21:16:28,319 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 524, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:520, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620188319, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 518} 2013-12-09 21:16:28,375 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:520 sent to queue://test_queue_z0 2013-12-09 21:16:28,375 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 117, Inflight: 0, pagedInMessages.size 400, enqueueCount: 517, dequeueCount: 0 2013-12-09 21:16:28,375 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 524} 2013-12-09 21:16:28,376 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 518 2013-12-09 21:16:28,376 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 525, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:521, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620188376, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 519} 2013-12-09 21:16:28,432 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:521 sent to queue://test_queue_z0 2013-12-09 21:16:28,433 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 118, Inflight: 0, pagedInMessages.size 400, enqueueCount: 518, dequeueCount: 0 2013-12-09 21:16:28,433 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 525} 2013-12-09 21:16:28,433 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 519 2013-12-09 21:16:28,434 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 526, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:522, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620188434, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 520} 2013-12-09 21:16:28,491 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:522 sent to queue://test_queue_z0 2013-12-09 21:16:28,491 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 119, Inflight: 0, pagedInMessages.size 400, enqueueCount: 519, dequeueCount: 0 2013-12-09 21:16:28,491 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 526} 2013-12-09 21:16:28,492 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 520 2013-12-09 21:16:28,492 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 527, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:523, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620188492, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 521} 2013-12-09 21:16:28,549 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:523 sent to queue://test_queue_z0 2013-12-09 21:16:28,549 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 120, Inflight: 0, pagedInMessages.size 400, enqueueCount: 520, dequeueCount: 0 2013-12-09 21:16:28,549 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 527} 2013-12-09 21:16:28,550 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 521 2013-12-09 21:16:28,550 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 528, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:524, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620188550, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 522} 2013-12-09 21:16:28,607 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:524 sent to queue://test_queue_z0 2013-12-09 21:16:28,607 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 121, Inflight: 0, pagedInMessages.size 400, enqueueCount: 521, dequeueCount: 0 2013-12-09 21:16:28,607 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 528} 2013-12-09 21:16:28,607 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 522 2013-12-09 21:16:28,608 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 529, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:525, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620188608, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 523} 2013-12-09 21:16:28,665 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:525 sent to queue://test_queue_z0 2013-12-09 21:16:28,665 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 122, Inflight: 0, pagedInMessages.size 400, enqueueCount: 522, dequeueCount: 0 2013-12-09 21:16:28,665 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 529} 2013-12-09 21:16:28,665 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 523 2013-12-09 21:16:28,666 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 530, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:526, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620188666, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 524} 2013-12-09 21:16:28,722 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:526 sent to queue://test_queue_z0 2013-12-09 21:16:28,723 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 123, Inflight: 0, pagedInMessages.size 400, enqueueCount: 523, dequeueCount: 0 2013-12-09 21:16:28,723 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 530} 2013-12-09 21:16:28,723 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 524 2013-12-09 21:16:28,724 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 531, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:527, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620188724, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 525} 2013-12-09 21:16:28,789 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:527 sent to queue://test_queue_z0 2013-12-09 21:16:28,789 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 124, Inflight: 0, pagedInMessages.size 400, enqueueCount: 524, dequeueCount: 0 2013-12-09 21:16:28,789 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 531} 2013-12-09 21:16:28,790 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 525 2013-12-09 21:16:28,790 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 532, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:528, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620188790, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 526} 2013-12-09 21:16:28,896 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:528 sent to queue://test_queue_z0 2013-12-09 21:16:28,897 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 125, Inflight: 0, pagedInMessages.size 400, enqueueCount: 525, dequeueCount: 0 2013-12-09 21:16:28,897 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 532} 2013-12-09 21:16:28,897 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 526 2013-12-09 21:16:28,898 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 533, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:529, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620188897, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 527} 2013-12-09 21:16:28,954 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:529 sent to queue://test_queue_z0 2013-12-09 21:16:28,955 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 126, Inflight: 0, pagedInMessages.size 400, enqueueCount: 526, dequeueCount: 0 2013-12-09 21:16:28,955 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 533} 2013-12-09 21:16:28,955 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 527 2013-12-09 21:16:28,955 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 534, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:530, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620188955, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 528} 2013-12-09 21:16:29,062 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:530 sent to queue://test_queue_z0 2013-12-09 21:16:29,062 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 127, Inflight: 0, pagedInMessages.size 400, enqueueCount: 527, dequeueCount: 0 2013-12-09 21:16:29,062 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 534} 2013-12-09 21:16:29,063 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 528 2013-12-09 21:16:29,063 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 535, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:531, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620189063, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 529} 2013-12-09 21:16:29,128 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:531 sent to queue://test_queue_z0 2013-12-09 21:16:29,128 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 128, Inflight: 0, pagedInMessages.size 400, enqueueCount: 528, dequeueCount: 0 2013-12-09 21:16:29,128 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 535} 2013-12-09 21:16:29,129 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 529 2013-12-09 21:16:29,129 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 536, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:532, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620189129, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 530} 2013-12-09 21:16:29,186 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:532 sent to queue://test_queue_z0 2013-12-09 21:16:29,186 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 129, Inflight: 0, pagedInMessages.size 400, enqueueCount: 529, dequeueCount: 0 2013-12-09 21:16:29,186 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 536} 2013-12-09 21:16:29,187 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 530 2013-12-09 21:16:29,187 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 537, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:533, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620189187, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 531} 2013-12-09 21:16:29,244 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:533 sent to queue://test_queue_z0 2013-12-09 21:16:29,244 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 130, Inflight: 0, pagedInMessages.size 400, enqueueCount: 530, dequeueCount: 0 2013-12-09 21:16:29,244 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 537} 2013-12-09 21:16:29,245 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 531 2013-12-09 21:16:29,245 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 538, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:534, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620189245, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 532} 2013-12-09 21:16:29,302 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:534 sent to queue://test_queue_z0 2013-12-09 21:16:29,302 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 131, Inflight: 0, pagedInMessages.size 400, enqueueCount: 531, dequeueCount: 0 2013-12-09 21:16:29,302 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 538} 2013-12-09 21:16:29,303 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 532 2013-12-09 21:16:29,303 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 539, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:535, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620189303, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 533} 2013-12-09 21:16:29,360 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:535 sent to queue://test_queue_z0 2013-12-09 21:16:29,361 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 132, Inflight: 0, pagedInMessages.size 400, enqueueCount: 532, dequeueCount: 0 2013-12-09 21:16:29,361 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 539} 2013-12-09 21:16:29,361 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 533 2013-12-09 21:16:29,362 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 540, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:536, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620189362, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 534} 2013-12-09 21:16:29,418 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:536 sent to queue://test_queue_z0 2013-12-09 21:16:29,419 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 133, Inflight: 0, pagedInMessages.size 400, enqueueCount: 533, dequeueCount: 0 2013-12-09 21:16:29,419 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 540} 2013-12-09 21:16:29,420 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 534 2013-12-09 21:16:29,420 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 541, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:537, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620189420, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 535} 2013-12-09 21:16:29,476 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:537 sent to queue://test_queue_z0 2013-12-09 21:16:29,476 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 134, Inflight: 0, pagedInMessages.size 400, enqueueCount: 534, dequeueCount: 0 2013-12-09 21:16:29,477 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 541} 2013-12-09 21:16:29,477 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 535 2013-12-09 21:16:29,477 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 542, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:538, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620189477, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 536} 2013-12-09 21:16:29,545 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:538 sent to queue://test_queue_z0 2013-12-09 21:16:29,545 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 135, Inflight: 0, pagedInMessages.size 400, enqueueCount: 535, dequeueCount: 0 2013-12-09 21:16:29,545 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 542} 2013-12-09 21:16:29,546 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 536 2013-12-09 21:16:29,546 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 543, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:539, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620189546, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 537} 2013-12-09 21:16:29,603 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:539 sent to queue://test_queue_z0 2013-12-09 21:16:29,603 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 136, Inflight: 0, pagedInMessages.size 400, enqueueCount: 536, dequeueCount: 0 2013-12-09 21:16:29,603 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 543} 2013-12-09 21:16:29,604 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 537 2013-12-09 21:16:29,604 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 544, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:540, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620189604, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 538} 2013-12-09 21:16:29,661 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:540 sent to queue://test_queue_z0 2013-12-09 21:16:29,662 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 137, Inflight: 0, pagedInMessages.size 400, enqueueCount: 537, dequeueCount: 0 2013-12-09 21:16:29,662 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 544} 2013-12-09 21:16:29,662 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 538 2013-12-09 21:16:29,663 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 545, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:541, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620189662, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 539} 2013-12-09 21:16:29,719 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:541 sent to queue://test_queue_z0 2013-12-09 21:16:29,719 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 138, Inflight: 0, pagedInMessages.size 400, enqueueCount: 538, dequeueCount: 0 2013-12-09 21:16:29,719 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 545} 2013-12-09 21:16:29,720 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 539 2013-12-09 21:16:29,720 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 546, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:542, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620189720, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 540} 2013-12-09 21:16:29,777 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:542 sent to queue://test_queue_z0 2013-12-09 21:16:29,777 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 139, Inflight: 0, pagedInMessages.size 400, enqueueCount: 539, dequeueCount: 0 2013-12-09 21:16:29,777 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 546} 2013-12-09 21:16:29,778 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 540 2013-12-09 21:16:29,778 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 547, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:543, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620189778, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 541} 2013-12-09 21:16:29,835 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:543 sent to queue://test_queue_z0 2013-12-09 21:16:29,835 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 140, Inflight: 0, pagedInMessages.size 400, enqueueCount: 540, dequeueCount: 0 2013-12-09 21:16:29,835 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 547} 2013-12-09 21:16:29,836 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 541 2013-12-09 21:16:29,836 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 548, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:544, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620189836, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 542} 2013-12-09 21:16:29,893 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:544 sent to queue://test_queue_z0 2013-12-09 21:16:29,893 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 141, Inflight: 0, pagedInMessages.size 400, enqueueCount: 541, dequeueCount: 0 2013-12-09 21:16:29,893 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 548} 2013-12-09 21:16:29,894 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 542 2013-12-09 21:16:29,894 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 549, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:545, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620189894, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 543} 2013-12-09 21:16:29,951 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:545 sent to queue://test_queue_z0 2013-12-09 21:16:29,951 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 142, Inflight: 0, pagedInMessages.size 400, enqueueCount: 542, dequeueCount: 0 2013-12-09 21:16:29,951 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 549} 2013-12-09 21:16:29,952 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 543 2013-12-09 21:16:29,952 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 550, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:546, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620189952, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 544} 2013-12-09 21:16:30,009 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:546 sent to queue://test_queue_z0 2013-12-09 21:16:30,009 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 143, Inflight: 0, pagedInMessages.size 400, enqueueCount: 543, dequeueCount: 0 2013-12-09 21:16:30,009 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 550} 2013-12-09 21:16:30,010 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 544 2013-12-09 21:16:30,010 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 551, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:547, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620190010, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 545} 2013-12-09 21:16:30,067 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:547 sent to queue://test_queue_z0 2013-12-09 21:16:30,067 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 144, Inflight: 0, pagedInMessages.size 400, enqueueCount: 544, dequeueCount: 0 2013-12-09 21:16:30,067 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 551} 2013-12-09 21:16:30,068 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 545 2013-12-09 21:16:30,069 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 552, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:548, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620190069, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 546} 2013-12-09 21:16:30,125 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:548 sent to queue://test_queue_z0 2013-12-09 21:16:30,125 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 145, Inflight: 0, pagedInMessages.size 400, enqueueCount: 545, dequeueCount: 0 2013-12-09 21:16:30,125 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 552} 2013-12-09 21:16:30,126 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 546 2013-12-09 21:16:30,126 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 553, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:549, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620190126, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 547} 2013-12-09 21:16:30,183 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:549 sent to queue://test_queue_z0 2013-12-09 21:16:30,183 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 146, Inflight: 0, pagedInMessages.size 400, enqueueCount: 546, dequeueCount: 0 2013-12-09 21:16:30,183 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 553} 2013-12-09 21:16:30,184 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 547 2013-12-09 21:16:30,184 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 554, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:550, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620190184, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 548} 2013-12-09 21:16:30,249 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:550 sent to queue://test_queue_z0 2013-12-09 21:16:30,249 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 147, Inflight: 0, pagedInMessages.size 400, enqueueCount: 547, dequeueCount: 0 2013-12-09 21:16:30,250 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 554} 2013-12-09 21:16:30,250 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 548 2013-12-09 21:16:30,250 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 555, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:551, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620190250, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 549} 2013-12-09 21:16:30,315 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:551 sent to queue://test_queue_z0 2013-12-09 21:16:30,316 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 148, Inflight: 0, pagedInMessages.size 400, enqueueCount: 548, dequeueCount: 0 2013-12-09 21:16:30,316 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 555} 2013-12-09 21:16:30,316 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 549 2013-12-09 21:16:30,316 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 556, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:552, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620190316, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 550} 2013-12-09 21:16:30,382 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:552 sent to queue://test_queue_z0 2013-12-09 21:16:30,382 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 149, Inflight: 0, pagedInMessages.size 400, enqueueCount: 549, dequeueCount: 0 2013-12-09 21:16:30,382 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 556} 2013-12-09 21:16:30,383 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 550 2013-12-09 21:16:30,383 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 557, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:553, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620190383, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 551} 2013-12-09 21:16:30,489 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:553 sent to queue://test_queue_z0 2013-12-09 21:16:30,490 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 150, Inflight: 0, pagedInMessages.size 400, enqueueCount: 550, dequeueCount: 0 2013-12-09 21:16:30,490 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 557} 2013-12-09 21:16:30,491 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 551 2013-12-09 21:16:30,491 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 558, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:554, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620190491, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 552} 2013-12-09 21:16:30,597 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:554 sent to queue://test_queue_z0 2013-12-09 21:16:30,598 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 151, Inflight: 0, pagedInMessages.size 400, enqueueCount: 551, dequeueCount: 0 2013-12-09 21:16:30,598 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 558} 2013-12-09 21:16:30,598 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 552 2013-12-09 21:16:30,599 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 559, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:555, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620190599, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 553} 2013-12-09 21:16:30,704 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:555 sent to queue://test_queue_z0 2013-12-09 21:16:30,705 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 152, Inflight: 0, pagedInMessages.size 400, enqueueCount: 552, dequeueCount: 0 2013-12-09 21:16:30,705 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 559} 2013-12-09 21:16:30,705 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 553 2013-12-09 21:16:30,706 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 560, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:556, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620190706, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 554} 2013-12-09 21:16:30,762 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:556 sent to queue://test_queue_z0 2013-12-09 21:16:30,762 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 153, Inflight: 0, pagedInMessages.size 400, enqueueCount: 553, dequeueCount: 0 2013-12-09 21:16:30,763 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 560} 2013-12-09 21:16:30,763 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 554 2013-12-09 21:16:30,764 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 561, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:557, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620190763, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 555} 2013-12-09 21:16:30,828 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:557 sent to queue://test_queue_z0 2013-12-09 21:16:30,829 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 154, Inflight: 0, pagedInMessages.size 400, enqueueCount: 554, dequeueCount: 0 2013-12-09 21:16:30,829 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 561} 2013-12-09 21:16:30,829 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 555 2013-12-09 21:16:30,830 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 562, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:558, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620190830, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 556} 2013-12-09 21:16:30,886 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:558 sent to queue://test_queue_z0 2013-12-09 21:16:30,887 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 155, Inflight: 0, pagedInMessages.size 400, enqueueCount: 555, dequeueCount: 0 2013-12-09 21:16:30,887 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 562} 2013-12-09 21:16:30,887 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 556 2013-12-09 21:16:30,888 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 563, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:559, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620190887, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 557} 2013-12-09 21:16:30,944 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:559 sent to queue://test_queue_z0 2013-12-09 21:16:30,945 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 156, Inflight: 0, pagedInMessages.size 400, enqueueCount: 556, dequeueCount: 0 2013-12-09 21:16:30,945 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 563} 2013-12-09 21:16:30,945 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 557 2013-12-09 21:16:30,945 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 564, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:560, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620190945, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 558} 2013-12-09 21:16:31,002 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:560 sent to queue://test_queue_z0 2013-12-09 21:16:31,003 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 157, Inflight: 0, pagedInMessages.size 400, enqueueCount: 557, dequeueCount: 0 2013-12-09 21:16:31,003 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 564} 2013-12-09 21:16:31,003 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 558 2013-12-09 21:16:31,003 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 565, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:561, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620191003, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 559} 2013-12-09 21:16:31,060 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:561 sent to queue://test_queue_z0 2013-12-09 21:16:31,060 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 158, Inflight: 0, pagedInMessages.size 400, enqueueCount: 558, dequeueCount: 0 2013-12-09 21:16:31,060 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 565} 2013-12-09 21:16:31,061 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 559 2013-12-09 21:16:31,061 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 566, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:562, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620191061, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 560} 2013-12-09 21:16:31,110 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:562 sent to queue://test_queue_z0 2013-12-09 21:16:31,110 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 159, Inflight: 0, pagedInMessages.size 400, enqueueCount: 559, dequeueCount: 0 2013-12-09 21:16:31,111 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 566} 2013-12-09 21:16:31,111 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 560 2013-12-09 21:16:31,111 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 567, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:563, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620191111, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 561} 2013-12-09 21:16:31,168 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:563 sent to queue://test_queue_z0 2013-12-09 21:16:31,168 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 160, Inflight: 0, pagedInMessages.size 400, enqueueCount: 560, dequeueCount: 0 2013-12-09 21:16:31,168 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 567} 2013-12-09 21:16:31,169 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 561 2013-12-09 21:16:31,169 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 568, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:564, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620191169, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 562} 2013-12-09 21:16:31,226 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:564 sent to queue://test_queue_z0 2013-12-09 21:16:31,226 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 161, Inflight: 0, pagedInMessages.size 400, enqueueCount: 561, dequeueCount: 0 2013-12-09 21:16:31,226 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 568} 2013-12-09 21:16:31,227 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 562 2013-12-09 21:16:31,227 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 569, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:565, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620191227, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 563} 2013-12-09 21:16:31,284 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:565 sent to queue://test_queue_z0 2013-12-09 21:16:31,284 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 162, Inflight: 0, pagedInMessages.size 400, enqueueCount: 562, dequeueCount: 0 2013-12-09 21:16:31,284 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 569} 2013-12-09 21:16:31,285 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 563 2013-12-09 21:16:31,285 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 570, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:566, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620191285, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 564} 2013-12-09 21:16:31,342 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:566 sent to queue://test_queue_z0 2013-12-09 21:16:31,342 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 163, Inflight: 0, pagedInMessages.size 400, enqueueCount: 563, dequeueCount: 0 2013-12-09 21:16:31,342 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 570} 2013-12-09 21:16:31,343 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 564 2013-12-09 21:16:31,343 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 571, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:567, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620191343, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 565} 2013-12-09 21:16:31,400 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:567 sent to queue://test_queue_z0 2013-12-09 21:16:31,400 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 164, Inflight: 0, pagedInMessages.size 400, enqueueCount: 564, dequeueCount: 0 2013-12-09 21:16:31,400 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 571} 2013-12-09 21:16:31,401 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 565 2013-12-09 21:16:31,401 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 572, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:568, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620191401, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 566} 2013-12-09 21:16:31,454 [ Scheduled Task] DEBUG LeaseDatabaseLocker - coreActiveMQBroker1, lease keepAlive Query is UPDATE ACTIVEMQ_LOCK SET BROKER_NAME=?, TIME=? WHERE BROKER_NAME=? AND ID = 1 2013-12-09 21:16:31,458 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:568 sent to queue://test_queue_z0 2013-12-09 21:16:31,458 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 165, Inflight: 0, pagedInMessages.size 400, enqueueCount: 565, dequeueCount: 0 2013-12-09 21:16:31,458 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 572} 2013-12-09 21:16:31,459 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 566 2013-12-09 21:16:31,459 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 573, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:569, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620191459, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 567} 2013-12-09 21:16:31,557 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:569 sent to queue://test_queue_z0 2013-12-09 21:16:31,558 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 166, Inflight: 0, pagedInMessages.size 400, enqueueCount: 566, dequeueCount: 0 2013-12-09 21:16:31,558 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 573} 2013-12-09 21:16:31,559 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 567 2013-12-09 21:16:31,559 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 574, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:570, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620191559, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 568} 2013-12-09 21:16:31,615 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:570 sent to queue://test_queue_z0 2013-12-09 21:16:31,616 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 167, Inflight: 0, pagedInMessages.size 400, enqueueCount: 567, dequeueCount: 0 2013-12-09 21:16:31,616 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 574} 2013-12-09 21:16:31,616 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 568 2013-12-09 21:16:31,617 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 575, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:571, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620191617, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 569} 2013-12-09 21:16:31,673 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:571 sent to queue://test_queue_z0 2013-12-09 21:16:31,674 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 168, Inflight: 0, pagedInMessages.size 400, enqueueCount: 568, dequeueCount: 0 2013-12-09 21:16:31,674 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 575} 2013-12-09 21:16:31,674 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 569 2013-12-09 21:16:31,675 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 576, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:572, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620191674, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 570} 2013-12-09 21:16:31,741 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:572 sent to queue://test_queue_z0 2013-12-09 21:16:31,741 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 169, Inflight: 0, pagedInMessages.size 400, enqueueCount: 569, dequeueCount: 0 2013-12-09 21:16:31,741 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 576} 2013-12-09 21:16:31,742 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 570 2013-12-09 21:16:31,742 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 577, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:573, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620191742, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 571} 2013-12-09 21:16:31,799 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:573 sent to queue://test_queue_z0 2013-12-09 21:16:31,800 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 170, Inflight: 0, pagedInMessages.size 400, enqueueCount: 570, dequeueCount: 0 2013-12-09 21:16:31,800 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 577} 2013-12-09 21:16:31,800 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 571 2013-12-09 21:16:31,801 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 578, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:574, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620191800, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 572} 2013-12-09 21:16:31,857 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:574 sent to queue://test_queue_z0 2013-12-09 21:16:31,857 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 171, Inflight: 0, pagedInMessages.size 400, enqueueCount: 571, dequeueCount: 0 2013-12-09 21:16:31,857 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 578} 2013-12-09 21:16:31,858 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 572 2013-12-09 21:16:31,858 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 579, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:575, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620191858, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 573} 2013-12-09 21:16:31,915 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:575 sent to queue://test_queue_z0 2013-12-09 21:16:31,915 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 172, Inflight: 0, pagedInMessages.size 400, enqueueCount: 572, dequeueCount: 0 2013-12-09 21:16:31,916 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 579} 2013-12-09 21:16:31,916 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 573 2013-12-09 21:16:31,916 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 580, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:576, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620191916, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 574} 2013-12-09 21:16:31,973 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:576 sent to queue://test_queue_z0 2013-12-09 21:16:31,973 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 173, Inflight: 0, pagedInMessages.size 400, enqueueCount: 573, dequeueCount: 0 2013-12-09 21:16:31,973 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 580} 2013-12-09 21:16:31,974 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 574 2013-12-09 21:16:31,974 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 581, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:577, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620191974, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 575} 2013-12-09 21:16:32,031 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:577 sent to queue://test_queue_z0 2013-12-09 21:16:32,031 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 174, Inflight: 0, pagedInMessages.size 400, enqueueCount: 574, dequeueCount: 0 2013-12-09 21:16:32,031 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 581} 2013-12-09 21:16:32,032 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 575 2013-12-09 21:16:32,032 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 582, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:578, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620192032, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 576} 2013-12-09 21:16:32,089 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:578 sent to queue://test_queue_z0 2013-12-09 21:16:32,089 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 175, Inflight: 0, pagedInMessages.size 400, enqueueCount: 575, dequeueCount: 0 2013-12-09 21:16:32,089 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 582} 2013-12-09 21:16:32,090 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 576 2013-12-09 21:16:32,090 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 583, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:579, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620192090, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 577} 2013-12-09 21:16:32,155 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:579 sent to queue://test_queue_z0 2013-12-09 21:16:32,156 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 176, Inflight: 0, pagedInMessages.size 400, enqueueCount: 576, dequeueCount: 0 2013-12-09 21:16:32,156 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 583} 2013-12-09 21:16:32,156 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 577 2013-12-09 21:16:32,157 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 584, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:580, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620192156, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 578} 2013-12-09 21:16:32,221 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:580 sent to queue://test_queue_z0 2013-12-09 21:16:32,222 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 177, Inflight: 0, pagedInMessages.size 400, enqueueCount: 577, dequeueCount: 0 2013-12-09 21:16:32,222 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 584} 2013-12-09 21:16:32,222 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 578 2013-12-09 21:16:32,223 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 585, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:581, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620192223, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 579} 2013-12-09 21:16:32,279 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:581 sent to queue://test_queue_z0 2013-12-09 21:16:32,280 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 178, Inflight: 0, pagedInMessages.size 400, enqueueCount: 578, dequeueCount: 0 2013-12-09 21:16:32,280 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 585} 2013-12-09 21:16:32,280 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 579 2013-12-09 21:16:32,281 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 586, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:582, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620192280, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 580} 2013-12-09 21:16:32,387 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:582 sent to queue://test_queue_z0 2013-12-09 21:16:32,387 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 179, Inflight: 0, pagedInMessages.size 400, enqueueCount: 579, dequeueCount: 0 2013-12-09 21:16:32,388 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 586} 2013-12-09 21:16:32,388 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 580 2013-12-09 21:16:32,388 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 587, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:583, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620192388, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 581} 2013-12-09 21:16:32,445 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:583 sent to queue://test_queue_z0 2013-12-09 21:16:32,449 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 180, Inflight: 0, pagedInMessages.size 400, enqueueCount: 580, dequeueCount: 0 2013-12-09 21:16:32,449 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 587} 2013-12-09 21:16:32,449 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 581 2013-12-09 21:16:32,450 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 588, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:584, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620192450, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 582} 2013-12-09 21:16:32,503 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:584 sent to queue://test_queue_z0 2013-12-09 21:16:32,504 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 181, Inflight: 0, pagedInMessages.size 400, enqueueCount: 581, dequeueCount: 0 2013-12-09 21:16:32,504 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 588} 2013-12-09 21:16:32,504 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 582 2013-12-09 21:16:32,505 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 589, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:585, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620192505, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 583} 2013-12-09 21:16:32,561 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:585 sent to queue://test_queue_z0 2013-12-09 21:16:32,562 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 182, Inflight: 0, pagedInMessages.size 400, enqueueCount: 582, dequeueCount: 0 2013-12-09 21:16:32,562 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 589} 2013-12-09 21:16:32,562 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 583 2013-12-09 21:16:32,563 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 590, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:586, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620192563, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 584} 2013-12-09 21:16:32,619 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:586 sent to queue://test_queue_z0 2013-12-09 21:16:32,619 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 183, Inflight: 0, pagedInMessages.size 400, enqueueCount: 583, dequeueCount: 0 2013-12-09 21:16:32,619 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 590} 2013-12-09 21:16:32,620 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 584 2013-12-09 21:16:32,621 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 591, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:587, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620192620, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 585} 2013-12-09 21:16:32,677 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:587 sent to queue://test_queue_z0 2013-12-09 21:16:32,678 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 184, Inflight: 0, pagedInMessages.size 400, enqueueCount: 584, dequeueCount: 0 2013-12-09 21:16:32,678 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 591} 2013-12-09 21:16:32,678 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 585 2013-12-09 21:16:32,679 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 592, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:588, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620192678, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 586} 2013-12-09 21:16:32,735 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:588 sent to queue://test_queue_z0 2013-12-09 21:16:32,735 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 185, Inflight: 0, pagedInMessages.size 400, enqueueCount: 585, dequeueCount: 0 2013-12-09 21:16:32,735 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 592} 2013-12-09 21:16:32,736 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 586 2013-12-09 21:16:32,736 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 593, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:589, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620192736, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 587} 2013-12-09 21:16:32,793 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:589 sent to queue://test_queue_z0 2013-12-09 21:16:32,793 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 186, Inflight: 0, pagedInMessages.size 400, enqueueCount: 586, dequeueCount: 0 2013-12-09 21:16:32,793 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 593} 2013-12-09 21:16:32,794 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 587 2013-12-09 21:16:32,794 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 594, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:590, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620192794, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 588} 2013-12-09 21:16:32,851 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:590 sent to queue://test_queue_z0 2013-12-09 21:16:32,851 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 187, Inflight: 0, pagedInMessages.size 400, enqueueCount: 587, dequeueCount: 0 2013-12-09 21:16:32,852 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 594} 2013-12-09 21:16:32,852 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 588 2013-12-09 21:16:32,852 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 595, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:591, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620192852, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 589} 2013-12-09 21:16:32,909 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:591 sent to queue://test_queue_z0 2013-12-09 21:16:32,909 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 188, Inflight: 0, pagedInMessages.size 400, enqueueCount: 588, dequeueCount: 0 2013-12-09 21:16:32,909 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 595} 2013-12-09 21:16:32,910 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 589 2013-12-09 21:16:32,910 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 596, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:592, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620192910, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 590} 2013-12-09 21:16:32,967 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:592 sent to queue://test_queue_z0 2013-12-09 21:16:32,967 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 189, Inflight: 0, pagedInMessages.size 400, enqueueCount: 589, dequeueCount: 0 2013-12-09 21:16:32,967 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 596} 2013-12-09 21:16:32,968 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 590 2013-12-09 21:16:32,968 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 597, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:593, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620192968, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 591} 2013-12-09 21:16:33,025 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:593 sent to queue://test_queue_z0 2013-12-09 21:16:33,025 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 190, Inflight: 0, pagedInMessages.size 400, enqueueCount: 590, dequeueCount: 0 2013-12-09 21:16:33,025 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 597} 2013-12-09 21:16:33,026 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 591 2013-12-09 21:16:33,026 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 598, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:594, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620193026, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 592} 2013-12-09 21:16:33,083 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:594 sent to queue://test_queue_z0 2013-12-09 21:16:33,083 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 191, Inflight: 0, pagedInMessages.size 400, enqueueCount: 591, dequeueCount: 0 2013-12-09 21:16:33,084 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 598} 2013-12-09 21:16:33,084 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 592 2013-12-09 21:16:33,084 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 599, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:595, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620193084, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 593} 2013-12-09 21:16:33,141 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:595 sent to queue://test_queue_z0 2013-12-09 21:16:33,141 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 192, Inflight: 0, pagedInMessages.size 400, enqueueCount: 592, dequeueCount: 0 2013-12-09 21:16:33,141 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 599} 2013-12-09 21:16:33,142 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 593 2013-12-09 21:16:33,142 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 600, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:596, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620193142, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 594} 2013-12-09 21:16:33,199 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:596 sent to queue://test_queue_z0 2013-12-09 21:16:33,199 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 193, Inflight: 0, pagedInMessages.size 400, enqueueCount: 593, dequeueCount: 0 2013-12-09 21:16:33,199 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 600} 2013-12-09 21:16:33,200 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 594 2013-12-09 21:16:33,200 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 601, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:597, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620193200, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 595} 2013-12-09 21:16:33,257 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:597 sent to queue://test_queue_z0 2013-12-09 21:16:33,257 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 194, Inflight: 0, pagedInMessages.size 400, enqueueCount: 594, dequeueCount: 0 2013-12-09 21:16:33,257 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 601} 2013-12-09 21:16:33,258 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 595 2013-12-09 21:16:33,258 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 602, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:598, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620193258, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 596} 2013-12-09 21:16:33,315 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:598 sent to queue://test_queue_z0 2013-12-09 21:16:33,315 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 195, Inflight: 0, pagedInMessages.size 400, enqueueCount: 595, dequeueCount: 0 2013-12-09 21:16:33,315 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 602} 2013-12-09 21:16:33,316 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 596 2013-12-09 21:16:33,316 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 603, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:599, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620193316, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 597} 2013-12-09 21:16:33,373 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:599 sent to queue://test_queue_z0 2013-12-09 21:16:33,373 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 196, Inflight: 0, pagedInMessages.size 400, enqueueCount: 596, dequeueCount: 0 2013-12-09 21:16:33,373 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 603} 2013-12-09 21:16:33,374 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 597 2013-12-09 21:16:33,374 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 604, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:600, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620193374, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 598} 2013-12-09 21:16:33,431 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:600 sent to queue://test_queue_z0 2013-12-09 21:16:33,431 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 197, Inflight: 0, pagedInMessages.size 400, enqueueCount: 597, dequeueCount: 0 2013-12-09 21:16:33,431 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 604} 2013-12-09 21:16:33,432 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 598 2013-12-09 21:16:33,432 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 605, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:601, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620193432, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 599} 2013-12-09 21:16:33,489 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:601 sent to queue://test_queue_z0 2013-12-09 21:16:33,489 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 198, Inflight: 0, pagedInMessages.size 400, enqueueCount: 598, dequeueCount: 0 2013-12-09 21:16:33,489 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 605} 2013-12-09 21:16:33,490 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 599 2013-12-09 21:16:33,491 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ActiveMQTextMessage {commandId = 606, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:602, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620193490, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 600} 2013-12-09 21:16:33,605 [.0.1:58028@1666] DEBUG Queue - coreActiveMQBroker1 Message ID:sideshow.home-57960-1386620121463-3:1:1:1:602 sent to queue://test_queue_z0 2013-12-09 21:16:33,606 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 199, Inflight: 0, pagedInMessages.size 400, enqueueCount: 599, dequeueCount: 0 2013-12-09 21:16:33,606 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 606} 2013-12-09 21:16:33,606 [pool-2-thread-1] INFO MyProducer - test_queue_z0 sent message : 600 2013-12-09 21:16:33,606 [pool-2-thread-1] INFO MyProducer - FINISHING SEND :test_queue_z0 number of messages sent ==>>600 2013-12-09 21:16:33,607 [pool-2-thread-1] INFO ConsumerProducerDBFailoverTest - test_queue_z0 Enqueue count 599 2013-12-09 21:16:33,608 [pool-2-thread-1] INFO ConsumerProducerDBFailoverTest - test_queue_z0 Dequeue count 0 2013-12-09 21:16:33,608 [pool-2-thread-1] INFO ConsumerProducerDBFailoverTest - test_queue_z0 Dispatched count 0 2013-12-09 21:16:33,608 [pool-2-thread-1] INFO ConsumerProducerDBFailoverTest - test_queue_z0Inflight count 0 2013-12-09 21:16:33,608 [pool-2-thread-1] INFO ConsumerProducerDBFailoverTest - test_queue_z0Queue Size 599 2013-12-09 21:16:33,608 [pool-2-thread-1] DEBUG Queue - test_queue_z0 toPageIn: 199, Inflight: 0, pagedInMessages.size 400, enqueueCount: 599, dequeueCount: 0 2013-12-09 21:16:33,634 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 0, Inflight: 0, pagedInMessages.size 599, enqueueCount: 599, dequeueCount: 0 2013-12-09 21:16:33,634 [pool-2-thread-1] INFO MyProducer - Queue size after SEND FINISHED for test_queue_z0 is 599 2013-12-09 21:16:33,635 [pool-2-thread-1] DEBUG Connection:21 - SENDING: RemoveInfo {commandId = 607, responseRequired = false, objectId = ID:sideshow.home-57960-1386620121463-3:1:1:1, lastDeliveredSequenceId = 0} 2013-12-09 21:16:33,636 [pool-2-thread-1] DEBUG Connection:21 - SENDING: RemoveInfo {commandId = 608, responseRequired = false, objectId = ID:sideshow.home-57960-1386620121463-3:1:1, lastDeliveredSequenceId = 0} 2013-12-09 21:16:33,637 [pool-2-thread-1] DEBUG Connection:21 - SENDING: RemoveInfo {commandId = 609, responseRequired = false, objectId = ID:sideshow.home-57960-1386620121463-3:1:-1:1, lastDeliveredSequenceId = 0} 2013-12-09 21:16:33,637 [.0.1:58028@1666] DEBUG AbstractRegion - coreActiveMQBroker1 removing consumer: ID:sideshow.home-57960-1386620121463-3:1:-1:1 for destination: ActiveMQ.Advisory.TempQueue,ActiveMQ.Advisory.TempTopic 2013-12-09 21:16:33,637 [pool-2-thread-1] DEBUG Connection:21 - SENDING: RemoveInfo {commandId = 610, responseRequired = true, objectId = ID:sideshow.home-57960-1386620121463-3:1, lastDeliveredSequenceId = 0} 2013-12-09 21:16:33,638 [.0.1:58028@1666] DEBUG TransportConnection - remove connection id: ID:sideshow.home-57960-1386620121463-3:1 2013-12-09 21:16:33,639 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 610} 2013-12-09 21:16:33,640 [pool-2-thread-1] DEBUG Connection:21 - SENDING: ShutdownInfo {commandId = 611, responseRequired = false} 2013-12-09 21:16:33,641 [Broker1] Task-1] DEBUG TransportConnection - Stopping connection: tcp://127.0.0.1:58028 2013-12-09 21:16:33,641 [pool-2-thread-1] DEBUG ThreadPoolUtils - Shutdown of ExecutorService: java.util.concurrent.ThreadPoolExecutor@3ee32fb2[Terminated, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 2] is shutdown: true and terminated: false took: 0.000 seconds. 2013-12-09 21:16:33,641 [Broker1] Task-1] DEBUG TcpTransport - Stopping transport tcp:///127.0.0.1:58028@1666 2013-12-09 21:16:33,642 [pool-2-thread-1] DEBUG FailoverTransport - Stopped tcp://localhost:1666?trace=true 2013-12-09 21:16:33,642 [Broker1] Task-1] DEBUG TaskRunnerFactory - Initialized TaskRunnerFactory[ActiveMQ Task] using ExecutorService: java.util.concurrent.ThreadPoolExecutor@35506f5f[Running, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0] 2013-12-09 21:16:33,642 [pool-2-thread-1] DEBUG ThreadPoolUtils - Forcing shutdown of ExecutorService: java.util.concurrent.ThreadPoolExecutor@4f304f2f[Running, pool size = 2, active threads = 0, queued tasks = 0, completed tasks = 6] 2013-12-09 21:16:33,644 [ActiveMQ Task-1] DEBUG TcpTransport - Closed socket Socket[addr=/127.0.0.1,port=58028,localport=1666] 2013-12-09 21:16:33,644 [pool-2-thread-1] DEBUG ThreadPoolUtils - Shutdown of ExecutorService: java.util.concurrent.ThreadPoolExecutor@19847705[Terminated, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0] is shutdown: true and terminated: true took: 0.000 seconds. 2013-12-09 21:16:33,644 [.0.1:1666@58028] DEBUG Connection:21 - RECEIVED Exception: java.io.EOFException java.io.EOFException at java.io.DataInputStream.readInt(DataInputStream.java:392) at org.apache.activemq.openwire.OpenWireFormat.unmarshal(OpenWireFormat.java:275) at org.apache.activemq.transport.tcp.TcpTransport.readCommand(TcpTransport.java:221) at org.apache.activemq.transport.tcp.TcpTransport.doRun(TcpTransport.java:213) at org.apache.activemq.transport.tcp.TcpTransport.run(TcpTransport.java:196) at java.lang.Thread.run(Thread.java:722) 2013-12-09 21:16:33,645 [pool-2-thread-1] DEBUG TcpTransport - Stopping transport tcp://localhost/127.0.0.1:1666@58028 2013-12-09 21:16:33,644 [Broker1] Task-1] DEBUG ThreadPoolUtils - Forcing shutdown of ExecutorService: java.util.concurrent.ThreadPoolExecutor@35506f5f[Running, pool size = 1, active threads = 0, queued tasks = 0, completed tasks = 1] 2013-12-09 21:16:33,646 [pool-2-thread-1] DEBUG TaskRunnerFactory - Initialized TaskRunnerFactory[ActiveMQ Task] using ExecutorService: java.util.concurrent.ThreadPoolExecutor@291b3658[Running, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0] 2013-12-09 21:16:33,647 [Broker1] Task-1] DEBUG TransportConnection - Stopped transport: tcp://127.0.0.1:58028 2013-12-09 21:16:33,648 [ActiveMQ Task-1] DEBUG TcpTransport - Closed socket Socket[addr=localhost/127.0.0.1,port=1666,localport=58028] 2013-12-09 21:16:33,648 [Broker1] Task-1] DEBUG TransportConnection - Connection Stopped: tcp://127.0.0.1:58028 2013-12-09 21:16:33,648 [pool-2-thread-1] DEBUG ThreadPoolUtils - Forcing shutdown of ExecutorService: java.util.concurrent.ThreadPoolExecutor@291b3658[Running, pool size = 1, active threads = 0, queued tasks = 0, completed tasks = 1] 2013-12-09 21:16:33,649 [main ] INFO ConsumerProducerDBFailoverTest - 0 Producer sent 600 messages. 2013-12-09 21:16:33,652 [main ] DEBUG TaskRunnerFactory - Initialized TaskRunnerFactory[ActiveMQ Task] using ExecutorService: java.util.concurrent.ThreadPoolExecutor@46e53b70[Running, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0] 2013-12-09 21:16:33,652 [main ] DEBUG FailoverTransport - Reconnect was triggered but transport is not started yet. Wait for start to connect the transport. 2013-12-09 21:16:33,653 [main ] DEBUG FailoverTransport - Started unconnected 2013-12-09 21:16:33,653 [main ] DEBUG FailoverTransport - Waking up reconnect task 2013-12-09 21:16:33,677 [ActiveMQ Task-1] DEBUG FailoverTransport - urlList connectionList:[tcp://localhost:1666?trace=true], from: [tcp://localhost:1666?trace=true] 2013-12-09 21:16:33,678 [ActiveMQ Task-1] DEBUG FailoverTransport - Attempting 0th connect to: tcp://localhost:1666?trace=true 2013-12-09 21:16:33,680 [ActiveMQ Task-1] DEBUG WireFormatNegotiator - Sending: WireFormatInfo { version=10, properties={MaxFrameSize=9223372036854775807, CacheSize=1024, CacheEnabled=true, SizePrefixDisabled=false, MaxInactivityDurationInitalDelay=10000, TcpNoDelayEnabled=true, MaxInactivityDuration=30000, TightEncodingEnabled=true, StackTraceEnabled=true}, magic=[A,c,t,i,v,e,M,Q]} 2013-12-09 21:16:33,680 [ActiveMQ Task-1] DEBUG Connection:22 - SENDING: WireFormatInfo { version=10, properties={MaxFrameSize=9223372036854775807, CacheSize=1024, CacheEnabled=true, SizePrefixDisabled=false, MaxInactivityDurationInitalDelay=10000, TcpNoDelayEnabled=true, MaxInactivityDuration=30000, TightEncodingEnabled=true, StackTraceEnabled=true}, magic=[A,c,t,i,v,e,M,Q]} 2013-12-09 21:16:33,680 [Broker1] Task-1] DEBUG WireFormatNegotiator - Sending: WireFormatInfo { version=10, properties={MaxFrameSize=9223372036854775807, CacheSize=1024, CacheEnabled=true, SizePrefixDisabled=false, MaxInactivityDurationInitalDelay=10000, TcpNoDelayEnabled=true, MaxInactivityDuration=30000, TightEncodingEnabled=true, StackTraceEnabled=true}, magic=[A,c,t,i,v,e,M,Q]} 2013-12-09 21:16:33,681 [.0.1:58031@1666] DEBUG WireFormatNegotiator - Received WireFormat: WireFormatInfo { version=10, properties={CacheSize=1024, MaxFrameSize=9223372036854775807, CacheEnabled=true, SizePrefixDisabled=false, TcpNoDelayEnabled=true, MaxInactivityDurationInitalDelay=10000, MaxInactivityDuration=30000, TightEncodingEnabled=true, StackTraceEnabled=true}, magic=[A,c,t,i,v,e,M,Q]} 2013-12-09 21:16:33,681 [ActiveMQ Task-1] DEBUG FailoverTransport - Connection established 2013-12-09 21:16:33,682 [Broker1] Task-1] DEBUG InactivityMonitor - Using min of local: WireFormatInfo { version=10, properties={MaxFrameSize=9223372036854775807, CacheSize=1024, CacheEnabled=true, SizePrefixDisabled=false, MaxInactivityDurationInitalDelay=10000, TcpNoDelayEnabled=true, MaxInactivityDuration=30000, TightEncodingEnabled=true, StackTraceEnabled=true}, magic=[A,c,t,i,v,e,M,Q]} and remote: WireFormatInfo { version=10, properties={CacheSize=1024, MaxFrameSize=9223372036854775807, CacheEnabled=true, SizePrefixDisabled=false, TcpNoDelayEnabled=true, MaxInactivityDurationInitalDelay=10000, MaxInactivityDuration=30000, TightEncodingEnabled=true, StackTraceEnabled=true}, magic=[A,c,t,i,v,e,M,Q]} 2013-12-09 21:16:33,683 [ActiveMQ Task-1] INFO FailoverTransport - Successfully connected to tcp://localhost:1666?trace=true 2013-12-09 21:16:33,685 [.0.1:58031@1666] DEBUG WireFormatNegotiator - tcp:///127.0.0.1:58031@1666 before negotiation: OpenWireFormat{version=10, cacheEnabled=false, stackTraceEnabled=false, tightEncodingEnabled=false, sizePrefixDisabled=false, maxFrameSize=9223372036854775807} 2013-12-09 21:16:33,685 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: WireFormatInfo { version=10, properties={CacheSize=1024, MaxFrameSize=9223372036854775807, CacheEnabled=true, SizePrefixDisabled=false, TcpNoDelayEnabled=true, MaxInactivityDurationInitalDelay=10000, MaxInactivityDuration=30000, TightEncodingEnabled=true, StackTraceEnabled=true}, magic=[A,c,t,i,v,e,M,Q]} 2013-12-09 21:16:33,686 [.0.1:58031@1666] DEBUG WireFormatNegotiator - tcp:///127.0.0.1:58031@1666 after negotiation: OpenWireFormat{version=10, cacheEnabled=true, stackTraceEnabled=true, tightEncodingEnabled=true, sizePrefixDisabled=false, maxFrameSize=9223372036854775807} 2013-12-09 21:16:33,686 [.0.1:1666@58031] DEBUG InactivityMonitor - Using min of local: WireFormatInfo { version=10, properties={MaxFrameSize=9223372036854775807, CacheSize=1024, CacheEnabled=true, SizePrefixDisabled=false, MaxInactivityDurationInitalDelay=10000, TcpNoDelayEnabled=true, MaxInactivityDuration=30000, TightEncodingEnabled=true, StackTraceEnabled=true}, magic=[A,c,t,i,v,e,M,Q]} and remote: WireFormatInfo { version=10, properties={CacheSize=1024, MaxFrameSize=9223372036854775807, CacheEnabled=true, SizePrefixDisabled=false, TcpNoDelayEnabled=true, MaxInactivityDurationInitalDelay=10000, MaxInactivityDuration=30000, TightEncodingEnabled=true, StackTraceEnabled=true}, magic=[A,c,t,i,v,e,M,Q]} 2013-12-09 21:16:33,688 [.0.1:1666@58031] DEBUG WireFormatNegotiator - Received WireFormat: WireFormatInfo { version=10, properties={CacheSize=1024, MaxFrameSize=9223372036854775807, CacheEnabled=true, SizePrefixDisabled=false, TcpNoDelayEnabled=true, MaxInactivityDurationInitalDelay=10000, MaxInactivityDuration=30000, TightEncodingEnabled=true, StackTraceEnabled=true}, magic=[A,c,t,i,v,e,M,Q]} 2013-12-09 21:16:33,689 [.0.1:1666@58031] DEBUG WireFormatNegotiator - tcp://localhost/127.0.0.1:1666@58031 before negotiation: OpenWireFormat{version=10, cacheEnabled=false, stackTraceEnabled=false, tightEncodingEnabled=false, sizePrefixDisabled=false, maxFrameSize=9223372036854775807} 2013-12-09 21:16:33,689 [.0.1:1666@58031] DEBUG WireFormatNegotiator - tcp://localhost/127.0.0.1:1666@58031 after negotiation: OpenWireFormat{version=10, cacheEnabled=true, stackTraceEnabled=true, tightEncodingEnabled=true, sizePrefixDisabled=false, maxFrameSize=9223372036854775807} 2013-12-09 21:16:33,690 [main ] DEBUG Connection:22 - SENDING: ConnectionInfo {commandId = 1, responseRequired = true, connectionId = ID:sideshow.home-57960-1386620121463-5:1, clientId = ID:sideshow.home-57960-1386620121463-4:1, clientIp = null, userName = admin, password = *****, brokerPath = null, brokerMasterConnector = false, manageable = true, clientMaster = true, faultTolerant = true, failoverReconnect = false} 2013-12-09 21:16:33,690 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: BrokerInfo {commandId = 0, responseRequired = false, brokerId = ID:sideshow.home-57960-1386620121463-0:1, brokerURL = tcp://127.0.0.1:1666, slaveBroker = false, masterBroker = false, faultTolerantConfiguration = false, networkConnection = false, duplexConnection = false, peerBrokerInfos = null, brokerName = coreActiveMQBroker1, connectionId = 0, brokerUploadUrl = null, networkProperties = null} 2013-12-09 21:16:33,691 [.0.1:58031@1666] DEBUG TransportConnection - Setting up new connection id: ID:sideshow.home-57960-1386620121463-5:1, address: tcp://127.0.0.1:58031, info: ConnectionInfo {commandId = 1, responseRequired = true, connectionId = ID:sideshow.home-57960-1386620121463-5:1, clientId = ID:sideshow.home-57960-1386620121463-4:1, clientIp = null, userName = admin, password = *****, brokerPath = null, brokerMasterConnector = false, manageable = true, clientMaster = true, faultTolerant = true, failoverReconnect = false} 2013-12-09 21:16:33,693 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 1} 2013-12-09 21:16:33,693 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: ConnectionControl {commandId = 0, responseRequired = false, suspend = false, resume = false, close = false, exit = false, faultTolerant = false, connectedBrokers = , reconnectTo = , token = null, rebalanceConnection = false} 2013-12-09 21:16:33,694 [main ] DEBUG Connection:22 - SENDING: ConsumerInfo {commandId = 2, responseRequired = true, consumerId = ID:sideshow.home-57960-1386620121463-5:1:-1:1, destination = ActiveMQ.Advisory.TempQueue,ActiveMQ.Advisory.TempTopic, prefetchSize = 1000, maximumPendingMessageLimit = 0, browser = false, dispatchAsync = true, selector = null, clientId = null, subscriptionName = null, noLocal = true, exclusive = false, retroactive = false, priority = 0, brokerPath = null, optimizedAcknowledge = false, noRangeAcks = false, additionalPredicate = null} 2013-12-09 21:16:33,695 [.0.1:58031@1666] DEBUG AbstractRegion - coreActiveMQBroker1 adding consumer: ID:sideshow.home-57960-1386620121463-5:1:-1:1 for destination: ActiveMQ.Advisory.TempQueue,ActiveMQ.Advisory.TempTopic 2013-12-09 21:16:33,696 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 2} 2013-12-09 21:16:33,696 [main ] DEBUG Connection:22 - SENDING: SessionInfo {commandId = 3, responseRequired = false, sessionId = ID:sideshow.home-57960-1386620121463-5:1:1} 2013-12-09 21:16:33,704 [main ] DEBUG Connection:22 - SENDING: ConsumerInfo {commandId = 4, responseRequired = true, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, prefetchSize = 1000, maximumPendingMessageLimit = 0, browser = false, dispatchAsync = true, selector = null, clientId = ID:sideshow.home-57960-1386620121463-4:1, subscriptionName = null, noLocal = false, exclusive = false, retroactive = false, priority = 0, brokerPath = null, optimizedAcknowledge = false, noRangeAcks = false, additionalPredicate = null} 2013-12-09 21:16:33,706 [.0.1:58031@1666] DEBUG AbstractRegion - coreActiveMQBroker1 adding consumer: ID:sideshow.home-57960-1386620121463-5:1:1:1 for destination: queue://test_queue_z0 2013-12-09 21:16:33,710 [.0.1:58031@1666] DEBUG Queue - queue://test_queue_z0 add sub: 0, dequeues: 0, dispatched: 0, inflight: {} 2013-12-09 21:16:33,710 [Broker1] Task-3] DEBUG Queue - test_queue_z0 toPageIn: 0, Inflight: 0, pagedInMessages.size 599, enqueueCount: 599, dequeueCount: 0 2013-12-09 21:16:33,711 [.0.1:58031@1666] DEBUG AbstractRegion - coreActiveMQBroker1 adding destination: topic://ActiveMQ.Advisory.Consumer.Queue.test_queue_z0 2013-12-09 21:16:33,712 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 4} 2013-12-09 21:16:33,712 [main ] DEBUG TaskRunnerFactory - Initialized TaskRunnerFactory[ActiveMQ Session Task] using ExecutorService: java.util.concurrent.ThreadPoolExecutor@3726c255[Running, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0] 2013-12-09 21:16:33,715 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 7, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:3, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620122303, arrival = 0, brokerInTime = 1386620139089, brokerOutTime = 1386620193714, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@d3bf5f8, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 1}, redeliveryCounter = 0} 2013-12-09 21:16:33,718 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 8, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:4, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620139145, arrival = 0, brokerInTime = 1386620139146, brokerOutTime = 1386620193714, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5f5e154a, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 2}, redeliveryCounter = 0} 2013-12-09 21:16:33,721 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 9, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:5, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620139202, arrival = 0, brokerInTime = 1386620139204, brokerOutTime = 1386620193714, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@39c4d0cd, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 3}, redeliveryCounter = 0} 2013-12-09 21:16:33,722 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 5, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:1} 2013-12-09 21:16:33,724 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 10, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:6, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620139260, arrival = 0, brokerInTime = 1386620139262, brokerOutTime = 1386620193714, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@936fb50, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 4}, redeliveryCounter = 0} 2013-12-09 21:16:33,724 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:1 2013-12-09 21:16:33,727 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 11, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:7, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620139319, arrival = 0, brokerInTime = 1386620139321, brokerOutTime = 1386620193715, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@68949ed6, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 5}, redeliveryCounter = 0} 2013-12-09 21:16:33,727 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:1 2013-12-09 21:16:33,730 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 12, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:8, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620139376, arrival = 0, brokerInTime = 1386620139378, brokerOutTime = 1386620193715, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1ab1f43b, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 6}, redeliveryCounter = 0} 2013-12-09 21:16:33,730 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 6, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:3, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:3, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:1, messageCount = 1, poisonCause = null} 2013-12-09 21:16:33,734 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 13, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:9, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620139434, arrival = 0, brokerInTime = 1386620139436, brokerOutTime = 1386620193715, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7b486fa6, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 7}, redeliveryCounter = 0} 2013-12-09 21:16:33,735 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:1 syncCount: 1 2013-12-09 21:16:33,738 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 14, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:10, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620139492, arrival = 0, brokerInTime = 1386620139494, brokerOutTime = 1386620193715, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@42d858b9, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 8}, redeliveryCounter = 0} 2013-12-09 21:16:33,739 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 7, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:1} 2013-12-09 21:16:33,742 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 15, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:11, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620139550, arrival = 0, brokerInTime = 1386620139552, brokerOutTime = 1386620193715, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@538bc255, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 9}, redeliveryCounter = 0} 2013-12-09 21:16:33,742 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:1 syncCount: 2 2013-12-09 21:16:33,745 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 16, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:12, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620139608, arrival = 0, brokerInTime = 1386620139609, brokerOutTime = 1386620193716, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@41ec8a6e, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 10}, redeliveryCounter = 0} 2013-12-09 21:16:33,750 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 17, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:13, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620139666, arrival = 0, brokerInTime = 1386620139668, brokerOutTime = 1386620193716, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@57376b55, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 11}, redeliveryCounter = 0} 2013-12-09 21:16:33,753 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 18, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:14, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620139724, arrival = 0, brokerInTime = 1386620139725, brokerOutTime = 1386620193716, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3e043340, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 12}, redeliveryCounter = 0} 2013-12-09 21:16:33,755 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 19, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:15, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620139782, arrival = 0, brokerInTime = 1386620139784, brokerOutTime = 1386620193716, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5c0ce8f, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 13}, redeliveryCounter = 0} 2013-12-09 21:16:33,758 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 20, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:16, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620139840, arrival = 0, brokerInTime = 1386620139841, brokerOutTime = 1386620193716, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3539113c, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 14}, redeliveryCounter = 0} 2013-12-09 21:16:33,760 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 21, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:17, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620139898, arrival = 0, brokerInTime = 1386620139899, brokerOutTime = 1386620193716, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@359a9570, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 15}, redeliveryCounter = 0} 2013-12-09 21:16:33,763 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 22, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:18, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620139956, arrival = 0, brokerInTime = 1386620139957, brokerOutTime = 1386620193717, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@37c9078e, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 16}, redeliveryCounter = 0} 2013-12-09 21:16:33,766 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 23, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:19, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620140014, arrival = 0, brokerInTime = 1386620140015, brokerOutTime = 1386620193717, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6f0f183e, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 17}, redeliveryCounter = 0} 2013-12-09 21:16:33,769 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 24, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:20, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620140072, arrival = 0, brokerInTime = 1386620140073, brokerOutTime = 1386620193717, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4800c768, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 18}, redeliveryCounter = 0} 2013-12-09 21:16:33,772 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 25, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:21, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620140130, arrival = 0, brokerInTime = 1386620140131, brokerOutTime = 1386620193717, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2b23a1c6, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 19}, redeliveryCounter = 0} 2013-12-09 21:16:33,775 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 26, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:22, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620140188, arrival = 0, brokerInTime = 1386620140189, brokerOutTime = 1386620193717, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3051e44a, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 20}, redeliveryCounter = 0} 2013-12-09 21:16:33,778 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 27, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:23, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620140246, arrival = 0, brokerInTime = 1386620140247, brokerOutTime = 1386620193717, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5062cf0e, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 21}, redeliveryCounter = 0} 2013-12-09 21:16:33,780 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 28, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:24, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620140304, arrival = 0, brokerInTime = 1386620140305, brokerOutTime = 1386620193718, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@707c95d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 22}, redeliveryCounter = 0} 2013-12-09 21:16:33,782 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 29, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:25, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620140362, arrival = 0, brokerInTime = 1386620140363, brokerOutTime = 1386620193718, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1034fc46, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 23}, redeliveryCounter = 0} 2013-12-09 21:16:33,784 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 30, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:26, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620140420, arrival = 0, brokerInTime = 1386620140422, brokerOutTime = 1386620193718, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@69e5ffa, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 24}, redeliveryCounter = 0} 2013-12-09 21:16:33,787 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 31, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:27, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620140478, arrival = 0, brokerInTime = 1386620140479, brokerOutTime = 1386620193718, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7af197b, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 25}, redeliveryCounter = 0} 2013-12-09 21:16:33,790 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 32, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:28, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620140536, arrival = 0, brokerInTime = 1386620140537, brokerOutTime = 1386620193718, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@78b1de2d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 26}, redeliveryCounter = 0} 2013-12-09 21:16:33,792 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 33, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:29, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620140594, arrival = 0, brokerInTime = 1386620140595, brokerOutTime = 1386620193718, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@65719a42, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 27}, redeliveryCounter = 0} 2013-12-09 21:16:33,794 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 34, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:30, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620140652, arrival = 0, brokerInTime = 1386620140653, brokerOutTime = 1386620193719, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5469716, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 28}, redeliveryCounter = 0} 2013-12-09 21:16:33,797 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 35, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:31, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620140710, arrival = 0, brokerInTime = 1386620140711, brokerOutTime = 1386620193719, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5d69280e, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 29}, redeliveryCounter = 0} 2013-12-09 21:16:33,799 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 36, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:32, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620140776, arrival = 0, brokerInTime = 1386620140777, brokerOutTime = 1386620193719, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@22c4df0b, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 30}, redeliveryCounter = 0} 2013-12-09 21:16:33,802 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 37, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:33, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620140842, arrival = 0, brokerInTime = 1386620140844, brokerOutTime = 1386620193719, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2b0f5d02, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 31}, redeliveryCounter = 0} 2013-12-09 21:16:33,804 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 38, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:34, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620140901, arrival = 0, brokerInTime = 1386620140903, brokerOutTime = 1386620193719, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7da34463, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 32}, redeliveryCounter = 0} 2013-12-09 21:16:33,806 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 39, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:35, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620140966, arrival = 0, brokerInTime = 1386620140968, brokerOutTime = 1386620193720, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@69df0005, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 33}, redeliveryCounter = 0} 2013-12-09 21:16:33,808 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 40, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:36, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620141034, arrival = 0, brokerInTime = 1386620141036, brokerOutTime = 1386620193720, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2f7a7e90, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 34}, redeliveryCounter = 0} 2013-12-09 21:16:33,810 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 41, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:37, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620141092, arrival = 0, brokerInTime = 1386620141094, brokerOutTime = 1386620193720, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@130b384a, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 35}, redeliveryCounter = 0} 2013-12-09 21:16:33,812 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 42, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:38, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620141150, arrival = 0, brokerInTime = 1386620141152, brokerOutTime = 1386620193720, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@459c8c0a, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 36}, redeliveryCounter = 0} 2013-12-09 21:16:33,814 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 43, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:39, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620141208, arrival = 0, brokerInTime = 1386620141210, brokerOutTime = 1386620193720, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@28ae083a, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 37}, redeliveryCounter = 0} 2013-12-09 21:16:33,817 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 44, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:40, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620141267, arrival = 0, brokerInTime = 1386620141269, brokerOutTime = 1386620193720, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@399e2cb3, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 38}, redeliveryCounter = 0} 2013-12-09 21:16:33,820 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 45, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:41, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620141324, arrival = 0, brokerInTime = 1386620141326, brokerOutTime = 1386620193721, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3f88b952, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 39}, redeliveryCounter = 0} 2013-12-09 21:16:33,823 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 46, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:42, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620141382, arrival = 0, brokerInTime = 1386620141383, brokerOutTime = 1386620193721, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@293ed714, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 40}, redeliveryCounter = 0} 2013-12-09 21:16:33,825 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 47, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:43, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620141440, arrival = 0, brokerInTime = 1386620141442, brokerOutTime = 1386620193721, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@62730984, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 41}, redeliveryCounter = 0} 2013-12-09 21:16:33,827 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 48, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:44, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620141499, arrival = 0, brokerInTime = 1386620141500, brokerOutTime = 1386620193721, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6e75eb9a, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 42}, redeliveryCounter = 0} 2013-12-09 21:16:33,830 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 49, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:45, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620141614, arrival = 0, brokerInTime = 1386620141616, brokerOutTime = 1386620193721, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7fbf041d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 43}, redeliveryCounter = 0} 2013-12-09 21:16:33,832 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 50, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:46, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620141672, arrival = 0, brokerInTime = 1386620141674, brokerOutTime = 1386620193722, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@55a74d70, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 44}, redeliveryCounter = 0} 2013-12-09 21:16:33,834 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 51, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:47, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620141730, arrival = 0, brokerInTime = 1386620141732, brokerOutTime = 1386620193722, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5acd1ffe, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 45}, redeliveryCounter = 0} 2013-12-09 21:16:33,837 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 52, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:48, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620141788, arrival = 0, brokerInTime = 1386620141790, brokerOutTime = 1386620193722, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@50ef8b44, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 46}, redeliveryCounter = 0} 2013-12-09 21:16:33,840 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 53, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:49, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620141846, arrival = 0, brokerInTime = 1386620141847, brokerOutTime = 1386620193722, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1ea046df, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 47}, redeliveryCounter = 0} 2013-12-09 21:16:33,843 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 54, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:50, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620141904, arrival = 0, brokerInTime = 1386620141906, brokerOutTime = 1386620193722, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2c8cea2e, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 48}, redeliveryCounter = 0} 2013-12-09 21:16:33,847 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 55, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:51, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620141962, arrival = 0, brokerInTime = 1386620141963, brokerOutTime = 1386620193722, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@576288db, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 49}, redeliveryCounter = 0} 2013-12-09 21:16:33,849 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 56, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:52, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620142020, arrival = 0, brokerInTime = 1386620142022, brokerOutTime = 1386620193722, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6070eaf, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 50}, redeliveryCounter = 0} 2013-12-09 21:16:33,852 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 57, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:53, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620142078, arrival = 0, brokerInTime = 1386620142080, brokerOutTime = 1386620193723, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@39550640, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 51}, redeliveryCounter = 0} 2013-12-09 21:16:33,854 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 58, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:54, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620142136, arrival = 0, brokerInTime = 1386620142137, brokerOutTime = 1386620193723, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7d0d7127, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 52}, redeliveryCounter = 0} 2013-12-09 21:16:33,857 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 59, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:55, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620142194, arrival = 0, brokerInTime = 1386620142195, brokerOutTime = 1386620193723, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7d7ff794, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 53}, redeliveryCounter = 0} 2013-12-09 21:16:33,860 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 60, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:56, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620142252, arrival = 0, brokerInTime = 1386620142253, brokerOutTime = 1386620193723, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5c5755ea, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 54}, redeliveryCounter = 0} 2013-12-09 21:16:33,863 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 61, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:57, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620142310, arrival = 0, brokerInTime = 1386620142312, brokerOutTime = 1386620193723, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@69c9a502, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 55}, redeliveryCounter = 0} 2013-12-09 21:16:33,865 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 62, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:58, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620142368, arrival = 0, brokerInTime = 1386620142370, brokerOutTime = 1386620193723, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@35705c90, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 56}, redeliveryCounter = 0} 2013-12-09 21:16:33,868 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 63, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:59, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620142426, arrival = 0, brokerInTime = 1386620142428, brokerOutTime = 1386620193724, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@63cd0d58, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 57}, redeliveryCounter = 0} 2013-12-09 21:16:33,872 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 64, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:60, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620142484, arrival = 0, brokerInTime = 1386620142486, brokerOutTime = 1386620193724, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2b273f98, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 58}, redeliveryCounter = 0} 2013-12-09 21:16:33,875 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 65, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:61, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620142542, arrival = 0, brokerInTime = 1386620142544, brokerOutTime = 1386620193724, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1dc02a4a, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 59}, redeliveryCounter = 0} 2013-12-09 21:16:33,877 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 66, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:62, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620142600, arrival = 0, brokerInTime = 1386620142603, brokerOutTime = 1386620193724, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@33186f88, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 60}, redeliveryCounter = 0} 2013-12-09 21:16:33,880 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 67, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:63, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620142658, arrival = 0, brokerInTime = 1386620142660, brokerOutTime = 1386620193724, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@94263ed, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 61}, redeliveryCounter = 0} 2013-12-09 21:16:33,882 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 68, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:64, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620142716, arrival = 0, brokerInTime = 1386620142717, brokerOutTime = 1386620193724, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@65ae615a, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 62}, redeliveryCounter = 0} 2013-12-09 21:16:33,886 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 69, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:65, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620142774, arrival = 0, brokerInTime = 1386620142776, brokerOutTime = 1386620193725, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1b798fdd, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 63}, redeliveryCounter = 0} 2013-12-09 21:16:33,893 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 70, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:66, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620142832, arrival = 0, brokerInTime = 1386620142833, brokerOutTime = 1386620193725, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@49d40442, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 64}, redeliveryCounter = 0} 2013-12-09 21:16:33,896 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 71, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:67, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620142898, arrival = 0, brokerInTime = 1386620142900, brokerOutTime = 1386620193725, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7e63aeeb, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 65}, redeliveryCounter = 0} 2013-12-09 21:16:33,899 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 72, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:68, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620142964, arrival = 0, brokerInTime = 1386620142966, brokerOutTime = 1386620193725, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@42710720, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 66}, redeliveryCounter = 0} 2013-12-09 21:16:33,902 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 73, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:69, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620143022, arrival = 0, brokerInTime = 1386620143024, brokerOutTime = 1386620193725, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@a8ae7f4, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 67}, redeliveryCounter = 0} 2013-12-09 21:16:33,904 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 74, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:70, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620143090, arrival = 0, brokerInTime = 1386620143092, brokerOutTime = 1386620193725, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@25824994, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 68}, redeliveryCounter = 0} 2013-12-09 21:16:33,907 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 75, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:71, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620143148, arrival = 0, brokerInTime = 1386620143150, brokerOutTime = 1386620193726, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@caca6c9, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 69}, redeliveryCounter = 0} 2013-12-09 21:16:33,909 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 76, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:72, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620143206, arrival = 0, brokerInTime = 1386620143207, brokerOutTime = 1386620193726, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1af9dc9f, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 70}, redeliveryCounter = 0} 2013-12-09 21:16:33,911 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 77, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:73, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620143264, arrival = 0, brokerInTime = 1386620143266, brokerOutTime = 1386620193726, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@a03588f, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 71}, redeliveryCounter = 0} 2013-12-09 21:16:33,914 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 78, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:74, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620143322, arrival = 0, brokerInTime = 1386620143323, brokerOutTime = 1386620193726, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@61ab196b, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 72}, redeliveryCounter = 0} 2013-12-09 21:16:33,916 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 79, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:75, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620143380, arrival = 0, brokerInTime = 1386620143381, brokerOutTime = 1386620193726, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2811f1e5, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 73}, redeliveryCounter = 0} 2013-12-09 21:16:33,919 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 80, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:76, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620143438, arrival = 0, brokerInTime = 1386620143440, brokerOutTime = 1386620193726, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@322005f0, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 74}, redeliveryCounter = 0} 2013-12-09 21:16:33,921 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 81, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:77, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620143496, arrival = 0, brokerInTime = 1386620143497, brokerOutTime = 1386620193727, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5465e945, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 75}, redeliveryCounter = 0} 2013-12-09 21:16:33,923 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 82, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:78, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620143554, arrival = 0, brokerInTime = 1386620143556, brokerOutTime = 1386620193727, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6eb5dc4c, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 76}, redeliveryCounter = 0} 2013-12-09 21:16:33,926 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 83, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:79, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620143612, arrival = 0, brokerInTime = 1386620143613, brokerOutTime = 1386620193727, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@65923a5c, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 77}, redeliveryCounter = 0} 2013-12-09 21:16:33,929 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 84, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:80, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620143670, arrival = 0, brokerInTime = 1386620143671, brokerOutTime = 1386620193727, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6335a21c, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 78}, redeliveryCounter = 0} 2013-12-09 21:16:33,933 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 85, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:81, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620143728, arrival = 0, brokerInTime = 1386620143730, brokerOutTime = 1386620193727, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@56260f26, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 79}, redeliveryCounter = 0} 2013-12-09 21:16:33,936 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 86, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:82, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620143787, arrival = 0, brokerInTime = 1386620143789, brokerOutTime = 1386620193727, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5cacb3f9, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 80}, redeliveryCounter = 0} 2013-12-09 21:16:33,938 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 87, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:83, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620143844, arrival = 0, brokerInTime = 1386620143845, brokerOutTime = 1386620193728, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4e5bcff7, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 81}, redeliveryCounter = 0} 2013-12-09 21:16:33,941 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 88, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:84, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620143902, arrival = 0, brokerInTime = 1386620143904, brokerOutTime = 1386620193728, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6db28951, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 82}, redeliveryCounter = 0} 2013-12-09 21:16:33,944 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 89, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:85, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620143960, arrival = 0, brokerInTime = 1386620143961, brokerOutTime = 1386620193728, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@64555d1a, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 83}, redeliveryCounter = 0} 2013-12-09 21:16:33,947 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 90, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:86, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620144018, arrival = 0, brokerInTime = 1386620144020, brokerOutTime = 1386620193728, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2053896c, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 84}, redeliveryCounter = 0} 2013-12-09 21:16:33,949 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 91, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:87, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620144076, arrival = 0, brokerInTime = 1386620144077, brokerOutTime = 1386620193728, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4c632208, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 85}, redeliveryCounter = 0} 2013-12-09 21:16:33,953 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 92, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:88, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620144134, arrival = 0, brokerInTime = 1386620144136, brokerOutTime = 1386620193728, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4f6266, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 86}, redeliveryCounter = 0} 2013-12-09 21:16:33,956 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 93, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:89, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620144192, arrival = 0, brokerInTime = 1386620144194, brokerOutTime = 1386620193729, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5bc516b2, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 87}, redeliveryCounter = 0} 2013-12-09 21:16:33,960 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 94, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:90, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620144250, arrival = 0, brokerInTime = 1386620144252, brokerOutTime = 1386620193729, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@68552f2f, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 88}, redeliveryCounter = 0} 2013-12-09 21:16:33,962 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 95, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:91, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620144309, arrival = 0, brokerInTime = 1386620144311, brokerOutTime = 1386620193729, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@308cec2c, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 89}, redeliveryCounter = 0} 2013-12-09 21:16:33,965 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 96, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:92, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620144366, arrival = 0, brokerInTime = 1386620144367, brokerOutTime = 1386620193729, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@73e5559a, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 90}, redeliveryCounter = 0} 2013-12-09 21:16:33,968 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 97, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:93, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620144424, arrival = 0, brokerInTime = 1386620144425, brokerOutTime = 1386620193729, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@55572ce7, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 91}, redeliveryCounter = 0} 2013-12-09 21:16:33,971 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 98, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:94, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620144482, arrival = 0, brokerInTime = 1386620144483, brokerOutTime = 1386620193729, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4e451d76, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 92}, redeliveryCounter = 0} 2013-12-09 21:16:33,974 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 99, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:95, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620144540, arrival = 0, brokerInTime = 1386620144541, brokerOutTime = 1386620193729, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1b91561f, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 93}, redeliveryCounter = 0} 2013-12-09 21:16:33,977 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 100, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:96, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620144598, arrival = 0, brokerInTime = 1386620144599, brokerOutTime = 1386620193730, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@62ad1b5c, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 94}, redeliveryCounter = 0} 2013-12-09 21:16:33,979 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 101, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:97, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620144664, arrival = 0, brokerInTime = 1386620144665, brokerOutTime = 1386620193730, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@52df67a0, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 95}, redeliveryCounter = 0} 2013-12-09 21:16:33,981 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 102, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:98, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620144722, arrival = 0, brokerInTime = 1386620144723, brokerOutTime = 1386620193730, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@490c63e1, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 96}, redeliveryCounter = 0} 2013-12-09 21:16:33,985 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 103, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:99, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620144830, arrival = 0, brokerInTime = 1386620144831, brokerOutTime = 1386620193730, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4c716e3e, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 97}, redeliveryCounter = 0} 2013-12-09 21:16:33,988 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 104, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:100, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620144896, arrival = 0, brokerInTime = 1386620144897, brokerOutTime = 1386620193730, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2afccfa7, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 98}, redeliveryCounter = 0} 2013-12-09 21:16:33,990 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 105, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:101, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620145003, arrival = 0, brokerInTime = 1386620145005, brokerOutTime = 1386620193731, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3ba4f2fd, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 99}, redeliveryCounter = 0} 2013-12-09 21:16:33,993 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 106, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:102, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620145070, arrival = 0, brokerInTime = 1386620145072, brokerOutTime = 1386620193731, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4a4cdea2, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 100}, redeliveryCounter = 0} 2013-12-09 21:16:33,996 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 107, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:103, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620145127, arrival = 0, brokerInTime = 1386620145129, brokerOutTime = 1386620193731, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7cac83c9, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 101}, redeliveryCounter = 0} 2013-12-09 21:16:33,999 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 108, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:104, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620145185, arrival = 0, brokerInTime = 1386620145187, brokerOutTime = 1386620193731, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@22004111, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 102}, redeliveryCounter = 0} 2013-12-09 21:16:34,002 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 109, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:105, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620145255, arrival = 0, brokerInTime = 1386620145257, brokerOutTime = 1386620193731, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3eafd487, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 103}, redeliveryCounter = 0} 2013-12-09 21:16:34,005 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 110, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:106, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620145312, arrival = 0, brokerInTime = 1386620145314, brokerOutTime = 1386620193731, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@9aa0b38, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 104}, redeliveryCounter = 0} 2013-12-09 21:16:34,008 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 111, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:107, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620145369, arrival = 0, brokerInTime = 1386620145371, brokerOutTime = 1386620193731, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7ac68e7c, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 105}, redeliveryCounter = 0} 2013-12-09 21:16:34,011 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 112, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:108, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620145427, arrival = 0, brokerInTime = 1386620145429, brokerOutTime = 1386620193732, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1b4addd, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 106}, redeliveryCounter = 0} 2013-12-09 21:16:34,015 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 113, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:109, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620145485, arrival = 0, brokerInTime = 1386620145487, brokerOutTime = 1386620193732, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7d02890a, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 107}, redeliveryCounter = 0} 2013-12-09 21:16:34,018 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 114, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:110, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620145543, arrival = 0, brokerInTime = 1386620145544, brokerOutTime = 1386620193732, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@13cd159, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 108}, redeliveryCounter = 0} 2013-12-09 21:16:34,021 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 115, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:111, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620145601, arrival = 0, brokerInTime = 1386620145602, brokerOutTime = 1386620193732, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3fd42ab1, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 109}, redeliveryCounter = 0} 2013-12-09 21:16:34,024 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 116, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:112, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620145659, arrival = 0, brokerInTime = 1386620145660, brokerOutTime = 1386620193733, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@23eeb34, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 110}, redeliveryCounter = 0} 2013-12-09 21:16:34,026 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 117, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:113, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620145717, arrival = 0, brokerInTime = 1386620145719, brokerOutTime = 1386620193733, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@70c3a412, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 111}, redeliveryCounter = 0} 2013-12-09 21:16:34,029 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 118, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:114, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620145775, arrival = 0, brokerInTime = 1386620145776, brokerOutTime = 1386620193733, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3c48d394, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 112}, redeliveryCounter = 0} 2013-12-09 21:16:34,032 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 119, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:115, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620145833, arrival = 0, brokerInTime = 1386620145834, brokerOutTime = 1386620193733, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@513ab877, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 113}, redeliveryCounter = 0} 2013-12-09 21:16:34,035 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 120, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:116, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620145891, arrival = 0, brokerInTime = 1386620145892, brokerOutTime = 1386620193733, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6624b64a, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 114}, redeliveryCounter = 0} 2013-12-09 21:16:34,038 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 121, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:117, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620145949, arrival = 0, brokerInTime = 1386620145950, brokerOutTime = 1386620193734, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@743be8a9, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 115}, redeliveryCounter = 0} 2013-12-09 21:16:34,041 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 122, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:118, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146007, arrival = 0, brokerInTime = 1386620146008, brokerOutTime = 1386620193734, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@927eadd, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 116}, redeliveryCounter = 0} 2013-12-09 21:16:34,044 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 123, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:119, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146065, arrival = 0, brokerInTime = 1386620146067, brokerOutTime = 1386620193734, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1bac57dd, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 117}, redeliveryCounter = 0} 2013-12-09 21:16:34,046 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 124, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:120, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146123, arrival = 0, brokerInTime = 1386620146124, brokerOutTime = 1386620193734, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4fbc7c5c, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 118}, redeliveryCounter = 0} 2013-12-09 21:16:34,049 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 125, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:121, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146181, arrival = 0, brokerInTime = 1386620146183, brokerOutTime = 1386620193735, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5f88a4e9, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 119}, redeliveryCounter = 0} 2013-12-09 21:16:34,052 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 126, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:122, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146239, arrival = 0, brokerInTime = 1386620146240, brokerOutTime = 1386620193735, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@402edff, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 120}, redeliveryCounter = 0} 2013-12-09 21:16:34,055 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 127, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:123, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146297, arrival = 0, brokerInTime = 1386620146298, brokerOutTime = 1386620193735, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5c570267, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 121}, redeliveryCounter = 0} 2013-12-09 21:16:34,057 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 128, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:124, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146355, arrival = 0, brokerInTime = 1386620146356, brokerOutTime = 1386620193736, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@545ee78d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 122}, redeliveryCounter = 0} 2013-12-09 21:16:34,060 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 129, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:125, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146413, arrival = 0, brokerInTime = 1386620146414, brokerOutTime = 1386620193736, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@22b40541, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 123}, redeliveryCounter = 0} 2013-12-09 21:16:34,063 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 130, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:126, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146479, arrival = 0, brokerInTime = 1386620146481, brokerOutTime = 1386620193739, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@58c50033, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 124}, redeliveryCounter = 0} 2013-12-09 21:16:34,065 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 131, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:127, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146587, arrival = 0, brokerInTime = 1386620146588, brokerOutTime = 1386620193739, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6d9041cc, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 125}, redeliveryCounter = 0} 2013-12-09 21:16:34,068 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 132, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:128, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146653, arrival = 0, brokerInTime = 1386620146654, brokerOutTime = 1386620193739, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@19cff046, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 126}, redeliveryCounter = 0} 2013-12-09 21:16:34,071 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 133, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:129, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146761, arrival = 0, brokerInTime = 1386620146762, brokerOutTime = 1386620193740, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@22a790e7, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 127}, redeliveryCounter = 0} 2013-12-09 21:16:34,074 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 134, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:130, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146868, arrival = 0, brokerInTime = 1386620146870, brokerOutTime = 1386620193740, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@271a3f77, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 128}, redeliveryCounter = 0} 2013-12-09 21:16:34,076 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 135, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:131, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146926, arrival = 0, brokerInTime = 1386620146928, brokerOutTime = 1386620193740, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2c3cb1af, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 129}, redeliveryCounter = 0} 2013-12-09 21:16:34,080 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 136, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:132, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146985, arrival = 0, brokerInTime = 1386620146986, brokerOutTime = 1386620193740, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@44b56ed9, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 130}, redeliveryCounter = 0} 2013-12-09 21:16:34,083 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 137, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:133, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147042, arrival = 0, brokerInTime = 1386620147043, brokerOutTime = 1386620193741, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@63808bcc, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 131}, redeliveryCounter = 0} 2013-12-09 21:16:34,085 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 138, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:134, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147101, arrival = 0, brokerInTime = 1386620147102, brokerOutTime = 1386620193741, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@c5a311d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 132}, redeliveryCounter = 0} 2013-12-09 21:16:34,088 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 139, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:135, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147158, arrival = 0, brokerInTime = 1386620147159, brokerOutTime = 1386620193741, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@754e6d40, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 133}, redeliveryCounter = 0} 2013-12-09 21:16:34,090 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 140, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:136, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147216, arrival = 0, brokerInTime = 1386620147217, brokerOutTime = 1386620193741, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6fe6c0ea, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 134}, redeliveryCounter = 0} 2013-12-09 21:16:34,092 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 141, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:137, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147274, arrival = 0, brokerInTime = 1386620147275, brokerOutTime = 1386620193741, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@16837c0b, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 135}, redeliveryCounter = 0} 2013-12-09 21:16:34,095 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 142, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:138, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147332, arrival = 0, brokerInTime = 1386620147333, brokerOutTime = 1386620193741, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1244c1b9, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 136}, redeliveryCounter = 0} 2013-12-09 21:16:34,098 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 143, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:139, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147400, arrival = 0, brokerInTime = 1386620147401, brokerOutTime = 1386620193741, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@600a620d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 137}, redeliveryCounter = 0} 2013-12-09 21:16:34,101 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 144, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:140, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147458, arrival = 0, brokerInTime = 1386620147459, brokerOutTime = 1386620193742, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@49ab74bd, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 138}, redeliveryCounter = 0} 2013-12-09 21:16:34,103 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 145, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:141, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147516, arrival = 0, brokerInTime = 1386620147517, brokerOutTime = 1386620193742, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@177d4a14, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 139}, redeliveryCounter = 0} 2013-12-09 21:16:34,105 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 146, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:142, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147574, arrival = 0, brokerInTime = 1386620147575, brokerOutTime = 1386620193742, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@228a7318, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 140}, redeliveryCounter = 0} 2013-12-09 21:16:34,107 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 147, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:143, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147632, arrival = 0, brokerInTime = 1386620147633, brokerOutTime = 1386620193742, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2f8a3e5f, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 141}, redeliveryCounter = 0} 2013-12-09 21:16:34,109 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 148, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:144, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147690, arrival = 0, brokerInTime = 1386620147691, brokerOutTime = 1386620193742, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1d04e75b, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 142}, redeliveryCounter = 0} 2013-12-09 21:16:34,111 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 149, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:145, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147747, arrival = 0, brokerInTime = 1386620147749, brokerOutTime = 1386620193742, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2cf1163f, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 143}, redeliveryCounter = 0} 2013-12-09 21:16:34,113 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 150, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:146, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147805, arrival = 0, brokerInTime = 1386620147807, brokerOutTime = 1386620193743, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7eb9926, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 144}, redeliveryCounter = 0} 2013-12-09 21:16:34,116 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 151, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:147, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147863, arrival = 0, brokerInTime = 1386620147865, brokerOutTime = 1386620193743, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7c9391d9, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 145}, redeliveryCounter = 0} 2013-12-09 21:16:34,118 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 152, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:148, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147921, arrival = 0, brokerInTime = 1386620147923, brokerOutTime = 1386620193743, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3c4c7d74, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 146}, redeliveryCounter = 0} 2013-12-09 21:16:34,120 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 153, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:149, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147980, arrival = 0, brokerInTime = 1386620147981, brokerOutTime = 1386620193743, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@41c06999, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 147}, redeliveryCounter = 0} 2013-12-09 21:16:34,122 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 154, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:150, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148038, arrival = 0, brokerInTime = 1386620148039, brokerOutTime = 1386620193743, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3f54dd88, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 148}, redeliveryCounter = 0} 2013-12-09 21:16:34,124 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 155, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:151, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148096, arrival = 0, brokerInTime = 1386620148097, brokerOutTime = 1386620193744, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5c9c2c33, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 149}, redeliveryCounter = 0} 2013-12-09 21:16:34,126 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 156, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:152, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148153, arrival = 0, brokerInTime = 1386620148155, brokerOutTime = 1386620193744, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1119f7c5, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 150}, redeliveryCounter = 0} 2013-12-09 21:16:34,128 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 157, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:153, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148211, arrival = 0, brokerInTime = 1386620148213, brokerOutTime = 1386620193744, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3fd9af48, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 151}, redeliveryCounter = 0} 2013-12-09 21:16:34,130 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 158, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:154, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148270, arrival = 0, brokerInTime = 1386620148272, brokerOutTime = 1386620193744, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6c82c0b7, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 152}, redeliveryCounter = 0} 2013-12-09 21:16:34,133 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 159, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:155, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148336, arrival = 0, brokerInTime = 1386620148339, brokerOutTime = 1386620193744, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7c3a6608, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 153}, redeliveryCounter = 0} 2013-12-09 21:16:34,136 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 160, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:156, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148394, arrival = 0, brokerInTime = 1386620148395, brokerOutTime = 1386620193744, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5e00d6ef, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 154}, redeliveryCounter = 0} 2013-12-09 21:16:34,139 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 161, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:157, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148452, arrival = 0, brokerInTime = 1386620148453, brokerOutTime = 1386620193745, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@91f1520, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 155}, redeliveryCounter = 0} 2013-12-09 21:16:34,142 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 162, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:158, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148518, arrival = 0, brokerInTime = 1386620148520, brokerOutTime = 1386620193745, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@57a3ec8d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 156}, redeliveryCounter = 0} 2013-12-09 21:16:34,145 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 163, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:159, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148576, arrival = 0, brokerInTime = 1386620148577, brokerOutTime = 1386620193745, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4aff49ee, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 157}, redeliveryCounter = 0} 2013-12-09 21:16:34,148 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 164, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:160, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148634, arrival = 0, brokerInTime = 1386620148635, brokerOutTime = 1386620193745, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3e4eceb9, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 158}, redeliveryCounter = 0} 2013-12-09 21:16:34,151 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 165, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:161, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148692, arrival = 0, brokerInTime = 1386620148693, brokerOutTime = 1386620193745, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@27e5f3a4, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 159}, redeliveryCounter = 0} 2013-12-09 21:16:34,153 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 166, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:162, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148750, arrival = 0, brokerInTime = 1386620148752, brokerOutTime = 1386620193746, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@69dea872, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 160}, redeliveryCounter = 0} 2013-12-09 21:16:34,156 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 167, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:163, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148808, arrival = 0, brokerInTime = 1386620148809, brokerOutTime = 1386620193746, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@19050aab, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 161}, redeliveryCounter = 0} 2013-12-09 21:16:34,158 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 168, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:164, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148866, arrival = 0, brokerInTime = 1386620148867, brokerOutTime = 1386620193746, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@19ff6d62, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 162}, redeliveryCounter = 0} 2013-12-09 21:16:34,160 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 169, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:165, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148924, arrival = 0, brokerInTime = 1386620148925, brokerOutTime = 1386620193746, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@50664a43, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 163}, redeliveryCounter = 0} 2013-12-09 21:16:34,162 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 170, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:166, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148982, arrival = 0, brokerInTime = 1386620148984, brokerOutTime = 1386620193746, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6b959df1, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 164}, redeliveryCounter = 0} 2013-12-09 21:16:34,165 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 171, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:167, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620149040, arrival = 0, brokerInTime = 1386620149041, brokerOutTime = 1386620193746, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2bb47065, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 165}, redeliveryCounter = 0} 2013-12-09 21:16:34,167 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 172, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:168, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620149098, arrival = 0, brokerInTime = 1386620149099, brokerOutTime = 1386620193747, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@533f0d4d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 166}, redeliveryCounter = 0} 2013-12-09 21:16:34,169 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 173, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:169, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620149386, arrival = 0, brokerInTime = 1386620149387, brokerOutTime = 1386620193747, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@508264ed, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 167}, redeliveryCounter = 0} 2013-12-09 21:16:34,171 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 174, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:170, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620149619, arrival = 0, brokerInTime = 1386620149621, brokerOutTime = 1386620193747, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@20b02ce6, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 168}, redeliveryCounter = 0} 2013-12-09 21:16:34,173 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 175, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:171, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620149769, arrival = 0, brokerInTime = 1386620149771, brokerOutTime = 1386620193747, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@e53c0ce, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 169}, redeliveryCounter = 0} 2013-12-09 21:16:34,175 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 176, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:172, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620149875, arrival = 0, brokerInTime = 1386620149877, brokerOutTime = 1386620193748, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1c971bbb, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 170}, redeliveryCounter = 0} 2013-12-09 21:16:34,176 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 177, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:173, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620149927, arrival = 0, brokerInTime = 1386620149928, brokerOutTime = 1386620193748, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@49da0a7, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 171}, redeliveryCounter = 0} 2013-12-09 21:16:34,178 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 178, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:174, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620149985, arrival = 0, brokerInTime = 1386620149987, brokerOutTime = 1386620193748, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@89e364f, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 172}, redeliveryCounter = 0} 2013-12-09 21:16:34,180 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 179, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:175, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150043, arrival = 0, brokerInTime = 1386620150044, brokerOutTime = 1386620193749, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4aff80f4, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 173}, redeliveryCounter = 0} 2013-12-09 21:16:34,182 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 180, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:176, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150101, arrival = 0, brokerInTime = 1386620150103, brokerOutTime = 1386620193749, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4c6b39a3, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 174}, redeliveryCounter = 0} 2013-12-09 21:16:34,185 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 181, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:177, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150159, arrival = 0, brokerInTime = 1386620150161, brokerOutTime = 1386620193749, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@13952387, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 175}, redeliveryCounter = 0} 2013-12-09 21:16:34,187 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 182, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:178, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150216, arrival = 0, brokerInTime = 1386620150218, brokerOutTime = 1386620193749, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@244f7e1c, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 176}, redeliveryCounter = 0} 2013-12-09 21:16:34,189 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 183, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:179, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150275, arrival = 0, brokerInTime = 1386620150276, brokerOutTime = 1386620193749, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5ee072e3, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 177}, redeliveryCounter = 0} 2013-12-09 21:16:34,191 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 184, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:180, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150341, arrival = 0, brokerInTime = 1386620150342, brokerOutTime = 1386620193750, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6196c5be, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 178}, redeliveryCounter = 0} 2013-12-09 21:16:34,194 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 185, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:181, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150399, arrival = 0, brokerInTime = 1386620150400, brokerOutTime = 1386620193750, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@71906eff, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 179}, redeliveryCounter = 0} 2013-12-09 21:16:34,196 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 186, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:182, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150457, arrival = 0, brokerInTime = 1386620150458, brokerOutTime = 1386620193750, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@41676198, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 180}, redeliveryCounter = 0} 2013-12-09 21:16:34,198 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 187, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:183, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150523, arrival = 0, brokerInTime = 1386620150524, brokerOutTime = 1386620193750, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6a3863b3, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 181}, redeliveryCounter = 0} 2013-12-09 21:16:34,200 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 188, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:184, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150589, arrival = 0, brokerInTime = 1386620150590, brokerOutTime = 1386620193750, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1c19b340, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 182}, redeliveryCounter = 0} 2013-12-09 21:16:34,202 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 189, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:185, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150647, arrival = 0, brokerInTime = 1386620150649, brokerOutTime = 1386620193751, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5b473d29, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 183}, redeliveryCounter = 0} 2013-12-09 21:16:34,204 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 190, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:186, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150705, arrival = 0, brokerInTime = 1386620150707, brokerOutTime = 1386620193751, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@22007d90, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 184}, redeliveryCounter = 0} 2013-12-09 21:16:34,206 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 191, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:187, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150763, arrival = 0, brokerInTime = 1386620150764, brokerOutTime = 1386620193751, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4e338a60, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 185}, redeliveryCounter = 0} 2013-12-09 21:16:34,208 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 192, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:188, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150821, arrival = 0, brokerInTime = 1386620150823, brokerOutTime = 1386620193751, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@19c1ccbc, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 186}, redeliveryCounter = 0} 2013-12-09 21:16:34,210 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 193, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:189, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150879, arrival = 0, brokerInTime = 1386620150880, brokerOutTime = 1386620193751, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@26857da, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 187}, redeliveryCounter = 0} 2013-12-09 21:16:34,212 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 194, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:190, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150937, arrival = 0, brokerInTime = 1386620150938, brokerOutTime = 1386620193751, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@105faa72, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 188}, redeliveryCounter = 0} 2013-12-09 21:16:34,213 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 195, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:191, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150995, arrival = 0, brokerInTime = 1386620150996, brokerOutTime = 1386620193751, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@78af2ac3, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 189}, redeliveryCounter = 0} 2013-12-09 21:16:34,216 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 196, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:192, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151053, arrival = 0, brokerInTime = 1386620151054, brokerOutTime = 1386620193752, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3420a61b, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 190}, redeliveryCounter = 0} 2013-12-09 21:16:34,218 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 197, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:193, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151111, arrival = 0, brokerInTime = 1386620151113, brokerOutTime = 1386620193752, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4b795159, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 191}, redeliveryCounter = 0} 2013-12-09 21:16:34,220 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 198, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:194, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151169, arrival = 0, brokerInTime = 1386620151170, brokerOutTime = 1386620193752, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@9cbd0c5, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 192}, redeliveryCounter = 0} 2013-12-09 21:16:34,223 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 199, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:195, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151227, arrival = 0, brokerInTime = 1386620151228, brokerOutTime = 1386620193752, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@23f73a89, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 193}, redeliveryCounter = 0} 2013-12-09 21:16:34,225 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 200, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:196, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151285, arrival = 0, brokerInTime = 1386620151286, brokerOutTime = 1386620193752, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3c240ad1, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 194}, redeliveryCounter = 0} 2013-12-09 21:16:34,227 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 201, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:197, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151343, arrival = 0, brokerInTime = 1386620151344, brokerOutTime = 1386620193752, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@62423e2f, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 195}, redeliveryCounter = 0} 2013-12-09 21:16:34,229 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 202, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:198, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151401, arrival = 0, brokerInTime = 1386620151402, brokerOutTime = 1386620193752, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6b00b20e, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 196}, redeliveryCounter = 0} 2013-12-09 21:16:34,231 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 203, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:199, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151459, arrival = 0, brokerInTime = 1386620151460, brokerOutTime = 1386620193753, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7aa9ec03, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 197}, redeliveryCounter = 0} 2013-12-09 21:16:34,233 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 204, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:200, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151559, arrival = 0, brokerInTime = 1386620151560, brokerOutTime = 1386620193753, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@29c5f7df, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 198}, redeliveryCounter = 0} 2013-12-09 21:16:34,235 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 205, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:201, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151616, arrival = 0, brokerInTime = 1386620151618, brokerOutTime = 1386620193753, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@41466e6, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 199}, redeliveryCounter = 0} 2013-12-09 21:16:34,237 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 206, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:202, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151675, arrival = 0, brokerInTime = 1386620151676, brokerOutTime = 1386620193753, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@576f8821, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 200}, redeliveryCounter = 0} 2013-12-09 21:16:34,239 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 207, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:203, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151733, arrival = 0, brokerInTime = 1386620151734, brokerOutTime = 1386620193753, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5b525b5f, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 201}, redeliveryCounter = 0} 2013-12-09 21:16:34,242 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 208, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:204, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151800, arrival = 0, brokerInTime = 1386620151802, brokerOutTime = 1386620193753, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7bece8cf, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 202}, redeliveryCounter = 0} 2013-12-09 21:16:34,246 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 209, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:205, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151858, arrival = 0, brokerInTime = 1386620151860, brokerOutTime = 1386620193753, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7ea8ad98, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 203}, redeliveryCounter = 0} 2013-12-09 21:16:34,249 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 210, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:206, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151916, arrival = 0, brokerInTime = 1386620151918, brokerOutTime = 1386620193754, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@741d171e, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 204}, redeliveryCounter = 0} 2013-12-09 21:16:34,252 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 211, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:207, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151974, arrival = 0, brokerInTime = 1386620151976, brokerOutTime = 1386620193754, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@21d8ee20, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 205}, redeliveryCounter = 0} 2013-12-09 21:16:34,254 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 212, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:208, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152040, arrival = 0, brokerInTime = 1386620152042, brokerOutTime = 1386620193754, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@28f9883c, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 206}, redeliveryCounter = 0} 2013-12-09 21:16:34,257 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 213, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:209, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152107, arrival = 0, brokerInTime = 1386620152108, brokerOutTime = 1386620193754, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@165f3028, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 207}, redeliveryCounter = 0} 2013-12-09 21:16:34,259 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 214, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:210, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152214, arrival = 0, brokerInTime = 1386620152216, brokerOutTime = 1386620193754, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@43529d91, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 208}, redeliveryCounter = 0} 2013-12-09 21:16:34,261 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 215, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:211, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152272, arrival = 0, brokerInTime = 1386620152273, brokerOutTime = 1386620193754, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@64e6bd1e, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 209}, redeliveryCounter = 0} 2013-12-09 21:16:34,263 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 216, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:212, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152380, arrival = 0, brokerInTime = 1386620152381, brokerOutTime = 1386620193754, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@688a3052, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 210}, redeliveryCounter = 0} 2013-12-09 21:16:34,265 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 217, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:213, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152437, arrival = 0, brokerInTime = 1386620152439, brokerOutTime = 1386620193755, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@486a8d1c, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 211}, redeliveryCounter = 0} 2013-12-09 21:16:34,267 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 218, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:214, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152495, arrival = 0, brokerInTime = 1386620152497, brokerOutTime = 1386620193755, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4b564e68, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 212}, redeliveryCounter = 0} 2013-12-09 21:16:34,269 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 219, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:215, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152553, arrival = 0, brokerInTime = 1386620152555, brokerOutTime = 1386620193755, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@f35b47c, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 213}, redeliveryCounter = 0} 2013-12-09 21:16:34,271 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 220, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:216, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152612, arrival = 0, brokerInTime = 1386620152613, brokerOutTime = 1386620193755, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@edc40b1, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 214}, redeliveryCounter = 0} 2013-12-09 21:16:34,273 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 221, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:217, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152670, arrival = 0, brokerInTime = 1386620152671, brokerOutTime = 1386620193755, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1e1b2c16, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 215}, redeliveryCounter = 0} 2013-12-09 21:16:34,275 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 222, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:218, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152728, arrival = 0, brokerInTime = 1386620152729, brokerOutTime = 1386620193755, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@9eb67cb, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 216}, redeliveryCounter = 0} 2013-12-09 21:16:34,277 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 223, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:219, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152786, arrival = 0, brokerInTime = 1386620152787, brokerOutTime = 1386620193756, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3deb4583, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 217}, redeliveryCounter = 0} 2013-12-09 21:16:34,279 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 224, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:220, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152844, arrival = 0, brokerInTime = 1386620152845, brokerOutTime = 1386620193756, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2120bb37, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 218}, redeliveryCounter = 0} 2013-12-09 21:16:34,281 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 225, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:221, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152902, arrival = 0, brokerInTime = 1386620152904, brokerOutTime = 1386620193756, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6be328de, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 219}, redeliveryCounter = 0} 2013-12-09 21:16:34,283 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 226, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:222, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152960, arrival = 0, brokerInTime = 1386620152961, brokerOutTime = 1386620193756, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@e903e28, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 220}, redeliveryCounter = 0} 2013-12-09 21:16:34,286 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 227, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:223, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153018, arrival = 0, brokerInTime = 1386620153020, brokerOutTime = 1386620193756, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1fe0bb90, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 221}, redeliveryCounter = 0} 2013-12-09 21:16:34,288 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 228, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:224, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153075, arrival = 0, brokerInTime = 1386620153077, brokerOutTime = 1386620193756, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5b39fb49, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 222}, redeliveryCounter = 0} 2013-12-09 21:16:34,290 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 229, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:225, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153133, arrival = 0, brokerInTime = 1386620153135, brokerOutTime = 1386620193756, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3ba0a469, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 223}, redeliveryCounter = 0} 2013-12-09 21:16:34,292 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 230, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:226, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153191, arrival = 0, brokerInTime = 1386620153193, brokerOutTime = 1386620193756, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2f8a0814, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 224}, redeliveryCounter = 0} 2013-12-09 21:16:34,294 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 231, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:227, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153249, arrival = 0, brokerInTime = 1386620153251, brokerOutTime = 1386620193757, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@f18716e, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 225}, redeliveryCounter = 0} 2013-12-09 21:16:34,296 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 232, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:228, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153307, arrival = 0, brokerInTime = 1386620153309, brokerOutTime = 1386620193757, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@dbef480, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 226}, redeliveryCounter = 0} 2013-12-09 21:16:34,298 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 233, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:229, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153366, arrival = 0, brokerInTime = 1386620153367, brokerOutTime = 1386620193757, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@73a6068c, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 227}, redeliveryCounter = 0} 2013-12-09 21:16:34,302 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 234, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:230, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153424, arrival = 0, brokerInTime = 1386620153425, brokerOutTime = 1386620193757, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@18f80ca5, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 228}, redeliveryCounter = 0} 2013-12-09 21:16:34,305 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 235, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:231, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153481, arrival = 0, brokerInTime = 1386620153483, brokerOutTime = 1386620193757, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@45063171, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 229}, redeliveryCounter = 0} 2013-12-09 21:16:34,306 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 236, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:232, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153540, arrival = 0, brokerInTime = 1386620153541, brokerOutTime = 1386620193757, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1998151e, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 230}, redeliveryCounter = 0} 2013-12-09 21:16:34,308 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 237, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:233, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153598, arrival = 0, brokerInTime = 1386620153599, brokerOutTime = 1386620193757, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4f9271b2, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 231}, redeliveryCounter = 0} 2013-12-09 21:16:34,310 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 238, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:234, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153655, arrival = 0, brokerInTime = 1386620153657, brokerOutTime = 1386620193757, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@176685ee, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 232}, redeliveryCounter = 0} 2013-12-09 21:16:34,312 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 239, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:235, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153713, arrival = 0, brokerInTime = 1386620153714, brokerOutTime = 1386620193758, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4be2d842, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 233}, redeliveryCounter = 0} 2013-12-09 21:16:34,314 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 240, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:236, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153763, arrival = 0, brokerInTime = 1386620153764, brokerOutTime = 1386620193758, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@19e3fbfa, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 234}, redeliveryCounter = 0} 2013-12-09 21:16:34,317 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 241, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:237, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153821, arrival = 0, brokerInTime = 1386620153823, brokerOutTime = 1386620193758, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@46b3e75d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 235}, redeliveryCounter = 0} 2013-12-09 21:16:34,319 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 242, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:238, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153879, arrival = 0, brokerInTime = 1386620153880, brokerOutTime = 1386620193758, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4d1aaeee, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 236}, redeliveryCounter = 0} 2013-12-09 21:16:34,321 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 243, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:239, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153980, arrival = 0, brokerInTime = 1386620153981, brokerOutTime = 1386620193758, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@12d2b2ce, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 237}, redeliveryCounter = 0} 2013-12-09 21:16:34,323 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 244, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:240, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154087, arrival = 0, brokerInTime = 1386620154089, brokerOutTime = 1386620193758, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@46d8fc09, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 238}, redeliveryCounter = 0} 2013-12-09 21:16:34,325 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 245, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:241, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154154, arrival = 0, brokerInTime = 1386620154155, brokerOutTime = 1386620193758, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4f8ad735, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 239}, redeliveryCounter = 0} 2013-12-09 21:16:34,328 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 246, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:242, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154212, arrival = 0, brokerInTime = 1386620154213, brokerOutTime = 1386620193758, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2437015f, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 240}, redeliveryCounter = 0} 2013-12-09 21:16:34,330 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 247, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:243, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154269, arrival = 0, brokerInTime = 1386620154271, brokerOutTime = 1386620193758, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@173b168c, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 241}, redeliveryCounter = 0} 2013-12-09 21:16:34,332 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 248, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:244, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154327, arrival = 0, brokerInTime = 1386620154329, brokerOutTime = 1386620193759, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@28454d3e, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 242}, redeliveryCounter = 0} 2013-12-09 21:16:34,334 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 249, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:245, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154386, arrival = 0, brokerInTime = 1386620154387, brokerOutTime = 1386620193759, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5dd23619, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 243}, redeliveryCounter = 0} 2013-12-09 21:16:34,336 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 250, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:246, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154443, arrival = 0, brokerInTime = 1386620154445, brokerOutTime = 1386620193759, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@13ddd36e, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 244}, redeliveryCounter = 0} 2013-12-09 21:16:34,338 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 251, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:247, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154502, arrival = 0, brokerInTime = 1386620154503, brokerOutTime = 1386620193759, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4863e4f2, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 245}, redeliveryCounter = 0} 2013-12-09 21:16:34,340 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 252, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:248, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154559, arrival = 0, brokerInTime = 1386620154561, brokerOutTime = 1386620193759, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@164bf0ff, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 246}, redeliveryCounter = 0} 2013-12-09 21:16:34,343 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 253, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:249, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154618, arrival = 0, brokerInTime = 1386620154619, brokerOutTime = 1386620193759, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@53bb00c8, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 247}, redeliveryCounter = 0} 2013-12-09 21:16:34,345 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 254, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:250, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154675, arrival = 0, brokerInTime = 1386620154677, brokerOutTime = 1386620193759, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1a30756a, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 248}, redeliveryCounter = 0} 2013-12-09 21:16:34,347 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 255, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:251, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154734, arrival = 0, brokerInTime = 1386620154735, brokerOutTime = 1386620193759, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@636c8f94, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 249}, redeliveryCounter = 0} 2013-12-09 21:16:34,349 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 256, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:252, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154792, arrival = 0, brokerInTime = 1386620154793, brokerOutTime = 1386620193760, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6c46708a, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 250}, redeliveryCounter = 0} 2013-12-09 21:16:34,352 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 257, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:253, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154850, arrival = 0, brokerInTime = 1386620154851, brokerOutTime = 1386620193760, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@486ab8f, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 251}, redeliveryCounter = 0} 2013-12-09 21:16:34,355 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 258, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:254, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154907, arrival = 0, brokerInTime = 1386620154909, brokerOutTime = 1386620193760, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@25693b9b, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 252}, redeliveryCounter = 0} 2013-12-09 21:16:34,358 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 259, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:255, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154965, arrival = 0, brokerInTime = 1386620154967, brokerOutTime = 1386620193760, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1fc8504d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 253}, redeliveryCounter = 0} 2013-12-09 21:16:34,360 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 260, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:256, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155024, arrival = 0, brokerInTime = 1386620155025, brokerOutTime = 1386620193760, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@180fff88, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 254}, redeliveryCounter = 0} 2013-12-09 21:16:34,362 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 261, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:257, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155081, arrival = 0, brokerInTime = 1386620155083, brokerOutTime = 1386620193760, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4251460f, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 255}, redeliveryCounter = 0} 2013-12-09 21:16:34,364 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 262, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:258, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155140, arrival = 0, brokerInTime = 1386620155141, brokerOutTime = 1386620193760, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@65cea4cc, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 256}, redeliveryCounter = 0} 2013-12-09 21:16:34,366 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 263, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:259, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155197, arrival = 0, brokerInTime = 1386620155198, brokerOutTime = 1386620193760, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@61a5814b, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 257}, redeliveryCounter = 0} 2013-12-09 21:16:34,368 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 264, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:260, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155255, arrival = 0, brokerInTime = 1386620155256, brokerOutTime = 1386620193761, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@38cb9502, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 258}, redeliveryCounter = 0} 2013-12-09 21:16:34,370 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 265, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:261, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155313, arrival = 0, brokerInTime = 1386620155314, brokerOutTime = 1386620193761, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3da3d36f, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 259}, redeliveryCounter = 0} 2013-12-09 21:16:34,372 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 266, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:262, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155371, arrival = 0, brokerInTime = 1386620155372, brokerOutTime = 1386620193761, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4e8e3c06, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 260}, redeliveryCounter = 0} 2013-12-09 21:16:34,374 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 267, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:263, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155429, arrival = 0, brokerInTime = 1386620155430, brokerOutTime = 1386620193761, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5c06d634, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 261}, redeliveryCounter = 0} 2013-12-09 21:16:34,376 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 268, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:264, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155487, arrival = 0, brokerInTime = 1386620155489, brokerOutTime = 1386620193761, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@44d91f1f, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 262}, redeliveryCounter = 0} 2013-12-09 21:16:34,378 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 269, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:265, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155545, arrival = 0, brokerInTime = 1386620155546, brokerOutTime = 1386620193761, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@a8a4f89, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 263}, redeliveryCounter = 0} 2013-12-09 21:16:34,380 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 270, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:266, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155595, arrival = 0, brokerInTime = 1386620155596, brokerOutTime = 1386620193761, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7e6bb0c6, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 264}, redeliveryCounter = 0} 2013-12-09 21:16:34,383 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 271, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:267, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155653, arrival = 0, brokerInTime = 1386620155654, brokerOutTime = 1386620193761, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5022d801, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 265}, redeliveryCounter = 0} 2013-12-09 21:16:34,386 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 272, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:268, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155703, arrival = 0, brokerInTime = 1386620155705, brokerOutTime = 1386620193762, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1f9352c1, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 266}, redeliveryCounter = 0} 2013-12-09 21:16:34,389 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 273, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:269, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155761, arrival = 0, brokerInTime = 1386620155762, brokerOutTime = 1386620193762, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@11e0d19, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 267}, redeliveryCounter = 0} 2013-12-09 21:16:34,392 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 274, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:270, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155819, arrival = 0, brokerInTime = 1386620155820, brokerOutTime = 1386620193762, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5bede4e1, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 268}, redeliveryCounter = 0} 2013-12-09 21:16:34,394 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 275, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:271, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155877, arrival = 0, brokerInTime = 1386620155878, brokerOutTime = 1386620193762, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5f4d9eed, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 269}, redeliveryCounter = 0} 2013-12-09 21:16:34,396 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 276, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:272, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155935, arrival = 0, brokerInTime = 1386620155936, brokerOutTime = 1386620193762, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@60fd0a7c, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 270}, redeliveryCounter = 0} 2013-12-09 21:16:34,399 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 277, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:273, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156001, arrival = 0, brokerInTime = 1386620156003, brokerOutTime = 1386620193762, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4bb84a3, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 271}, redeliveryCounter = 0} 2013-12-09 21:16:34,401 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 278, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:274, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156069, arrival = 0, brokerInTime = 1386620156070, brokerOutTime = 1386620193762, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3300ebc2, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 272}, redeliveryCounter = 0} 2013-12-09 21:16:34,403 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 279, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:275, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156127, arrival = 0, brokerInTime = 1386620156128, brokerOutTime = 1386620193762, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@17627b7, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 273}, redeliveryCounter = 0} 2013-12-09 21:16:34,405 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 280, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:276, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156185, arrival = 0, brokerInTime = 1386620156186, brokerOutTime = 1386620193762, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@74296020, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 274}, redeliveryCounter = 0} 2013-12-09 21:16:34,407 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 281, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:277, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156243, arrival = 0, brokerInTime = 1386620156244, brokerOutTime = 1386620193762, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@48661074, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 275}, redeliveryCounter = 0} 2013-12-09 21:16:34,409 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 282, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:278, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156301, arrival = 0, brokerInTime = 1386620156303, brokerOutTime = 1386620193763, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@24c254ce, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 276}, redeliveryCounter = 0} 2013-12-09 21:16:34,411 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 283, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:279, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156358, arrival = 0, brokerInTime = 1386620156360, brokerOutTime = 1386620193763, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@524db33c, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 277}, redeliveryCounter = 0} 2013-12-09 21:16:34,413 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 284, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:280, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156408, arrival = 0, brokerInTime = 1386620156409, brokerOutTime = 1386620193763, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6b32525a, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 278}, redeliveryCounter = 0} 2013-12-09 21:16:34,415 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 285, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:281, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156458, arrival = 0, brokerInTime = 1386620156459, brokerOutTime = 1386620193763, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@34bcc9b1, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 279}, redeliveryCounter = 0} 2013-12-09 21:16:34,418 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 286, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:282, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156557, arrival = 0, brokerInTime = 1386620156559, brokerOutTime = 1386620193763, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@565d9e83, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 280}, redeliveryCounter = 0} 2013-12-09 21:16:34,421 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 287, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:283, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156615, arrival = 0, brokerInTime = 1386620156616, brokerOutTime = 1386620193763, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1c51d6c1, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 281}, redeliveryCounter = 0} 2013-12-09 21:16:34,423 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 288, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:284, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156673, arrival = 0, brokerInTime = 1386620156675, brokerOutTime = 1386620193763, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@40ea276d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 282}, redeliveryCounter = 0} 2013-12-09 21:16:34,427 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 289, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:285, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156723, arrival = 0, brokerInTime = 1386620156725, brokerOutTime = 1386620193763, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4cc28666, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 283}, redeliveryCounter = 0} 2013-12-09 21:16:34,430 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 290, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:286, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156781, arrival = 0, brokerInTime = 1386620156782, brokerOutTime = 1386620193763, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7705b9e8, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 284}, redeliveryCounter = 0} 2013-12-09 21:16:34,432 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 291, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:287, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156839, arrival = 0, brokerInTime = 1386620156840, brokerOutTime = 1386620193764, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@18f06b64, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 285}, redeliveryCounter = 0} 2013-12-09 21:16:34,434 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 292, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:288, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156897, arrival = 0, brokerInTime = 1386620156899, brokerOutTime = 1386620193764, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@501a7f06, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 286}, redeliveryCounter = 0} 2013-12-09 21:16:34,436 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 293, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:289, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156955, arrival = 0, brokerInTime = 1386620156958, brokerOutTime = 1386620193764, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7b898bff, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 287}, redeliveryCounter = 0} 2013-12-09 21:16:34,438 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 294, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:290, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157013, arrival = 0, brokerInTime = 1386620157014, brokerOutTime = 1386620193764, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@34651b6, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 288}, redeliveryCounter = 0} 2013-12-09 21:16:34,440 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 295, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:291, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157071, arrival = 0, brokerInTime = 1386620157072, brokerOutTime = 1386620193764, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7d9e8567, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 289}, redeliveryCounter = 0} 2013-12-09 21:16:34,442 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 296, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:292, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157129, arrival = 0, brokerInTime = 1386620157130, brokerOutTime = 1386620193764, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@32486d9f, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 290}, redeliveryCounter = 0} 2013-12-09 21:16:34,445 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 297, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:293, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157187, arrival = 0, brokerInTime = 1386620157189, brokerOutTime = 1386620193764, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3114fb83, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 291}, redeliveryCounter = 0} 2013-12-09 21:16:34,446 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 298, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:294, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157245, arrival = 0, brokerInTime = 1386620157246, brokerOutTime = 1386620193764, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@588c6ea1, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 292}, redeliveryCounter = 0} 2013-12-09 21:16:34,448 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 299, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:295, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157303, arrival = 0, brokerInTime = 1386620157304, brokerOutTime = 1386620193764, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6bb33971, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 293}, redeliveryCounter = 0} 2013-12-09 21:16:34,450 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 300, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:296, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157361, arrival = 0, brokerInTime = 1386620157363, brokerOutTime = 1386620193765, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@438060f4, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 294}, redeliveryCounter = 0} 2013-12-09 21:16:34,456 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 301, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:297, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157420, arrival = 0, brokerInTime = 1386620157421, brokerOutTime = 1386620193765, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@215d55cb, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 295}, redeliveryCounter = 0} 2013-12-09 21:16:34,458 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 302, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:298, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157477, arrival = 0, brokerInTime = 1386620157478, brokerOutTime = 1386620193765, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@76ab9389, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 296}, redeliveryCounter = 0} 2013-12-09 21:16:34,460 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 303, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:299, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157535, arrival = 0, brokerInTime = 1386620157537, brokerOutTime = 1386620193765, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7a63443c, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 297}, redeliveryCounter = 0} 2013-12-09 21:16:34,463 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 304, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:300, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157593, arrival = 0, brokerInTime = 1386620157594, brokerOutTime = 1386620193765, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@b14fdea, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 298}, redeliveryCounter = 0} 2013-12-09 21:16:34,465 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 305, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:301, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157651, arrival = 0, brokerInTime = 1386620157652, brokerOutTime = 1386620193765, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@f2a1355, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 299}, redeliveryCounter = 0} 2013-12-09 21:16:34,469 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 306, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:302, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157717, arrival = 0, brokerInTime = 1386620157718, brokerOutTime = 1386620193765, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@135b393a, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 300}, redeliveryCounter = 0} 2013-12-09 21:16:34,472 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 307, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:303, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157784, arrival = 0, brokerInTime = 1386620157786, brokerOutTime = 1386620193765, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4a0a18c3, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 301}, redeliveryCounter = 0} 2013-12-09 21:16:34,474 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 308, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:304, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157850, arrival = 0, brokerInTime = 1386620157851, brokerOutTime = 1386620193766, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5cdfd02e, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 302}, redeliveryCounter = 0} 2013-12-09 21:16:34,476 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 309, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:305, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157916, arrival = 0, brokerInTime = 1386620157918, brokerOutTime = 1386620193766, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@69dcaba4, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 303}, redeliveryCounter = 0} 2013-12-09 21:16:34,478 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 310, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:306, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157982, arrival = 0, brokerInTime = 1386620157984, brokerOutTime = 1386620193766, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1688d248, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 304}, redeliveryCounter = 0} 2013-12-09 21:16:34,481 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 311, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:307, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158040, arrival = 0, brokerInTime = 1386620158042, brokerOutTime = 1386620193766, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@70a58086, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 305}, redeliveryCounter = 0} 2013-12-09 21:16:34,483 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 312, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:308, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158098, arrival = 0, brokerInTime = 1386620158099, brokerOutTime = 1386620193766, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1991731, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 306}, redeliveryCounter = 0} 2013-12-09 21:16:34,485 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 313, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:309, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158166, arrival = 0, brokerInTime = 1386620158167, brokerOutTime = 1386620193766, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@69c192c8, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 307}, redeliveryCounter = 0} 2013-12-09 21:16:34,487 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 314, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:310, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158224, arrival = 0, brokerInTime = 1386620158226, brokerOutTime = 1386620193766, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@238bbeb6, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 308}, redeliveryCounter = 0} 2013-12-09 21:16:34,489 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 315, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:311, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158282, arrival = 0, brokerInTime = 1386620158283, brokerOutTime = 1386620193766, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2b95b0f5, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 309}, redeliveryCounter = 0} 2013-12-09 21:16:34,491 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 316, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:312, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158340, arrival = 0, brokerInTime = 1386620158341, brokerOutTime = 1386620193766, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7094bb2d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 310}, redeliveryCounter = 0} 2013-12-09 21:16:34,493 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 317, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:313, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158398, arrival = 0, brokerInTime = 1386620158399, brokerOutTime = 1386620193766, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@348cc119, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 311}, redeliveryCounter = 0} 2013-12-09 21:16:34,495 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 318, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:314, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158456, arrival = 0, brokerInTime = 1386620158457, brokerOutTime = 1386620193767, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4d96b43, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 312}, redeliveryCounter = 0} 2013-12-09 21:16:34,497 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 319, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:315, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158514, arrival = 0, brokerInTime = 1386620158515, brokerOutTime = 1386620193767, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5e10fe31, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 313}, redeliveryCounter = 0} 2013-12-09 21:16:34,500 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 320, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:316, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158613, arrival = 0, brokerInTime = 1386620158615, brokerOutTime = 1386620193767, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2da07336, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 314}, redeliveryCounter = 0} 2013-12-09 21:16:34,502 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 321, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:317, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158696, arrival = 0, brokerInTime = 1386620158697, brokerOutTime = 1386620193767, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@ebf5a1, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 315}, redeliveryCounter = 0} 2013-12-09 21:16:34,505 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 322, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:318, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158779, arrival = 0, brokerInTime = 1386620158780, brokerOutTime = 1386620193767, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@34b1d80, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 316}, redeliveryCounter = 0} 2013-12-09 21:16:34,507 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 323, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:319, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158837, arrival = 0, brokerInTime = 1386620158838, brokerOutTime = 1386620193767, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@387dc030, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 317}, redeliveryCounter = 0} 2013-12-09 21:16:34,509 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 324, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:320, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158895, arrival = 0, brokerInTime = 1386620158896, brokerOutTime = 1386620193767, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@47d4ac49, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 318}, redeliveryCounter = 0} 2013-12-09 21:16:34,511 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 325, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:321, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158953, arrival = 0, brokerInTime = 1386620158954, brokerOutTime = 1386620193767, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5b7b1176, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 319}, redeliveryCounter = 0} 2013-12-09 21:16:34,514 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 326, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:322, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159011, arrival = 0, brokerInTime = 1386620159012, brokerOutTime = 1386620193767, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6cb788e5, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 320}, redeliveryCounter = 0} 2013-12-09 21:16:34,516 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 327, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:323, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159069, arrival = 0, brokerInTime = 1386620159070, brokerOutTime = 1386620193767, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@57caa26, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 321}, redeliveryCounter = 0} 2013-12-09 21:16:34,518 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 328, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:324, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159127, arrival = 0, brokerInTime = 1386620159128, brokerOutTime = 1386620193768, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3b86a79a, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 322}, redeliveryCounter = 0} 2013-12-09 21:16:34,520 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 329, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:325, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159185, arrival = 0, brokerInTime = 1386620159187, brokerOutTime = 1386620193768, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5658dfe, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 323}, redeliveryCounter = 0} 2013-12-09 21:16:34,523 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 330, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:326, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159243, arrival = 0, brokerInTime = 1386620159244, brokerOutTime = 1386620193768, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4e4d2176, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 324}, redeliveryCounter = 0} 2013-12-09 21:16:34,525 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 331, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:327, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159301, arrival = 0, brokerInTime = 1386620159302, brokerOutTime = 1386620193768, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@29cff223, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 325}, redeliveryCounter = 0} 2013-12-09 21:16:34,527 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 332, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:328, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159359, arrival = 0, brokerInTime = 1386620159360, brokerOutTime = 1386620193768, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1321ed47, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 326}, redeliveryCounter = 0} 2013-12-09 21:16:34,529 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 333, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:329, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159417, arrival = 0, brokerInTime = 1386620159418, brokerOutTime = 1386620193768, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1860da21, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 327}, redeliveryCounter = 0} 2013-12-09 21:16:34,531 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 334, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:330, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159483, arrival = 0, brokerInTime = 1386620159484, brokerOutTime = 1386620193768, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7e90b907, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 328}, redeliveryCounter = 0} 2013-12-09 21:16:34,533 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 335, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:331, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159549, arrival = 0, brokerInTime = 1386620159551, brokerOutTime = 1386620193768, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4f63bb7b, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 329}, redeliveryCounter = 0} 2013-12-09 21:16:34,535 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 336, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:332, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159607, arrival = 0, brokerInTime = 1386620159608, brokerOutTime = 1386620193768, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1ca9b0f5, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 330}, redeliveryCounter = 0} 2013-12-09 21:16:34,537 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 337, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:333, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159673, arrival = 0, brokerInTime = 1386620159674, brokerOutTime = 1386620193768, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@48a0b386, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 331}, redeliveryCounter = 0} 2013-12-09 21:16:34,539 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 338, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:334, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159739, arrival = 0, brokerInTime = 1386620159741, brokerOutTime = 1386620193769, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2e6a47aa, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 332}, redeliveryCounter = 0} 2013-12-09 21:16:34,541 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 339, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:335, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159798, arrival = 0, brokerInTime = 1386620159800, brokerOutTime = 1386620193769, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@438701b4, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 333}, redeliveryCounter = 0} 2013-12-09 21:16:34,542 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 340, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:336, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159856, arrival = 0, brokerInTime = 1386620159857, brokerOutTime = 1386620193769, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5480f30e, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 334}, redeliveryCounter = 0} 2013-12-09 21:16:34,545 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 341, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:337, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159920, arrival = 0, brokerInTime = 1386620159922, brokerOutTime = 1386620193769, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5dd54779, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 335}, redeliveryCounter = 0} 2013-12-09 21:16:34,547 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 342, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:338, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620160137, arrival = 0, brokerInTime = 1386620160139, brokerOutTime = 1386620193769, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5d47890f, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 336}, redeliveryCounter = 0} 2013-12-09 21:16:34,549 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 343, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:339, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620160261, arrival = 0, brokerInTime = 1386620160262, brokerOutTime = 1386620193769, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@37767a1, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 337}, redeliveryCounter = 0} 2013-12-09 21:16:34,551 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 344, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:340, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620160435, arrival = 0, brokerInTime = 1386620160436, brokerOutTime = 1386620193769, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@14347cce, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 338}, redeliveryCounter = 0} 2013-12-09 21:16:34,554 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 345, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:341, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620160568, arrival = 0, brokerInTime = 1386620160570, brokerOutTime = 1386620193769, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1edc2bf, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 339}, redeliveryCounter = 0} 2013-12-09 21:16:34,556 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 346, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:342, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620160674, arrival = 0, brokerInTime = 1386620160675, brokerOutTime = 1386620193769, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@208c8a96, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 340}, redeliveryCounter = 0} 2013-12-09 21:16:34,558 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 347, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:343, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620160726, arrival = 0, brokerInTime = 1386620160727, brokerOutTime = 1386620193769, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6ade8e8b, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 341}, redeliveryCounter = 0} 2013-12-09 21:16:34,560 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 348, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:344, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620160784, arrival = 0, brokerInTime = 1386620160786, brokerOutTime = 1386620193770, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@39607e7d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 342}, redeliveryCounter = 0} 2013-12-09 21:16:34,562 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 349, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:345, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620160842, arrival = 0, brokerInTime = 1386620160843, brokerOutTime = 1386620193770, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6e105df8, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 343}, redeliveryCounter = 0} 2013-12-09 21:16:34,564 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 350, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:346, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620160900, arrival = 0, brokerInTime = 1386620160902, brokerOutTime = 1386620193770, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@74897d3b, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 344}, redeliveryCounter = 0} 2013-12-09 21:16:34,566 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 351, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:347, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620160958, arrival = 0, brokerInTime = 1386620160959, brokerOutTime = 1386620193770, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6e7ce842, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 345}, redeliveryCounter = 0} 2013-12-09 21:16:34,568 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 352, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:348, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620161016, arrival = 0, brokerInTime = 1386620161017, brokerOutTime = 1386620193770, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4a747db9, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 346}, redeliveryCounter = 0} 2013-12-09 21:16:34,570 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 353, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:349, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620161074, arrival = 0, brokerInTime = 1386620161075, brokerOutTime = 1386620193770, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@25ea22df, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 347}, redeliveryCounter = 0} 2013-12-09 21:16:34,572 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 354, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:350, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620161140, arrival = 0, brokerInTime = 1386620161141, brokerOutTime = 1386620193770, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2e9771eb, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 348}, redeliveryCounter = 0} 2013-12-09 21:16:34,574 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 355, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:351, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620161198, arrival = 0, brokerInTime = 1386620161199, brokerOutTime = 1386620193770, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@58b81332, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 349}, redeliveryCounter = 0} 2013-12-09 21:16:34,576 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 356, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:352, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620161256, arrival = 0, brokerInTime = 1386620161258, brokerOutTime = 1386620193770, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1cf4651f, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 350}, redeliveryCounter = 0} 2013-12-09 21:16:34,578 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 357, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:353, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620161314, arrival = 0, brokerInTime = 1386620161315, brokerOutTime = 1386620193770, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@711ae512, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 351}, redeliveryCounter = 0} 2013-12-09 21:16:34,580 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 358, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:354, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620161372, arrival = 0, brokerInTime = 1386620161373, brokerOutTime = 1386620193771, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1cb53ac1, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 352}, redeliveryCounter = 0} 2013-12-09 21:16:34,583 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 359, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:355, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620161438, arrival = 0, brokerInTime = 1386620161439, brokerOutTime = 1386620193771, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3e2463a0, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 353}, redeliveryCounter = 0} 2013-12-09 21:16:34,585 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 360, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:356, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620161505, arrival = 0, brokerInTime = 1386620161506, brokerOutTime = 1386620193771, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4708bd3f, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 354}, redeliveryCounter = 0} 2013-12-09 21:16:34,588 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 361, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:357, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620161621, arrival = 0, brokerInTime = 1386620161622, brokerOutTime = 1386620193771, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@ec09788, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 355}, redeliveryCounter = 0} 2013-12-09 21:16:34,590 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 362, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:358, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620161687, arrival = 0, brokerInTime = 1386620161688, brokerOutTime = 1386620193771, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@61c6949, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 356}, redeliveryCounter = 0} 2013-12-09 21:16:34,592 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 363, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:359, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620161753, arrival = 0, brokerInTime = 1386620161754, brokerOutTime = 1386620193771, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@33443ac1, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 357}, redeliveryCounter = 0} 2013-12-09 21:16:34,594 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 364, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:360, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620161811, arrival = 0, brokerInTime = 1386620161812, brokerOutTime = 1386620193771, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@446d6f32, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 358}, redeliveryCounter = 0} 2013-12-09 21:16:34,596 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 366, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:362, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620178373, arrival = 0, brokerInTime = 1386620178374, brokerOutTime = 1386620193771, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6c9f5eb6, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 360}, redeliveryCounter = 0} 2013-12-09 21:16:34,598 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 367, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:363, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620178430, arrival = 0, brokerInTime = 1386620178431, brokerOutTime = 1386620193771, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@53033670, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 361}, redeliveryCounter = 0} 2013-12-09 21:16:34,600 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 368, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:364, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620178487, arrival = 0, brokerInTime = 1386620178488, brokerOutTime = 1386620193772, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@77eb1da3, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 362}, redeliveryCounter = 0} 2013-12-09 21:16:34,602 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 369, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:365, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620178545, arrival = 0, brokerInTime = 1386620178546, brokerOutTime = 1386620193772, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6ce6f5d6, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 363}, redeliveryCounter = 0} 2013-12-09 21:16:34,604 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 370, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:366, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620178603, arrival = 0, brokerInTime = 1386620178605, brokerOutTime = 1386620193772, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2f15ec75, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 364}, redeliveryCounter = 0} 2013-12-09 21:16:34,607 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 371, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:367, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620178662, arrival = 0, brokerInTime = 1386620178663, brokerOutTime = 1386620193772, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@48570d79, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 365}, redeliveryCounter = 0} 2013-12-09 21:16:34,608 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 372, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:368, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620178729, arrival = 0, brokerInTime = 1386620178730, brokerOutTime = 1386620193772, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4b35a809, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 366}, redeliveryCounter = 0} 2013-12-09 21:16:34,610 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 373, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:369, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620178787, arrival = 0, brokerInTime = 1386620178789, brokerOutTime = 1386620193772, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2fab0d72, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 367}, redeliveryCounter = 0} 2013-12-09 21:16:34,612 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 374, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:370, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620178845, arrival = 0, brokerInTime = 1386620178847, brokerOutTime = 1386620193772, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6ffcfd1, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 368}, redeliveryCounter = 0} 2013-12-09 21:16:34,614 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 375, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:371, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620178903, arrival = 0, brokerInTime = 1386620178904, brokerOutTime = 1386620193772, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4a4a5ee, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 369}, redeliveryCounter = 0} 2013-12-09 21:16:34,616 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 376, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:372, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620178961, arrival = 0, brokerInTime = 1386620178962, brokerOutTime = 1386620193772, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5589aea3, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 370}, redeliveryCounter = 0} 2013-12-09 21:16:34,618 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 377, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:373, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620179019, arrival = 0, brokerInTime = 1386620179021, brokerOutTime = 1386620193772, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@42287b34, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 371}, redeliveryCounter = 0} 2013-12-09 21:16:34,622 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 378, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:374, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620179077, arrival = 0, brokerInTime = 1386620179078, brokerOutTime = 1386620193773, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6fb0b4da, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 372}, redeliveryCounter = 0} 2013-12-09 21:16:34,625 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 379, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:375, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620179135, arrival = 0, brokerInTime = 1386620179136, brokerOutTime = 1386620193773, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3a318d7f, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 373}, redeliveryCounter = 0} 2013-12-09 21:16:34,628 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 380, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:376, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620179193, arrival = 0, brokerInTime = 1386620179194, brokerOutTime = 1386620193773, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@b40aab2, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 374}, redeliveryCounter = 0} 2013-12-09 21:16:34,630 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 381, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:377, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620179251, arrival = 0, brokerInTime = 1386620179252, brokerOutTime = 1386620193773, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@428691e3, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 375}, redeliveryCounter = 0} 2013-12-09 21:16:34,633 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 382, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:378, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620179309, arrival = 0, brokerInTime = 1386620179311, brokerOutTime = 1386620193773, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@10d3f034, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 376}, redeliveryCounter = 0} 2013-12-09 21:16:34,635 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 383, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:379, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620179375, arrival = 0, brokerInTime = 1386620179376, brokerOutTime = 1386620193773, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4a3eee8d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 377}, redeliveryCounter = 0} 2013-12-09 21:16:34,636 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 384, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:380, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620179441, arrival = 0, brokerInTime = 1386620179443, brokerOutTime = 1386620193773, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@699f910f, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 378}, redeliveryCounter = 0} 2013-12-09 21:16:34,638 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 385, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:381, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620179507, arrival = 0, brokerInTime = 1386620179509, brokerOutTime = 1386620193773, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6aeca5f5, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 379}, redeliveryCounter = 0} 2013-12-09 21:16:34,640 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 386, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:382, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620179574, arrival = 0, brokerInTime = 1386620179575, brokerOutTime = 1386620193773, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5683aeaa, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 380}, redeliveryCounter = 0} 2013-12-09 21:16:34,642 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 387, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:383, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620179640, arrival = 0, brokerInTime = 1386620179641, brokerOutTime = 1386620193773, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5f404745, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 381}, redeliveryCounter = 0} 2013-12-09 21:16:34,644 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 388, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:384, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620179699, arrival = 0, brokerInTime = 1386620179701, brokerOutTime = 1386620193774, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@750733dd, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 382}, redeliveryCounter = 0} 2013-12-09 21:16:34,646 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 389, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:385, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620179756, arrival = 0, brokerInTime = 1386620179758, brokerOutTime = 1386620193774, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2bde2e31, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 383}, redeliveryCounter = 0} 2013-12-09 21:16:34,649 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 390, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:386, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620179814, arrival = 0, brokerInTime = 1386620179815, brokerOutTime = 1386620193774, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7aaa977, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 384}, redeliveryCounter = 0} 2013-12-09 21:16:34,651 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 391, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:387, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620179872, arrival = 0, brokerInTime = 1386620179874, brokerOutTime = 1386620193774, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@555bc78f, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 385}, redeliveryCounter = 0} 2013-12-09 21:16:34,653 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 392, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:388, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620179930, arrival = 0, brokerInTime = 1386620179932, brokerOutTime = 1386620193774, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7c8aa910, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 386}, redeliveryCounter = 0} 2013-12-09 21:16:34,655 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 393, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:389, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620179988, arrival = 0, brokerInTime = 1386620179990, brokerOutTime = 1386620193774, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@73619950, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 387}, redeliveryCounter = 0} 2013-12-09 21:16:34,657 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 394, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:390, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620180046, arrival = 0, brokerInTime = 1386620180048, brokerOutTime = 1386620193774, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@c988e5e, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 388}, redeliveryCounter = 0} 2013-12-09 21:16:34,659 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 395, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:391, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620180104, arrival = 0, brokerInTime = 1386620180105, brokerOutTime = 1386620193774, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@73aac3c7, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 389}, redeliveryCounter = 0} 2013-12-09 21:16:34,661 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 396, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:392, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620180162, arrival = 0, brokerInTime = 1386620180163, brokerOutTime = 1386620193775, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@501b7924, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 390}, redeliveryCounter = 0} 2013-12-09 21:16:34,663 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 397, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:393, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620180220, arrival = 0, brokerInTime = 1386620180221, brokerOutTime = 1386620193775, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3bae5392, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 391}, redeliveryCounter = 0} 2013-12-09 21:16:34,665 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 398, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:394, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620180278, arrival = 0, brokerInTime = 1386620180279, brokerOutTime = 1386620193775, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@31f0b4da, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 392}, redeliveryCounter = 0} 2013-12-09 21:16:34,668 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 399, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:395, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620180336, arrival = 0, brokerInTime = 1386620180337, brokerOutTime = 1386620193775, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@31f16dd3, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 393}, redeliveryCounter = 0} 2013-12-09 21:16:34,671 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 400, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:396, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620180394, arrival = 0, brokerInTime = 1386620180395, brokerOutTime = 1386620193775, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@61615142, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 394}, redeliveryCounter = 0} 2013-12-09 21:16:34,673 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 401, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:397, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620180453, arrival = 0, brokerInTime = 1386620180454, brokerOutTime = 1386620193775, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3c1df600, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 395}, redeliveryCounter = 0} 2013-12-09 21:16:34,675 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 402, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:398, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620180510, arrival = 0, brokerInTime = 1386620180512, brokerOutTime = 1386620193775, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@530198d5, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 396}, redeliveryCounter = 0} 2013-12-09 21:16:34,677 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 403, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:399, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620180568, arrival = 0, brokerInTime = 1386620180569, brokerOutTime = 1386620193775, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@dd8f286, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 397}, redeliveryCounter = 0} 2013-12-09 21:16:34,679 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 404, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:400, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620180626, arrival = 0, brokerInTime = 1386620180627, brokerOutTime = 1386620193776, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1e1a4284, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 398}, redeliveryCounter = 0} 2013-12-09 21:16:34,681 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 405, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:401, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620180684, arrival = 0, brokerInTime = 1386620180685, brokerOutTime = 1386620193776, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4e04f78c, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 399}, redeliveryCounter = 0} 2013-12-09 21:16:34,684 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 406, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:402, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620180742, arrival = 0, brokerInTime = 1386620180743, brokerOutTime = 1386620193776, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@28183058, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 400}, redeliveryCounter = 0} 2013-12-09 21:16:34,686 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 407, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:403, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620180810, arrival = 0, brokerInTime = 1386620180812, brokerOutTime = 1386620193776, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4c0df5f8, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 401}, redeliveryCounter = 0} 2013-12-09 21:16:34,688 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 408, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:404, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620180868, arrival = 0, brokerInTime = 1386620180870, brokerOutTime = 1386620193776, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@288f93ca, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 402}, redeliveryCounter = 0} 2013-12-09 21:16:34,690 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 409, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:405, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620180926, arrival = 0, brokerInTime = 1386620180927, brokerOutTime = 1386620193776, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6a2fc793, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 403}, redeliveryCounter = 0} 2013-12-09 21:16:34,693 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 410, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:406, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620180984, arrival = 0, brokerInTime = 1386620180986, brokerOutTime = 1386620193776, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@66d7ba5b, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 404}, redeliveryCounter = 0} 2013-12-09 21:16:34,695 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 411, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:407, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620181041, arrival = 0, brokerInTime = 1386620181043, brokerOutTime = 1386620193776, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5d0be11c, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 405}, redeliveryCounter = 0} 2013-12-09 21:16:34,698 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 412, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:408, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620181108, arrival = 0, brokerInTime = 1386620181109, brokerOutTime = 1386620193776, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@36e824fd, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 406}, redeliveryCounter = 0} 2013-12-09 21:16:34,700 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 413, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:409, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620181174, arrival = 0, brokerInTime = 1386620181175, brokerOutTime = 1386620193776, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@42d47a34, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 407}, redeliveryCounter = 0} 2013-12-09 21:16:34,703 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 414, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:410, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620181240, arrival = 0, brokerInTime = 1386620181242, brokerOutTime = 1386620193777, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@ba30e33, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 408}, redeliveryCounter = 0} 2013-12-09 21:16:34,705 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 415, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:411, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620181298, arrival = 0, brokerInTime = 1386620181300, brokerOutTime = 1386620193777, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7df93c3c, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 409}, redeliveryCounter = 0} 2013-12-09 21:16:34,707 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 416, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:412, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620181364, arrival = 0, brokerInTime = 1386620181366, brokerOutTime = 1386620193777, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@75e1c7c0, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 410}, redeliveryCounter = 0} 2013-12-09 21:16:34,709 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 417, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:413, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620181431, arrival = 0, brokerInTime = 1386620181433, brokerOutTime = 1386620193777, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3a014ab6, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 411}, redeliveryCounter = 0} 2013-12-09 21:16:34,712 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 418, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:414, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620181489, arrival = 0, brokerInTime = 1386620181490, brokerOutTime = 1386620193777, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2ad0107a, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 412}, redeliveryCounter = 0} 2013-12-09 21:16:34,714 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 419, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:415, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620181588, arrival = 0, brokerInTime = 1386620181589, brokerOutTime = 1386620193777, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@41e9cf8b, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 413}, redeliveryCounter = 0} 2013-12-09 21:16:34,716 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 420, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:416, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620181646, arrival = 0, brokerInTime = 1386620181648, brokerOutTime = 1386620193778, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5d38d07b, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 414}, redeliveryCounter = 0} 2013-12-09 21:16:34,718 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 421, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:417, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620181704, arrival = 0, brokerInTime = 1386620181705, brokerOutTime = 1386620193778, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3cff6b0d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 415}, redeliveryCounter = 0} 2013-12-09 21:16:34,720 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 422, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:418, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620181762, arrival = 0, brokerInTime = 1386620181763, brokerOutTime = 1386620193778, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@24cd41c4, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 416}, redeliveryCounter = 0} 2013-12-09 21:16:34,723 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 423, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:419, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620181820, arrival = 0, brokerInTime = 1386620181821, brokerOutTime = 1386620193778, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1f98bdbc, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 417}, redeliveryCounter = 0} 2013-12-09 21:16:34,725 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 424, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:420, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620181879, arrival = 0, brokerInTime = 1386620181880, brokerOutTime = 1386620193778, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@64d091d8, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 418}, redeliveryCounter = 0} 2013-12-09 21:16:34,727 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 425, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:421, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620181937, arrival = 0, brokerInTime = 1386620181939, brokerOutTime = 1386620193778, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@39172f9d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 419}, redeliveryCounter = 0} 2013-12-09 21:16:34,729 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 426, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:422, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620181995, arrival = 0, brokerInTime = 1386620181996, brokerOutTime = 1386620193778, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@213709b3, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 420}, redeliveryCounter = 0} 2013-12-09 21:16:34,732 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 427, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:423, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620182052, arrival = 0, brokerInTime = 1386620182054, brokerOutTime = 1386620193779, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@245dd7ce, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 421}, redeliveryCounter = 0} 2013-12-09 21:16:34,734 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 428, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:424, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620182110, arrival = 0, brokerInTime = 1386620182111, brokerOutTime = 1386620193779, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@d032809, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 422}, redeliveryCounter = 0} 2013-12-09 21:16:34,736 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 429, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:425, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620182168, arrival = 0, brokerInTime = 1386620182169, brokerOutTime = 1386620193779, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4a396d8b, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 423}, redeliveryCounter = 0} 2013-12-09 21:16:34,738 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 430, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:426, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620182226, arrival = 0, brokerInTime = 1386620182228, brokerOutTime = 1386620193779, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@46e6bf, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 424}, redeliveryCounter = 0} 2013-12-09 21:16:34,740 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 431, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:427, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620182284, arrival = 0, brokerInTime = 1386620182285, brokerOutTime = 1386620193779, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2ed705bd, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 425}, redeliveryCounter = 0} 2013-12-09 21:16:34,742 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 432, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:428, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620182342, arrival = 0, brokerInTime = 1386620182343, brokerOutTime = 1386620193779, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@26b9d351, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 426}, redeliveryCounter = 0} 2013-12-09 21:16:34,744 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 433, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:429, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620182400, arrival = 0, brokerInTime = 1386620182402, brokerOutTime = 1386620193780, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@71e07eb3, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 427}, redeliveryCounter = 0} 2013-12-09 21:16:34,746 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 434, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:430, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620182458, arrival = 0, brokerInTime = 1386620182460, brokerOutTime = 1386620193780, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@499e542d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 428}, redeliveryCounter = 0} 2013-12-09 21:16:34,748 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 435, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:431, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620182516, arrival = 0, brokerInTime = 1386620182518, brokerOutTime = 1386620193780, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@39a87c1d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 429}, redeliveryCounter = 0} 2013-12-09 21:16:34,750 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 436, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:432, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620182574, arrival = 0, brokerInTime = 1386620182576, brokerOutTime = 1386620193780, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@646c717d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 430}, redeliveryCounter = 0} 2013-12-09 21:16:34,753 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 437, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:433, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620182632, arrival = 0, brokerInTime = 1386620182634, brokerOutTime = 1386620193780, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@b8ef90d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 431}, redeliveryCounter = 0} 2013-12-09 21:16:34,756 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 438, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:434, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620182690, arrival = 0, brokerInTime = 1386620182692, brokerOutTime = 1386620193780, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5780ca68, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 432}, redeliveryCounter = 0} 2013-12-09 21:16:34,759 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 439, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:435, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620182748, arrival = 0, brokerInTime = 1386620182750, brokerOutTime = 1386620193780, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@48689eb9, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 433}, redeliveryCounter = 0} 2013-12-09 21:16:34,762 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 440, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:436, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620182807, arrival = 0, brokerInTime = 1386620182808, brokerOutTime = 1386620193781, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4c8ca8d2, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 434}, redeliveryCounter = 0} 2013-12-09 21:16:34,764 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 441, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:437, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620182882, arrival = 0, brokerInTime = 1386620182884, brokerOutTime = 1386620193781, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@269f9a41, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 435}, redeliveryCounter = 0} 2013-12-09 21:16:34,765 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 442, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:438, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620182990, arrival = 0, brokerInTime = 1386620182993, brokerOutTime = 1386620193781, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@38483536, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 436}, redeliveryCounter = 0} 2013-12-09 21:16:34,767 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 443, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:439, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620183098, arrival = 0, brokerInTime = 1386620183100, brokerOutTime = 1386620193781, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@c9d8918, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 437}, redeliveryCounter = 0} 2013-12-09 21:16:34,769 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 444, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:440, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620183210, arrival = 0, brokerInTime = 1386620183211, brokerOutTime = 1386620193781, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3a938d20, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 438}, redeliveryCounter = 0} 2013-12-09 21:16:34,772 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 445, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:441, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620183519, arrival = 0, brokerInTime = 1386620183520, brokerOutTime = 1386620193781, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2d164deb, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 439}, redeliveryCounter = 0} 2013-12-09 21:16:34,774 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 446, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:442, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620183668, arrival = 0, brokerInTime = 1386620183669, brokerOutTime = 1386620193782, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1355966d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 440}, redeliveryCounter = 0} 2013-12-09 21:16:34,776 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 447, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:443, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620183773, arrival = 0, brokerInTime = 1386620183774, brokerOutTime = 1386620193782, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5806d805, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 441}, redeliveryCounter = 0} 2013-12-09 21:16:34,778 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 448, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:444, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620183825, arrival = 0, brokerInTime = 1386620183826, brokerOutTime = 1386620193782, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@29505d69, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 442}, redeliveryCounter = 0} 2013-12-09 21:16:34,780 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 449, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:445, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620183883, arrival = 0, brokerInTime = 1386620183884, brokerOutTime = 1386620193782, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5b24adaf, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 443}, redeliveryCounter = 0} 2013-12-09 21:16:34,783 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 450, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:446, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620183941, arrival = 0, brokerInTime = 1386620183942, brokerOutTime = 1386620193782, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4506eae8, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 444}, redeliveryCounter = 0} 2013-12-09 21:16:34,786 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 451, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:447, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620183999, arrival = 0, brokerInTime = 1386620184002, brokerOutTime = 1386620193782, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@492848bf, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 445}, redeliveryCounter = 0} 2013-12-09 21:16:34,790 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 452, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:448, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620184057, arrival = 0, brokerInTime = 1386620184059, brokerOutTime = 1386620193782, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@73c0191e, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 446}, redeliveryCounter = 0} 2013-12-09 21:16:34,792 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 453, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:449, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620184115, arrival = 0, brokerInTime = 1386620184117, brokerOutTime = 1386620193783, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@48b13bf0, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 447}, redeliveryCounter = 0} 2013-12-09 21:16:34,794 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 454, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:450, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620184173, arrival = 0, brokerInTime = 1386620184174, brokerOutTime = 1386620193783, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6bd62ed8, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 448}, redeliveryCounter = 0} 2013-12-09 21:16:34,797 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 455, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:451, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620184231, arrival = 0, brokerInTime = 1386620184233, brokerOutTime = 1386620193783, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3a9d9e37, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 449}, redeliveryCounter = 0} 2013-12-09 21:16:34,799 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 456, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:452, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620184289, arrival = 0, brokerInTime = 1386620184290, brokerOutTime = 1386620193783, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@41fe4af1, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 450}, redeliveryCounter = 0} 2013-12-09 21:16:34,801 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 457, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:453, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620184347, arrival = 0, brokerInTime = 1386620184349, brokerOutTime = 1386620193783, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1dea3610, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 451}, redeliveryCounter = 0} 2013-12-09 21:16:34,803 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 458, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:454, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620184405, arrival = 0, brokerInTime = 1386620184406, brokerOutTime = 1386620193784, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7b8363c7, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 452}, redeliveryCounter = 0} 2013-12-09 21:16:34,805 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 459, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:455, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620184463, arrival = 0, brokerInTime = 1386620184464, brokerOutTime = 1386620193784, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6f0bdd2a, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 453}, redeliveryCounter = 0} 2013-12-09 21:16:34,807 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 460, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:456, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620184521, arrival = 0, brokerInTime = 1386620184522, brokerOutTime = 1386620193784, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@73e5295a, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 454}, redeliveryCounter = 0} 2013-12-09 21:16:34,809 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 461, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:457, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620184579, arrival = 0, brokerInTime = 1386620184580, brokerOutTime = 1386620193784, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@49fe0f27, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 455}, redeliveryCounter = 0} 2013-12-09 21:16:34,811 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 462, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:458, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620184637, arrival = 0, brokerInTime = 1386620184638, brokerOutTime = 1386620193784, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4694ef64, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 456}, redeliveryCounter = 0} 2013-12-09 21:16:34,814 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 463, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:459, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620184695, arrival = 0, brokerInTime = 1386620184696, brokerOutTime = 1386620193784, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5bf0b26f, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 457}, redeliveryCounter = 0} 2013-12-09 21:16:34,816 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 464, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:460, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620184753, arrival = 0, brokerInTime = 1386620184754, brokerOutTime = 1386620193785, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1752c491, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 458}, redeliveryCounter = 0} 2013-12-09 21:16:34,819 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 465, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:461, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620184811, arrival = 0, brokerInTime = 1386620184812, brokerOutTime = 1386620193785, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3ae7178d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 459}, redeliveryCounter = 0} 2013-12-09 21:16:34,822 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 466, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:462, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620184869, arrival = 0, brokerInTime = 1386620184870, brokerOutTime = 1386620193785, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@19bb4831, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 460}, redeliveryCounter = 0} 2013-12-09 21:16:34,824 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 467, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:463, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620184927, arrival = 0, brokerInTime = 1386620184928, brokerOutTime = 1386620193785, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@56809629, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 461}, redeliveryCounter = 0} 2013-12-09 21:16:34,826 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 468, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:464, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620184985, arrival = 0, brokerInTime = 1386620184986, brokerOutTime = 1386620193785, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@14028a1d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 462}, redeliveryCounter = 0} 2013-12-09 21:16:34,828 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 469, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:465, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620185043, arrival = 0, brokerInTime = 1386620185044, brokerOutTime = 1386620193785, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@32b9802e, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 463}, redeliveryCounter = 0} 2013-12-09 21:16:34,831 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 470, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:466, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620185101, arrival = 0, brokerInTime = 1386620185103, brokerOutTime = 1386620193786, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@308e6606, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 464}, redeliveryCounter = 0} 2013-12-09 21:16:34,833 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 471, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:467, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620185159, arrival = 0, brokerInTime = 1386620185160, brokerOutTime = 1386620193786, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@54cc2cd1, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 465}, redeliveryCounter = 0} 2013-12-09 21:16:34,836 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 472, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:468, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620185217, arrival = 0, brokerInTime = 1386620185218, brokerOutTime = 1386620193786, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@289278d5, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 466}, redeliveryCounter = 0} 2013-12-09 21:16:34,838 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 473, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:469, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620185268, arrival = 0, brokerInTime = 1386620185269, brokerOutTime = 1386620193786, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@283afcc2, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 467}, redeliveryCounter = 0} 2013-12-09 21:16:34,840 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 474, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:470, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620185326, arrival = 0, brokerInTime = 1386620185327, brokerOutTime = 1386620193786, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@38a83930, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 468}, redeliveryCounter = 0} 2013-12-09 21:16:34,842 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 475, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:471, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620185384, arrival = 0, brokerInTime = 1386620185386, brokerOutTime = 1386620193786, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2c429b5f, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 469}, redeliveryCounter = 0} 2013-12-09 21:16:34,844 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 476, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:472, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620185442, arrival = 0, brokerInTime = 1386620185443, brokerOutTime = 1386620193786, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@48e690ac, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 470}, redeliveryCounter = 0} 2013-12-09 21:16:34,846 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 477, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:473, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620185500, arrival = 0, brokerInTime = 1386620185502, brokerOutTime = 1386620193786, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@19243198, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 471}, redeliveryCounter = 0} 2013-12-09 21:16:34,848 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 478, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:474, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620185558, arrival = 0, brokerInTime = 1386620185560, brokerOutTime = 1386620193787, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1733ff0d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 472}, redeliveryCounter = 0} 2013-12-09 21:16:34,850 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 479, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:475, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620185616, arrival = 0, brokerInTime = 1386620185619, brokerOutTime = 1386620193787, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@56adba61, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 473}, redeliveryCounter = 0} 2013-12-09 21:16:34,852 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 480, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:476, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620185674, arrival = 0, brokerInTime = 1386620185676, brokerOutTime = 1386620193787, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@27a762bc, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 474}, redeliveryCounter = 0} 2013-12-09 21:16:34,855 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 481, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:477, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620185732, arrival = 0, brokerInTime = 1386620185734, brokerOutTime = 1386620193787, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5e4338fa, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 475}, redeliveryCounter = 0} 2013-12-09 21:16:34,857 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 482, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:478, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620185790, arrival = 0, brokerInTime = 1386620185792, brokerOutTime = 1386620193787, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@f51d56f, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 476}, redeliveryCounter = 0} 2013-12-09 21:16:34,859 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 483, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:479, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620185848, arrival = 0, brokerInTime = 1386620185850, brokerOutTime = 1386620193787, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@45937244, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 477}, redeliveryCounter = 0} 2013-12-09 21:16:34,861 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 484, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:480, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620185907, arrival = 0, brokerInTime = 1386620185909, brokerOutTime = 1386620193787, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5332f20b, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 478}, redeliveryCounter = 0} 2013-12-09 21:16:34,864 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 485, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:481, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620185964, arrival = 0, brokerInTime = 1386620185965, brokerOutTime = 1386620193787, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@35b0dad9, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 479}, redeliveryCounter = 0} 2013-12-09 21:16:34,866 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 486, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:482, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620186022, arrival = 0, brokerInTime = 1386620186023, brokerOutTime = 1386620193788, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6deff818, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 480}, redeliveryCounter = 0} 2013-12-09 21:16:34,869 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 487, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:483, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620186080, arrival = 0, brokerInTime = 1386620186081, brokerOutTime = 1386620193788, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2589280b, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 481}, redeliveryCounter = 0} 2013-12-09 21:16:34,871 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 488, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:484, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620186138, arrival = 0, brokerInTime = 1386620186139, brokerOutTime = 1386620193788, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4fa3fd6d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 482}, redeliveryCounter = 0} 2013-12-09 21:16:34,873 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 489, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:485, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620186196, arrival = 0, brokerInTime = 1386620186198, brokerOutTime = 1386620193788, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@175327f4, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 483}, redeliveryCounter = 0} 2013-12-09 21:16:34,875 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 490, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:486, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620186254, arrival = 0, brokerInTime = 1386620186255, brokerOutTime = 1386620193788, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@54641022, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 484}, redeliveryCounter = 0} 2013-12-09 21:16:34,878 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 491, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:487, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620186312, arrival = 0, brokerInTime = 1386620186313, brokerOutTime = 1386620193788, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@755f5376, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 485}, redeliveryCounter = 0} 2013-12-09 21:16:34,881 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 492, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:488, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620186370, arrival = 0, brokerInTime = 1386620186371, brokerOutTime = 1386620193788, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4560a42d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 486}, redeliveryCounter = 0} 2013-12-09 21:16:34,884 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 493, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:489, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620186428, arrival = 0, brokerInTime = 1386620186429, brokerOutTime = 1386620193788, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4bbaa9f0, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 487}, redeliveryCounter = 0} 2013-12-09 21:16:34,887 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 494, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:490, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620186486, arrival = 0, brokerInTime = 1386620186487, brokerOutTime = 1386620193788, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4beaf267, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 488}, redeliveryCounter = 0} 2013-12-09 21:16:34,889 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 495, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:491, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620186585, arrival = 0, brokerInTime = 1386620186587, brokerOutTime = 1386620193789, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2dd06f21, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 489}, redeliveryCounter = 0} 2013-12-09 21:16:34,892 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 496, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:492, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620186643, arrival = 0, brokerInTime = 1386620186644, brokerOutTime = 1386620193789, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4f2ff706, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 490}, redeliveryCounter = 0} 2013-12-09 21:16:34,894 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 497, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:493, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620186701, arrival = 0, brokerInTime = 1386620186702, brokerOutTime = 1386620193789, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5602d387, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 491}, redeliveryCounter = 0} 2013-12-09 21:16:34,896 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 498, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:494, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620186759, arrival = 0, brokerInTime = 1386620186760, brokerOutTime = 1386620193789, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@538d702e, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 492}, redeliveryCounter = 0} 2013-12-09 21:16:34,898 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 499, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:495, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620186817, arrival = 0, brokerInTime = 1386620186819, brokerOutTime = 1386620193789, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6ac006dc, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 493}, redeliveryCounter = 0} 2013-12-09 21:16:34,901 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 500, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:496, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620186875, arrival = 0, brokerInTime = 1386620186877, brokerOutTime = 1386620193789, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@65028c44, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 494}, redeliveryCounter = 0} 2013-12-09 21:16:34,904 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 501, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:497, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620186933, arrival = 0, brokerInTime = 1386620186934, brokerOutTime = 1386620193789, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@a46f82b, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 495}, redeliveryCounter = 0} 2013-12-09 21:16:34,906 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 502, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:498, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620186999, arrival = 0, brokerInTime = 1386620187000, brokerOutTime = 1386620193789, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@394ed452, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 496}, redeliveryCounter = 0} 2013-12-09 21:16:34,908 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 503, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:499, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620187066, arrival = 0, brokerInTime = 1386620187068, brokerOutTime = 1386620193789, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@665570e2, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 497}, redeliveryCounter = 0} 2013-12-09 21:16:34,910 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 504, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:500, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620187132, arrival = 0, brokerInTime = 1386620187134, brokerOutTime = 1386620193789, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@736639ea, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 498}, redeliveryCounter = 0} 2013-12-09 21:16:34,912 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 505, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:501, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620187198, arrival = 0, brokerInTime = 1386620187200, brokerOutTime = 1386620193790, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3c646cd6, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 499}, redeliveryCounter = 0} 2013-12-09 21:16:34,916 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 506, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:502, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620187264, arrival = 0, brokerInTime = 1386620187266, brokerOutTime = 1386620193790, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@65257493, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 500}, redeliveryCounter = 0} 2013-12-09 21:16:34,919 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 507, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:503, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620187332, arrival = 0, brokerInTime = 1386620187334, brokerOutTime = 1386620193790, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7e0892c5, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 501}, redeliveryCounter = 0} 2013-12-09 21:16:34,921 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 508, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:504, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620187390, arrival = 0, brokerInTime = 1386620187391, brokerOutTime = 1386620193790, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@64dc0427, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 502}, redeliveryCounter = 0} 2013-12-09 21:16:34,923 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 509, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:505, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620187448, arrival = 0, brokerInTime = 1386620187449, brokerOutTime = 1386620193790, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2894d02c, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 503}, redeliveryCounter = 0} 2013-12-09 21:16:34,925 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 510, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:506, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620187506, arrival = 0, brokerInTime = 1386620187507, brokerOutTime = 1386620193790, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@41ef0d84, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 504}, redeliveryCounter = 0} 2013-12-09 21:16:34,927 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 511, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:507, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620187564, arrival = 0, brokerInTime = 1386620187566, brokerOutTime = 1386620193790, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@356076ed, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 505}, redeliveryCounter = 0} 2013-12-09 21:16:34,929 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 512, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:508, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620187622, arrival = 0, brokerInTime = 1386620187624, brokerOutTime = 1386620193790, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@501fdcfb, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 506}, redeliveryCounter = 0} 2013-12-09 21:16:34,931 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 513, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:509, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620187680, arrival = 0, brokerInTime = 1386620187681, brokerOutTime = 1386620193790, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5be50bd5, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 507}, redeliveryCounter = 0} 2013-12-09 21:16:34,933 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 514, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:510, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620187738, arrival = 0, brokerInTime = 1386620187739, brokerOutTime = 1386620193791, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1a6bfc15, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 508}, redeliveryCounter = 0} 2013-12-09 21:16:34,936 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 515, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:511, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620187796, arrival = 0, brokerInTime = 1386620187798, brokerOutTime = 1386620193791, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2772d440, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 509}, redeliveryCounter = 0} 2013-12-09 21:16:34,939 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 516, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:512, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620187854, arrival = 0, brokerInTime = 1386620187855, brokerOutTime = 1386620193791, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@63ccc9fb, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 510}, redeliveryCounter = 0} 2013-12-09 21:16:34,941 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 517, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:513, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620187912, arrival = 0, brokerInTime = 1386620187913, brokerOutTime = 1386620193791, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@19e0b0ed, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 511}, redeliveryCounter = 0} 2013-12-09 21:16:34,943 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 518, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:514, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620187970, arrival = 0, brokerInTime = 1386620187971, brokerOutTime = 1386620193791, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6e7fa4e0, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 512}, redeliveryCounter = 0} 2013-12-09 21:16:34,945 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 519, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:515, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620188028, arrival = 0, brokerInTime = 1386620188029, brokerOutTime = 1386620193791, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7e21a6cc, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 513}, redeliveryCounter = 0} 2013-12-09 21:16:34,947 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 520, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:516, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620188086, arrival = 0, brokerInTime = 1386620188087, brokerOutTime = 1386620193791, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@534ddbc5, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 514}, redeliveryCounter = 0} 2013-12-09 21:16:34,948 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 521, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:517, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620188144, arrival = 0, brokerInTime = 1386620188145, brokerOutTime = 1386620193791, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1c978d3d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 515}, redeliveryCounter = 0} 2013-12-09 21:16:34,951 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 522, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:518, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620188202, arrival = 0, brokerInTime = 1386620188203, brokerOutTime = 1386620193791, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@21b9ae75, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 516}, redeliveryCounter = 0} 2013-12-09 21:16:34,953 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 523, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:519, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620188260, arrival = 0, brokerInTime = 1386620188261, brokerOutTime = 1386620193791, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@256c949f, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 517}, redeliveryCounter = 0} 2013-12-09 21:16:34,955 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 524, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:520, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620188319, arrival = 0, brokerInTime = 1386620188320, brokerOutTime = 1386620193792, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7b9165ea, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 518}, redeliveryCounter = 0} 2013-12-09 21:16:34,957 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 525, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:521, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620188376, arrival = 0, brokerInTime = 1386620188377, brokerOutTime = 1386620193792, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6ba2507, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 519}, redeliveryCounter = 0} 2013-12-09 21:16:34,959 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 526, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:522, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620188434, arrival = 0, brokerInTime = 1386620188435, brokerOutTime = 1386620193792, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@26d4f204, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 520}, redeliveryCounter = 0} 2013-12-09 21:16:34,961 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 527, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:523, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620188492, arrival = 0, brokerInTime = 1386620188493, brokerOutTime = 1386620193792, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@665cf886, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 521}, redeliveryCounter = 0} 2013-12-09 21:16:34,963 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 528, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:524, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620188550, arrival = 0, brokerInTime = 1386620188552, brokerOutTime = 1386620193792, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@61c059ea, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 522}, redeliveryCounter = 0} 2013-12-09 21:16:34,965 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 529, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:525, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620188608, arrival = 0, brokerInTime = 1386620188609, brokerOutTime = 1386620193792, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1b4f43c9, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 523}, redeliveryCounter = 0} 2013-12-09 21:16:34,967 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 530, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:526, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620188666, arrival = 0, brokerInTime = 1386620188668, brokerOutTime = 1386620193792, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@70eb4f20, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 524}, redeliveryCounter = 0} 2013-12-09 21:16:34,969 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 531, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:527, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620188724, arrival = 0, brokerInTime = 1386620188725, brokerOutTime = 1386620193792, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6897f7ca, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 525}, redeliveryCounter = 0} 2013-12-09 21:16:34,971 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 532, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:528, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620188790, arrival = 0, brokerInTime = 1386620188791, brokerOutTime = 1386620193792, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@510d246b, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 526}, redeliveryCounter = 0} 2013-12-09 21:16:34,972 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 533, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:529, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620188897, arrival = 0, brokerInTime = 1386620188899, brokerOutTime = 1386620193793, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@35d2165f, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 527}, redeliveryCounter = 0} 2013-12-09 21:16:34,974 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 534, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:530, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620188955, arrival = 0, brokerInTime = 1386620188957, brokerOutTime = 1386620193793, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@73bad293, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 528}, redeliveryCounter = 0} 2013-12-09 21:16:34,976 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 535, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:531, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620189063, arrival = 0, brokerInTime = 1386620189064, brokerOutTime = 1386620193793, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6e56ec40, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 529}, redeliveryCounter = 0} 2013-12-09 21:16:34,978 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 536, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:532, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620189129, arrival = 0, brokerInTime = 1386620189130, brokerOutTime = 1386620193793, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@cb09658, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 530}, redeliveryCounter = 0} 2013-12-09 21:16:34,980 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 537, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:533, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620189187, arrival = 0, brokerInTime = 1386620189188, brokerOutTime = 1386620193793, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1d5e71ea, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 531}, redeliveryCounter = 0} 2013-12-09 21:16:34,982 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 538, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:534, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620189245, arrival = 0, brokerInTime = 1386620189246, brokerOutTime = 1386620193793, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2388c8b6, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 532}, redeliveryCounter = 0} 2013-12-09 21:16:34,985 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 539, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:535, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620189303, arrival = 0, brokerInTime = 1386620189305, brokerOutTime = 1386620193793, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@693136f3, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 533}, redeliveryCounter = 0} 2013-12-09 21:16:34,987 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 540, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:536, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620189362, arrival = 0, brokerInTime = 1386620189363, brokerOutTime = 1386620193793, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1e0ec179, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 534}, redeliveryCounter = 0} 2013-12-09 21:16:34,989 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 541, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:537, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620189420, arrival = 0, brokerInTime = 1386620189422, brokerOutTime = 1386620193793, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5abffe59, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 535}, redeliveryCounter = 0} 2013-12-09 21:16:34,991 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 542, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:538, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620189477, arrival = 0, brokerInTime = 1386620189479, brokerOutTime = 1386620193794, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@72d3b39a, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 536}, redeliveryCounter = 0} 2013-12-09 21:16:34,993 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 543, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:539, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620189546, arrival = 0, brokerInTime = 1386620189548, brokerOutTime = 1386620193794, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@28b47e5b, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 537}, redeliveryCounter = 0} 2013-12-09 21:16:34,995 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 544, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:540, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620189604, arrival = 0, brokerInTime = 1386620189605, brokerOutTime = 1386620193794, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@61d39d3d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 538}, redeliveryCounter = 0} 2013-12-09 21:16:34,997 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 545, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:541, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620189662, arrival = 0, brokerInTime = 1386620189664, brokerOutTime = 1386620193794, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@bf841f8, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 539}, redeliveryCounter = 0} 2013-12-09 21:16:34,999 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 546, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:542, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620189720, arrival = 0, brokerInTime = 1386620189723, brokerOutTime = 1386620193794, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@57b306eb, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 540}, redeliveryCounter = 0} 2013-12-09 21:16:35,001 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 547, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:543, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620189778, arrival = 0, brokerInTime = 1386620189779, brokerOutTime = 1386620193794, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2a8b5b48, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 541}, redeliveryCounter = 0} 2013-12-09 21:16:35,003 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 548, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:544, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620189836, arrival = 0, brokerInTime = 1386620189837, brokerOutTime = 1386620193794, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2315e9ca, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 542}, redeliveryCounter = 0} 2013-12-09 21:16:35,005 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 549, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:545, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620189894, arrival = 0, brokerInTime = 1386620189895, brokerOutTime = 1386620193794, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@73a7dec4, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 543}, redeliveryCounter = 0} 2013-12-09 21:16:35,008 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 550, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:546, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620189952, arrival = 0, brokerInTime = 1386620189954, brokerOutTime = 1386620193794, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1212512e, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 544}, redeliveryCounter = 0} 2013-12-09 21:16:35,010 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 551, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:547, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620190010, arrival = 0, brokerInTime = 1386620190012, brokerOutTime = 1386620193795, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@708fac46, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 545}, redeliveryCounter = 0} 2013-12-09 21:16:35,012 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 552, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:548, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620190069, arrival = 0, brokerInTime = 1386620190071, brokerOutTime = 1386620193795, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@68776165, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 546}, redeliveryCounter = 0} 2013-12-09 21:16:35,014 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 553, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:549, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620190126, arrival = 0, brokerInTime = 1386620190127, brokerOutTime = 1386620193795, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@759b6377, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 547}, redeliveryCounter = 0} 2013-12-09 21:16:35,016 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 554, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:550, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620190184, arrival = 0, brokerInTime = 1386620190186, brokerOutTime = 1386620193795, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2c9f55f3, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 548}, redeliveryCounter = 0} 2013-12-09 21:16:35,020 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 555, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:551, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620190250, arrival = 0, brokerInTime = 1386620190252, brokerOutTime = 1386620193795, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2a799171, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 549}, redeliveryCounter = 0} 2013-12-09 21:16:35,023 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 556, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:552, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620190316, arrival = 0, brokerInTime = 1386620190318, brokerOutTime = 1386620193795, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@133ba780, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 550}, redeliveryCounter = 0} 2013-12-09 21:16:35,025 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 557, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:553, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620190383, arrival = 0, brokerInTime = 1386620190386, brokerOutTime = 1386620193795, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3171ce5d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 551}, redeliveryCounter = 0} 2013-12-09 21:16:35,027 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 558, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:554, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620190491, arrival = 0, brokerInTime = 1386620190493, brokerOutTime = 1386620193795, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@26a35507, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 552}, redeliveryCounter = 0} 2013-12-09 21:16:35,029 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 559, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:555, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620190599, arrival = 0, brokerInTime = 1386620190601, brokerOutTime = 1386620193795, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2d235262, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 553}, redeliveryCounter = 0} 2013-12-09 21:16:35,031 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 560, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:556, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620190706, arrival = 0, brokerInTime = 1386620190707, brokerOutTime = 1386620193796, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@69f5b714, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 554}, redeliveryCounter = 0} 2013-12-09 21:16:35,033 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 561, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:557, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620190763, arrival = 0, brokerInTime = 1386620190765, brokerOutTime = 1386620193796, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2c6b865, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 555}, redeliveryCounter = 0} 2013-12-09 21:16:35,035 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 562, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:558, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620190830, arrival = 0, brokerInTime = 1386620190831, brokerOutTime = 1386620193796, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4473f04f, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 556}, redeliveryCounter = 0} 2013-12-09 21:16:35,038 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 563, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:559, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620190887, arrival = 0, brokerInTime = 1386620190889, brokerOutTime = 1386620193796, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@17a5f5a5, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 557}, redeliveryCounter = 0} 2013-12-09 21:16:35,040 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 564, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:560, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620190945, arrival = 0, brokerInTime = 1386620190947, brokerOutTime = 1386620193796, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@10a22fc4, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 558}, redeliveryCounter = 0} 2013-12-09 21:16:35,042 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 565, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:561, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620191003, arrival = 0, brokerInTime = 1386620191005, brokerOutTime = 1386620193796, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7edf564, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 559}, redeliveryCounter = 0} 2013-12-09 21:16:35,044 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 566, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:562, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620191061, arrival = 0, brokerInTime = 1386620191062, brokerOutTime = 1386620193796, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@17897c4d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 560}, redeliveryCounter = 0} 2013-12-09 21:16:35,046 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 567, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:563, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620191111, arrival = 0, brokerInTime = 1386620191113, brokerOutTime = 1386620193796, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@433faf4d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 561}, redeliveryCounter = 0} 2013-12-09 21:16:35,048 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 568, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:564, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620191169, arrival = 0, brokerInTime = 1386620191171, brokerOutTime = 1386620193796, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@a0e0ab9, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 562}, redeliveryCounter = 0} 2013-12-09 21:16:35,050 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 569, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:565, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620191227, arrival = 0, brokerInTime = 1386620191229, brokerOutTime = 1386620193797, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1fe1fcd7, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 563}, redeliveryCounter = 0} 2013-12-09 21:16:35,052 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 570, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:566, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620191285, arrival = 0, brokerInTime = 1386620191286, brokerOutTime = 1386620193797, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2d9e979b, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 564}, redeliveryCounter = 0} 2013-12-09 21:16:35,054 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 571, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:567, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620191343, arrival = 0, brokerInTime = 1386620191344, brokerOutTime = 1386620193797, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6f35883, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 565}, redeliveryCounter = 0} 2013-12-09 21:16:35,056 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 572, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:568, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620191401, arrival = 0, brokerInTime = 1386620191402, brokerOutTime = 1386620193797, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@52380405, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 566}, redeliveryCounter = 0} 2013-12-09 21:16:35,058 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 573, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:569, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620191459, arrival = 0, brokerInTime = 1386620191460, brokerOutTime = 1386620193797, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5b900e6e, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 567}, redeliveryCounter = 0} 2013-12-09 21:16:35,060 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 574, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:570, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620191559, arrival = 0, brokerInTime = 1386620191560, brokerOutTime = 1386620193797, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4ea386b8, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 568}, redeliveryCounter = 0} 2013-12-09 21:16:35,062 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 575, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:571, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620191617, arrival = 0, brokerInTime = 1386620191619, brokerOutTime = 1386620193797, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@51e1c25d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 569}, redeliveryCounter = 0} 2013-12-09 21:16:35,065 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 576, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:572, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620191674, arrival = 0, brokerInTime = 1386620191676, brokerOutTime = 1386620193797, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3c9f91aa, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 570}, redeliveryCounter = 0} 2013-12-09 21:16:35,067 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 577, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:573, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620191742, arrival = 0, brokerInTime = 1386620191743, brokerOutTime = 1386620193798, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@10144efe, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 571}, redeliveryCounter = 0} 2013-12-09 21:16:35,070 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 578, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:574, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620191800, arrival = 0, brokerInTime = 1386620191802, brokerOutTime = 1386620193798, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@254e0df1, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 572}, redeliveryCounter = 0} 2013-12-09 21:16:35,072 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 579, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:575, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620191858, arrival = 0, brokerInTime = 1386620191859, brokerOutTime = 1386620193798, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@27755c59, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 573}, redeliveryCounter = 0} 2013-12-09 21:16:35,074 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 580, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:576, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620191916, arrival = 0, brokerInTime = 1386620191918, brokerOutTime = 1386620193798, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@a01eb4c, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 574}, redeliveryCounter = 0} 2013-12-09 21:16:35,077 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 581, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:577, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620191974, arrival = 0, brokerInTime = 1386620191975, brokerOutTime = 1386620193798, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3fecfb6, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 575}, redeliveryCounter = 0} 2013-12-09 21:16:35,079 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 582, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:578, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620192032, arrival = 0, brokerInTime = 1386620192034, brokerOutTime = 1386620193798, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4df6b7c6, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 576}, redeliveryCounter = 0} 2013-12-09 21:16:35,081 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 583, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:579, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620192090, arrival = 0, brokerInTime = 1386620192091, brokerOutTime = 1386620193798, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@9b5027, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 577}, redeliveryCounter = 0} 2013-12-09 21:16:35,083 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 584, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:580, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620192156, arrival = 0, brokerInTime = 1386620192158, brokerOutTime = 1386620193798, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@54ab30c0, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 578}, redeliveryCounter = 0} 2013-12-09 21:16:35,085 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 585, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:581, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620192223, arrival = 0, brokerInTime = 1386620192224, brokerOutTime = 1386620193798, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@330db8ad, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 579}, redeliveryCounter = 0} 2013-12-09 21:16:35,087 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 586, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:582, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620192280, arrival = 0, brokerInTime = 1386620192282, brokerOutTime = 1386620193799, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@49d7800a, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 580}, redeliveryCounter = 0} 2013-12-09 21:16:35,089 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 587, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:583, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620192388, arrival = 0, brokerInTime = 1386620192389, brokerOutTime = 1386620193799, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@63173665, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 581}, redeliveryCounter = 0} 2013-12-09 21:16:35,091 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 588, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:584, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620192450, arrival = 0, brokerInTime = 1386620192451, brokerOutTime = 1386620193799, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@8f453b6, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 582}, redeliveryCounter = 0} 2013-12-09 21:16:35,094 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 589, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:585, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620192505, arrival = 0, brokerInTime = 1386620192507, brokerOutTime = 1386620193799, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@60a3d651, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 583}, redeliveryCounter = 0} 2013-12-09 21:16:35,096 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 590, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:586, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620192563, arrival = 0, brokerInTime = 1386620192564, brokerOutTime = 1386620193799, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@244b9168, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 584}, redeliveryCounter = 0} 2013-12-09 21:16:35,098 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 591, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:587, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620192620, arrival = 0, brokerInTime = 1386620192622, brokerOutTime = 1386620193799, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5d375575, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 585}, redeliveryCounter = 0} 2013-12-09 21:16:35,101 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 592, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:588, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620192678, arrival = 0, brokerInTime = 1386620192680, brokerOutTime = 1386620193799, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5bcba422, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 586}, redeliveryCounter = 0} 2013-12-09 21:16:35,104 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 593, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:589, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620192736, arrival = 0, brokerInTime = 1386620192737, brokerOutTime = 1386620193799, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1684e343, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 587}, redeliveryCounter = 0} 2013-12-09 21:16:35,106 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 594, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:590, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620192794, arrival = 0, brokerInTime = 1386620192796, brokerOutTime = 1386620193799, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6e644f41, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 588}, redeliveryCounter = 0} 2013-12-09 21:16:35,108 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 595, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:591, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620192852, arrival = 0, brokerInTime = 1386620192854, brokerOutTime = 1386620193800, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7b8f6d05, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 589}, redeliveryCounter = 0} 2013-12-09 21:16:35,110 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 596, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:592, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620192910, arrival = 0, brokerInTime = 1386620192911, brokerOutTime = 1386620193800, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@53ea2a3, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 590}, redeliveryCounter = 0} 2013-12-09 21:16:35,112 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 597, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:593, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620192968, arrival = 0, brokerInTime = 1386620192969, brokerOutTime = 1386620193800, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@53277e05, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 591}, redeliveryCounter = 0} 2013-12-09 21:16:35,114 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 598, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:594, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620193026, arrival = 0, brokerInTime = 1386620193027, brokerOutTime = 1386620193800, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@45c2a4e9, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 592}, redeliveryCounter = 0} 2013-12-09 21:16:35,118 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 599, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:595, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620193084, arrival = 0, brokerInTime = 1386620193086, brokerOutTime = 1386620193800, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6dd8e0c6, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 593}, redeliveryCounter = 0} 2013-12-09 21:16:35,120 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 600, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:596, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620193142, arrival = 0, brokerInTime = 1386620193143, brokerOutTime = 1386620193800, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@398d1f81, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 594}, redeliveryCounter = 0} 2013-12-09 21:16:35,122 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 601, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:597, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620193200, arrival = 0, brokerInTime = 1386620193202, brokerOutTime = 1386620193800, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@600f6bab, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 595}, redeliveryCounter = 0} 2013-12-09 21:16:35,124 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 602, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:598, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620193258, arrival = 0, brokerInTime = 1386620193260, brokerOutTime = 1386620193800, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1465d8d2, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 596}, redeliveryCounter = 0} 2013-12-09 21:16:35,126 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 603, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:599, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620193316, arrival = 0, brokerInTime = 1386620193318, brokerOutTime = 1386620193800, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2a7dcd74, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 597}, redeliveryCounter = 0} 2013-12-09 21:16:35,128 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 604, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:600, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620193374, arrival = 0, brokerInTime = 1386620193376, brokerOutTime = 1386620193801, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@293b9077, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 598}, redeliveryCounter = 0} 2013-12-09 21:16:35,130 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 605, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:601, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620193432, arrival = 0, brokerInTime = 1386620193434, brokerOutTime = 1386620193801, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@58989c7, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 599}, redeliveryCounter = 0} 2013-12-09 21:16:35,133 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 606, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:602, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620193490, arrival = 0, brokerInTime = 1386620193492, brokerOutTime = 1386620193801, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@8b46aa8, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 600}, redeliveryCounter = 0} 2013-12-09 21:16:35,135 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 7} 2013-12-09 21:16:35,136 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 7, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:3, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620122303, arrival = 0, brokerInTime = 1386620139089, brokerOutTime = 1386620193714, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 1} 2013-12-09 21:16:35,138 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 1 2013-12-09 21:16:35,138 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 8, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:2} 2013-12-09 21:16:35,139 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:2 2013-12-09 21:16:35,139 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:2 2013-12-09 21:16:35,140 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 9, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:4, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:4, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:2, messageCount = 1, poisonCause = null} 2013-12-09 21:16:35,140 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:2 syncCount: 1 2013-12-09 21:16:35,141 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 10, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:2} 2013-12-09 21:16:35,142 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:2 syncCount: 2 2013-12-09 21:16:35,209 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 10} 2013-12-09 21:16:35,209 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 8, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:4, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620139145, arrival = 0, brokerInTime = 1386620139146, brokerOutTime = 1386620193714, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 2} 2013-12-09 21:16:35,210 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 2 2013-12-09 21:16:35,211 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 11, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:3} 2013-12-09 21:16:35,211 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:3 2013-12-09 21:16:35,212 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:3 2013-12-09 21:16:35,212 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 12, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:5, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:5, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:3, messageCount = 1, poisonCause = null} 2013-12-09 21:16:35,213 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:3 syncCount: 1 2013-12-09 21:16:35,214 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 13, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:3} 2013-12-09 21:16:35,214 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:3 syncCount: 2 2013-12-09 21:16:35,275 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 13} 2013-12-09 21:16:35,276 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 9, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:5, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620139202, arrival = 0, brokerInTime = 1386620139204, brokerOutTime = 1386620193714, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 3} 2013-12-09 21:16:35,277 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 3 2013-12-09 21:16:35,278 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 14, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:4} 2013-12-09 21:16:35,278 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:4 2013-12-09 21:16:35,278 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:4 2013-12-09 21:16:35,279 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 15, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:6, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:6, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:4, messageCount = 1, poisonCause = null} 2013-12-09 21:16:35,279 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:4 syncCount: 1 2013-12-09 21:16:35,280 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 16, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:4} 2013-12-09 21:16:35,280 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:4 syncCount: 2 2013-12-09 21:16:35,333 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 16} 2013-12-09 21:16:35,333 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 10, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:6, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620139260, arrival = 0, brokerInTime = 1386620139262, brokerOutTime = 1386620193714, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 4} 2013-12-09 21:16:35,336 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 4 2013-12-09 21:16:35,336 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 17, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:5} 2013-12-09 21:16:35,337 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:5 2013-12-09 21:16:35,337 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:5 2013-12-09 21:16:35,337 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 18, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:7, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:7, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:5, messageCount = 1, poisonCause = null} 2013-12-09 21:16:35,339 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:5 syncCount: 1 2013-12-09 21:16:35,339 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 19, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:5} 2013-12-09 21:16:35,340 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:5 syncCount: 2 2013-12-09 21:16:35,391 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 19} 2013-12-09 21:16:35,391 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 11, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:7, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620139319, arrival = 0, brokerInTime = 1386620139321, brokerOutTime = 1386620193715, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 5} 2013-12-09 21:16:35,393 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 5 2013-12-09 21:16:35,393 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 20, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:6} 2013-12-09 21:16:35,394 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:6 2013-12-09 21:16:35,394 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:6 2013-12-09 21:16:35,394 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 21, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:8, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:8, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:6, messageCount = 1, poisonCause = null} 2013-12-09 21:16:35,395 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:6 syncCount: 1 2013-12-09 21:16:35,395 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 22, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:6} 2013-12-09 21:16:35,396 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:6 syncCount: 2 2013-12-09 21:16:35,449 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 22} 2013-12-09 21:16:35,449 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 12, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:8, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620139376, arrival = 0, brokerInTime = 1386620139378, brokerOutTime = 1386620193715, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 6} 2013-12-09 21:16:35,451 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 6 2013-12-09 21:16:35,452 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 23, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:7} 2013-12-09 21:16:35,452 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:7 2013-12-09 21:16:35,452 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:7 2013-12-09 21:16:35,453 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 24, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:9, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:9, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:7, messageCount = 1, poisonCause = null} 2013-12-09 21:16:35,454 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:7 syncCount: 1 2013-12-09 21:16:35,454 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 25, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:7} 2013-12-09 21:16:35,454 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:7 syncCount: 2 2013-12-09 21:16:35,507 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 25} 2013-12-09 21:16:35,507 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 13, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:9, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620139434, arrival = 0, brokerInTime = 1386620139436, brokerOutTime = 1386620193715, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 7} 2013-12-09 21:16:35,509 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 7 2013-12-09 21:16:35,510 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 26, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:8} 2013-12-09 21:16:35,510 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:8 2013-12-09 21:16:35,510 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:8 2013-12-09 21:16:35,511 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 27, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:10, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:10, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:8, messageCount = 1, poisonCause = null} 2013-12-09 21:16:35,511 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:8 syncCount: 1 2013-12-09 21:16:35,512 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 28, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:8} 2013-12-09 21:16:35,512 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:8 syncCount: 2 2013-12-09 21:16:35,565 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 28} 2013-12-09 21:16:35,565 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 14, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:10, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620139492, arrival = 0, brokerInTime = 1386620139494, brokerOutTime = 1386620193715, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 8} 2013-12-09 21:16:35,567 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 8 2013-12-09 21:16:35,567 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 29, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:9} 2013-12-09 21:16:35,567 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:9 2013-12-09 21:16:35,568 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:9 2013-12-09 21:16:35,568 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 30, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:11, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:11, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:9, messageCount = 1, poisonCause = null} 2013-12-09 21:16:35,569 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:9 syncCount: 1 2013-12-09 21:16:35,569 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 31, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:9} 2013-12-09 21:16:35,569 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:9 syncCount: 2 2013-12-09 21:16:35,623 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 31} 2013-12-09 21:16:35,624 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 15, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:11, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620139550, arrival = 0, brokerInTime = 1386620139552, brokerOutTime = 1386620193715, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 9} 2013-12-09 21:16:35,626 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 9 2013-12-09 21:16:35,626 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 32, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:10} 2013-12-09 21:16:35,627 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:10 2013-12-09 21:16:35,627 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:10 2013-12-09 21:16:35,628 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 33, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:12, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:12, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:10, messageCount = 1, poisonCause = null} 2013-12-09 21:16:35,628 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:10 syncCount: 1 2013-12-09 21:16:35,629 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 34, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:10} 2013-12-09 21:16:35,629 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:10 syncCount: 2 2013-12-09 21:16:35,681 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 34} 2013-12-09 21:16:35,681 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 16, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:12, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620139608, arrival = 0, brokerInTime = 1386620139609, brokerOutTime = 1386620193716, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 10} 2013-12-09 21:16:35,683 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 10 2013-12-09 21:16:35,683 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 35, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:11} 2013-12-09 21:16:35,683 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:11 2013-12-09 21:16:35,684 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:11 2013-12-09 21:16:35,684 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 36, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:13, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:13, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:11, messageCount = 1, poisonCause = null} 2013-12-09 21:16:35,685 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:11 syncCount: 1 2013-12-09 21:16:35,685 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 37, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:11} 2013-12-09 21:16:35,686 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:11 syncCount: 2 2013-12-09 21:16:35,739 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 37} 2013-12-09 21:16:35,739 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 17, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:13, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620139666, arrival = 0, brokerInTime = 1386620139668, brokerOutTime = 1386620193716, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 11} 2013-12-09 21:16:35,741 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 11 2013-12-09 21:16:35,741 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 38, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:12} 2013-12-09 21:16:35,742 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:12 2013-12-09 21:16:35,742 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:12 2013-12-09 21:16:35,742 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 39, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:14, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:14, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:12, messageCount = 1, poisonCause = null} 2013-12-09 21:16:35,743 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:12 syncCount: 1 2013-12-09 21:16:35,743 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 40, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:12} 2013-12-09 21:16:35,744 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:12 syncCount: 2 2013-12-09 21:16:35,797 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 40} 2013-12-09 21:16:35,797 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 18, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:14, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620139724, arrival = 0, brokerInTime = 1386620139725, brokerOutTime = 1386620193716, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 12} 2013-12-09 21:16:35,800 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 12 2013-12-09 21:16:35,800 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 41, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:13} 2013-12-09 21:16:35,801 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:13 2013-12-09 21:16:35,801 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:13 2013-12-09 21:16:35,802 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 42, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:15, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:15, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:13, messageCount = 1, poisonCause = null} 2013-12-09 21:16:35,802 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:13 syncCount: 1 2013-12-09 21:16:35,803 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 43, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:13} 2013-12-09 21:16:35,803 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:13 syncCount: 2 2013-12-09 21:16:35,855 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 43} 2013-12-09 21:16:35,855 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 19, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:15, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620139782, arrival = 0, brokerInTime = 1386620139784, brokerOutTime = 1386620193716, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 13} 2013-12-09 21:16:35,856 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 13 2013-12-09 21:16:35,857 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 44, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:14} 2013-12-09 21:16:35,857 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:14 2013-12-09 21:16:35,857 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:14 2013-12-09 21:16:35,858 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 45, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:16, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:16, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:14, messageCount = 1, poisonCause = null} 2013-12-09 21:16:35,858 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:14 syncCount: 1 2013-12-09 21:16:35,859 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 46, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:14} 2013-12-09 21:16:35,859 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:14 syncCount: 2 2013-12-09 21:16:35,913 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 46} 2013-12-09 21:16:35,913 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 20, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:16, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620139840, arrival = 0, brokerInTime = 1386620139841, brokerOutTime = 1386620193716, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 14} 2013-12-09 21:16:35,914 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 14 2013-12-09 21:16:35,915 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 47, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:15} 2013-12-09 21:16:35,915 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:15 2013-12-09 21:16:35,916 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:15 2013-12-09 21:16:35,916 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 48, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:17, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:17, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:15, messageCount = 1, poisonCause = null} 2013-12-09 21:16:35,917 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:15 syncCount: 1 2013-12-09 21:16:35,917 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 49, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:15} 2013-12-09 21:16:35,918 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:15 syncCount: 2 2013-12-09 21:16:35,971 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 49} 2013-12-09 21:16:35,971 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 21, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:17, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620139898, arrival = 0, brokerInTime = 1386620139899, brokerOutTime = 1386620193716, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 15} 2013-12-09 21:16:35,972 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 15 2013-12-09 21:16:35,972 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 50, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:16} 2013-12-09 21:16:35,973 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:16 2013-12-09 21:16:35,973 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:16 2013-12-09 21:16:35,973 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 51, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:18, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:18, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:16, messageCount = 1, poisonCause = null} 2013-12-09 21:16:35,974 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:16 syncCount: 1 2013-12-09 21:16:35,974 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 52, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:16} 2013-12-09 21:16:35,975 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:16 syncCount: 2 2013-12-09 21:16:36,029 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 52} 2013-12-09 21:16:36,029 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 22, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:18, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620139956, arrival = 0, brokerInTime = 1386620139957, brokerOutTime = 1386620193717, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 16} 2013-12-09 21:16:36,030 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 16 2013-12-09 21:16:36,030 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 53, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:17} 2013-12-09 21:16:36,031 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:17 2013-12-09 21:16:36,031 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:17 2013-12-09 21:16:36,031 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 54, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:19, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:19, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:17, messageCount = 1, poisonCause = null} 2013-12-09 21:16:36,032 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:17 syncCount: 1 2013-12-09 21:16:36,032 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 55, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:17} 2013-12-09 21:16:36,033 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:17 syncCount: 2 2013-12-09 21:16:36,087 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 55} 2013-12-09 21:16:36,087 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 23, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:19, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620140014, arrival = 0, brokerInTime = 1386620140015, brokerOutTime = 1386620193717, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 17} 2013-12-09 21:16:36,088 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 17 2013-12-09 21:16:36,088 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 56, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:18} 2013-12-09 21:16:36,089 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:18 2013-12-09 21:16:36,089 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:18 2013-12-09 21:16:36,089 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 57, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:20, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:20, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:18, messageCount = 1, poisonCause = null} 2013-12-09 21:16:36,090 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:18 syncCount: 1 2013-12-09 21:16:36,090 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 58, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:18} 2013-12-09 21:16:36,091 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:18 syncCount: 2 2013-12-09 21:16:36,144 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 58} 2013-12-09 21:16:36,145 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 24, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:20, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620140072, arrival = 0, brokerInTime = 1386620140073, brokerOutTime = 1386620193717, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 18} 2013-12-09 21:16:36,146 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 18 2013-12-09 21:16:36,146 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 59, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:19} 2013-12-09 21:16:36,147 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:19 2013-12-09 21:16:36,147 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:19 2013-12-09 21:16:36,147 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 60, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:21, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:21, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:19, messageCount = 1, poisonCause = null} 2013-12-09 21:16:36,148 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:19 syncCount: 1 2013-12-09 21:16:36,148 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 61, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:19} 2013-12-09 21:16:36,148 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:19 syncCount: 2 2013-12-09 21:16:36,202 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 61} 2013-12-09 21:16:36,203 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 25, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:21, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620140130, arrival = 0, brokerInTime = 1386620140131, brokerOutTime = 1386620193717, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 19} 2013-12-09 21:16:36,204 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 19 2013-12-09 21:16:36,204 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 62, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:20} 2013-12-09 21:16:36,205 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:20 2013-12-09 21:16:36,205 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:20 2013-12-09 21:16:36,205 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 63, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:22, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:22, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:20, messageCount = 1, poisonCause = null} 2013-12-09 21:16:36,206 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:20 syncCount: 1 2013-12-09 21:16:36,206 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 64, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:20} 2013-12-09 21:16:36,207 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:20 syncCount: 2 2013-12-09 21:16:36,261 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 64} 2013-12-09 21:16:36,261 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 26, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:22, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620140188, arrival = 0, brokerInTime = 1386620140189, brokerOutTime = 1386620193717, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 20} 2013-12-09 21:16:36,262 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 20 2013-12-09 21:16:36,263 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 65, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:21} 2013-12-09 21:16:36,263 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:21 2013-12-09 21:16:36,264 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:21 2013-12-09 21:16:36,264 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 66, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:23, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:23, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:21, messageCount = 1, poisonCause = null} 2013-12-09 21:16:36,265 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:21 syncCount: 1 2013-12-09 21:16:36,265 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 67, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:21} 2013-12-09 21:16:36,266 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:21 syncCount: 2 2013-12-09 21:16:36,319 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 67} 2013-12-09 21:16:36,319 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 27, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:23, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620140246, arrival = 0, brokerInTime = 1386620140247, brokerOutTime = 1386620193717, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 21} 2013-12-09 21:16:36,320 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 21 2013-12-09 21:16:36,320 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 68, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:22} 2013-12-09 21:16:36,321 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:22 2013-12-09 21:16:36,321 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:22 2013-12-09 21:16:36,321 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 69, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:24, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:24, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:22, messageCount = 1, poisonCause = null} 2013-12-09 21:16:36,322 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:22 syncCount: 1 2013-12-09 21:16:36,322 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 70, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:22} 2013-12-09 21:16:36,323 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:22 syncCount: 2 2013-12-09 21:16:36,377 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 70} 2013-12-09 21:16:36,377 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 28, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:24, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620140304, arrival = 0, brokerInTime = 1386620140305, brokerOutTime = 1386620193718, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 22} 2013-12-09 21:16:36,378 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 22 2013-12-09 21:16:36,378 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 71, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:23} 2013-12-09 21:16:36,379 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:23 2013-12-09 21:16:36,379 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:23 2013-12-09 21:16:36,379 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 72, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:25, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:25, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:23, messageCount = 1, poisonCause = null} 2013-12-09 21:16:36,380 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:23 syncCount: 1 2013-12-09 21:16:36,380 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 73, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:23} 2013-12-09 21:16:36,380 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:23 syncCount: 2 2013-12-09 21:16:36,434 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 73} 2013-12-09 21:16:36,435 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 29, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:25, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620140362, arrival = 0, brokerInTime = 1386620140363, brokerOutTime = 1386620193718, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 23} 2013-12-09 21:16:36,436 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 23 2013-12-09 21:16:36,436 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 74, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:24} 2013-12-09 21:16:36,437 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:24 2013-12-09 21:16:36,437 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:24 2013-12-09 21:16:36,437 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 75, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:26, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:26, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:24, messageCount = 1, poisonCause = null} 2013-12-09 21:16:36,438 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:24 syncCount: 1 2013-12-09 21:16:36,438 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 76, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:24} 2013-12-09 21:16:36,438 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:24 syncCount: 2 2013-12-09 21:16:36,454 [ Scheduled Task] DEBUG LeaseDatabaseLocker - coreActiveMQBroker1, lease keepAlive Query is UPDATE ACTIVEMQ_LOCK SET BROKER_NAME=?, TIME=? WHERE BROKER_NAME=? AND ID = 1 2013-12-09 21:16:36,492 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 76} 2013-12-09 21:16:36,493 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 30, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:26, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620140420, arrival = 0, brokerInTime = 1386620140422, brokerOutTime = 1386620193718, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 24} 2013-12-09 21:16:36,494 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 24 2013-12-09 21:16:36,494 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 77, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:25} 2013-12-09 21:16:36,494 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:25 2013-12-09 21:16:36,495 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:25 2013-12-09 21:16:36,495 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 78, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:27, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:27, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:25, messageCount = 1, poisonCause = null} 2013-12-09 21:16:36,496 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:25 syncCount: 1 2013-12-09 21:16:36,496 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 79, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:25} 2013-12-09 21:16:36,497 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:25 syncCount: 2 2013-12-09 21:16:36,592 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 79} 2013-12-09 21:16:36,593 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 31, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:27, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620140478, arrival = 0, brokerInTime = 1386620140479, brokerOutTime = 1386620193718, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 25} 2013-12-09 21:16:36,594 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 25 2013-12-09 21:16:36,594 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 80, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:26} 2013-12-09 21:16:36,594 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:26 2013-12-09 21:16:36,595 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:26 2013-12-09 21:16:36,595 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 81, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:28, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:28, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:26, messageCount = 1, poisonCause = null} 2013-12-09 21:16:36,596 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:26 syncCount: 1 2013-12-09 21:16:36,596 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 82, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:26} 2013-12-09 21:16:36,596 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:26 syncCount: 2 2013-12-09 21:16:36,650 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 82} 2013-12-09 21:16:36,650 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 32, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:28, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620140536, arrival = 0, brokerInTime = 1386620140537, brokerOutTime = 1386620193718, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 26} 2013-12-09 21:16:36,651 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 26 2013-12-09 21:16:36,652 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 83, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:27} 2013-12-09 21:16:36,652 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:27 2013-12-09 21:16:36,652 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:27 2013-12-09 21:16:36,653 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 84, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:29, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:29, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:27, messageCount = 1, poisonCause = null} 2013-12-09 21:16:36,653 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:27 syncCount: 1 2013-12-09 21:16:36,653 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 85, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:27} 2013-12-09 21:16:36,654 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:27 syncCount: 2 2013-12-09 21:16:36,708 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 85} 2013-12-09 21:16:36,708 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 33, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:29, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620140594, arrival = 0, brokerInTime = 1386620140595, brokerOutTime = 1386620193718, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 27} 2013-12-09 21:16:36,709 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 27 2013-12-09 21:16:36,710 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 86, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:28} 2013-12-09 21:16:36,710 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:28 2013-12-09 21:16:36,710 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:28 2013-12-09 21:16:36,710 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 87, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:30, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:30, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:28, messageCount = 1, poisonCause = null} 2013-12-09 21:16:36,711 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:28 syncCount: 1 2013-12-09 21:16:36,711 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 88, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:28} 2013-12-09 21:16:36,712 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:28 syncCount: 2 2013-12-09 21:16:36,766 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 88} 2013-12-09 21:16:36,766 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 34, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:30, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620140652, arrival = 0, brokerInTime = 1386620140653, brokerOutTime = 1386620193719, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 28} 2013-12-09 21:16:36,768 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 28 2013-12-09 21:16:36,768 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 89, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:29} 2013-12-09 21:16:36,768 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:29 2013-12-09 21:16:36,768 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:29 2013-12-09 21:16:36,769 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 90, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:31, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:31, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:29, messageCount = 1, poisonCause = null} 2013-12-09 21:16:36,770 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:29 syncCount: 1 2013-12-09 21:16:36,770 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 91, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:29} 2013-12-09 21:16:36,771 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:29 syncCount: 2 2013-12-09 21:16:36,824 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 91} 2013-12-09 21:16:36,824 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 35, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:31, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620140710, arrival = 0, brokerInTime = 1386620140711, brokerOutTime = 1386620193719, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 29} 2013-12-09 21:16:36,826 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 29 2013-12-09 21:16:36,826 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 92, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:30} 2013-12-09 21:16:36,826 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:30 2013-12-09 21:16:36,827 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:30 2013-12-09 21:16:36,827 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 93, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:32, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:32, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:30, messageCount = 1, poisonCause = null} 2013-12-09 21:16:36,828 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:30 syncCount: 1 2013-12-09 21:16:36,828 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 94, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:30} 2013-12-09 21:16:36,829 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:30 syncCount: 2 2013-12-09 21:16:36,882 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 94} 2013-12-09 21:16:36,882 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 36, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:32, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620140776, arrival = 0, brokerInTime = 1386620140777, brokerOutTime = 1386620193719, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 30} 2013-12-09 21:16:36,883 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 30 2013-12-09 21:16:36,884 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 95, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:31} 2013-12-09 21:16:36,884 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:31 2013-12-09 21:16:36,884 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:31 2013-12-09 21:16:36,885 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 96, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:33, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:33, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:31, messageCount = 1, poisonCause = null} 2013-12-09 21:16:36,885 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:31 syncCount: 1 2013-12-09 21:16:36,885 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 97, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:31} 2013-12-09 21:16:36,886 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:31 syncCount: 2 2013-12-09 21:16:36,940 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 97} 2013-12-09 21:16:36,940 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 37, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:33, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620140842, arrival = 0, brokerInTime = 1386620140844, brokerOutTime = 1386620193719, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 31} 2013-12-09 21:16:36,942 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 31 2013-12-09 21:16:36,942 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 98, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:32} 2013-12-09 21:16:36,942 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:32 2013-12-09 21:16:36,943 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:32 2013-12-09 21:16:36,943 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 99, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:34, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:34, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:32, messageCount = 1, poisonCause = null} 2013-12-09 21:16:36,943 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:32 syncCount: 1 2013-12-09 21:16:36,944 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 100, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:32} 2013-12-09 21:16:36,944 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:32 syncCount: 2 2013-12-09 21:16:36,998 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 100} 2013-12-09 21:16:36,998 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 38, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:34, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620140901, arrival = 0, brokerInTime = 1386620140903, brokerOutTime = 1386620193719, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 32} 2013-12-09 21:16:36,999 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 32 2013-12-09 21:16:36,999 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 101, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:33} 2013-12-09 21:16:37,000 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:33 2013-12-09 21:16:37,000 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:33 2013-12-09 21:16:37,000 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 102, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:35, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:35, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:33, messageCount = 1, poisonCause = null} 2013-12-09 21:16:37,001 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:33 syncCount: 1 2013-12-09 21:16:37,001 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 103, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:33} 2013-12-09 21:16:37,002 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:33 syncCount: 2 2013-12-09 21:16:37,115 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 103} 2013-12-09 21:16:37,116 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 39, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:35, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620140966, arrival = 0, brokerInTime = 1386620140968, brokerOutTime = 1386620193720, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 33} 2013-12-09 21:16:37,117 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 33 2013-12-09 21:16:37,117 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 104, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:34} 2013-12-09 21:16:37,118 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:34 2013-12-09 21:16:37,118 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:34 2013-12-09 21:16:37,118 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 105, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:36, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:36, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:34, messageCount = 1, poisonCause = null} 2013-12-09 21:16:37,119 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:34 syncCount: 1 2013-12-09 21:16:37,119 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 106, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:34} 2013-12-09 21:16:37,120 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:34 syncCount: 2 2013-12-09 21:16:37,173 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 106} 2013-12-09 21:16:37,174 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 40, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:36, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620141034, arrival = 0, brokerInTime = 1386620141036, brokerOutTime = 1386620193720, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 34} 2013-12-09 21:16:37,175 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 34 2013-12-09 21:16:37,175 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 107, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:35} 2013-12-09 21:16:37,175 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:35 2013-12-09 21:16:37,175 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:35 2013-12-09 21:16:37,176 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 108, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:37, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:37, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:35, messageCount = 1, poisonCause = null} 2013-12-09 21:16:37,176 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:35 syncCount: 1 2013-12-09 21:16:37,177 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 109, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:35} 2013-12-09 21:16:37,177 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:35 syncCount: 2 2013-12-09 21:16:37,231 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 109} 2013-12-09 21:16:37,232 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 41, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:37, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620141092, arrival = 0, brokerInTime = 1386620141094, brokerOutTime = 1386620193720, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 35} 2013-12-09 21:16:37,233 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 35 2013-12-09 21:16:37,233 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 110, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:36} 2013-12-09 21:16:37,233 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:36 2013-12-09 21:16:37,234 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:36 2013-12-09 21:16:37,234 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 111, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:38, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:38, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:36, messageCount = 1, poisonCause = null} 2013-12-09 21:16:37,234 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:36 syncCount: 1 2013-12-09 21:16:37,235 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 112, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:36} 2013-12-09 21:16:37,235 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:36 syncCount: 2 2013-12-09 21:16:37,289 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 112} 2013-12-09 21:16:37,290 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 42, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:38, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620141150, arrival = 0, brokerInTime = 1386620141152, brokerOutTime = 1386620193720, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 36} 2013-12-09 21:16:37,291 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 36 2013-12-09 21:16:37,291 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 113, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:37} 2013-12-09 21:16:37,291 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:37 2013-12-09 21:16:37,292 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:37 2013-12-09 21:16:37,292 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 114, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:39, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:39, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:37, messageCount = 1, poisonCause = null} 2013-12-09 21:16:37,293 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:37 syncCount: 1 2013-12-09 21:16:37,294 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 115, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:37} 2013-12-09 21:16:37,294 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:37 syncCount: 2 2013-12-09 21:16:37,347 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 115} 2013-12-09 21:16:37,348 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 43, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:39, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620141208, arrival = 0, brokerInTime = 1386620141210, brokerOutTime = 1386620193720, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 37} 2013-12-09 21:16:37,349 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 37 2013-12-09 21:16:37,349 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 116, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:38} 2013-12-09 21:16:37,349 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:38 2013-12-09 21:16:37,350 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:38 2013-12-09 21:16:37,350 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 117, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:40, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:40, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:38, messageCount = 1, poisonCause = null} 2013-12-09 21:16:37,351 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:38 syncCount: 1 2013-12-09 21:16:37,351 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 118, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:38} 2013-12-09 21:16:37,352 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:38 syncCount: 2 2013-12-09 21:16:37,405 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 118} 2013-12-09 21:16:37,405 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 44, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:40, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620141267, arrival = 0, brokerInTime = 1386620141269, brokerOutTime = 1386620193720, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 38} 2013-12-09 21:16:37,407 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 38 2013-12-09 21:16:37,407 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 119, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:39} 2013-12-09 21:16:37,407 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:39 2013-12-09 21:16:37,407 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:39 2013-12-09 21:16:37,408 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 120, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:41, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:41, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:39, messageCount = 1, poisonCause = null} 2013-12-09 21:16:37,408 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:39 syncCount: 1 2013-12-09 21:16:37,408 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 121, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:39} 2013-12-09 21:16:37,409 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:39 syncCount: 2 2013-12-09 21:16:37,463 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 121} 2013-12-09 21:16:37,463 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 45, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:41, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620141324, arrival = 0, brokerInTime = 1386620141326, brokerOutTime = 1386620193721, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 39} 2013-12-09 21:16:37,465 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 39 2013-12-09 21:16:37,465 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 122, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:40} 2013-12-09 21:16:37,465 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:40 2013-12-09 21:16:37,465 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:40 2013-12-09 21:16:37,466 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 123, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:42, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:42, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:40, messageCount = 1, poisonCause = null} 2013-12-09 21:16:37,467 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:40 syncCount: 1 2013-12-09 21:16:37,467 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 124, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:40} 2013-12-09 21:16:37,468 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:40 syncCount: 2 2013-12-09 21:16:37,521 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 124} 2013-12-09 21:16:37,521 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 46, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:42, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620141382, arrival = 0, brokerInTime = 1386620141383, brokerOutTime = 1386620193721, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 40} 2013-12-09 21:16:37,523 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 40 2013-12-09 21:16:37,523 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 125, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:41} 2013-12-09 21:16:37,523 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:41 2013-12-09 21:16:37,523 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:41 2013-12-09 21:16:37,524 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 126, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:43, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:43, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:41, messageCount = 1, poisonCause = null} 2013-12-09 21:16:37,524 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:41 syncCount: 1 2013-12-09 21:16:37,524 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 127, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:41} 2013-12-09 21:16:37,525 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:41 syncCount: 2 2013-12-09 21:16:37,579 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 127} 2013-12-09 21:16:37,580 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 47, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:43, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620141440, arrival = 0, brokerInTime = 1386620141442, brokerOutTime = 1386620193721, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 41} 2013-12-09 21:16:37,581 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 41 2013-12-09 21:16:37,581 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 128, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:42} 2013-12-09 21:16:37,581 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:42 2013-12-09 21:16:37,582 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:42 2013-12-09 21:16:37,582 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 129, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:44, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:44, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:42, messageCount = 1, poisonCause = null} 2013-12-09 21:16:37,583 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:42 syncCount: 1 2013-12-09 21:16:37,583 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 130, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:42} 2013-12-09 21:16:37,584 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:42 syncCount: 2 2013-12-09 21:16:37,637 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 130} 2013-12-09 21:16:37,637 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 48, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:44, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620141499, arrival = 0, brokerInTime = 1386620141500, brokerOutTime = 1386620193721, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 42} 2013-12-09 21:16:37,638 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 42 2013-12-09 21:16:37,639 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 131, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:43} 2013-12-09 21:16:37,639 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:43 2013-12-09 21:16:37,639 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:43 2013-12-09 21:16:37,640 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 132, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:45, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:45, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:43, messageCount = 1, poisonCause = null} 2013-12-09 21:16:37,640 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:43 syncCount: 1 2013-12-09 21:16:37,640 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 133, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:43} 2013-12-09 21:16:37,641 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:43 syncCount: 2 2013-12-09 21:16:37,695 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 133} 2013-12-09 21:16:37,695 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 49, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:45, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620141614, arrival = 0, brokerInTime = 1386620141616, brokerOutTime = 1386620193721, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 43} 2013-12-09 21:16:37,696 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 43 2013-12-09 21:16:37,697 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 134, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:44} 2013-12-09 21:16:37,697 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:44 2013-12-09 21:16:37,697 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:44 2013-12-09 21:16:37,698 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 135, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:46, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:46, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:44, messageCount = 1, poisonCause = null} 2013-12-09 21:16:37,699 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:44 syncCount: 1 2013-12-09 21:16:37,699 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 136, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:44} 2013-12-09 21:16:37,700 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:44 syncCount: 2 2013-12-09 21:16:37,753 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 136} 2013-12-09 21:16:37,753 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 50, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:46, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620141672, arrival = 0, brokerInTime = 1386620141674, brokerOutTime = 1386620193722, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 44} 2013-12-09 21:16:37,755 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 44 2013-12-09 21:16:37,755 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 137, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:45} 2013-12-09 21:16:37,755 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:45 2013-12-09 21:16:37,755 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:45 2013-12-09 21:16:37,756 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 138, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:47, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:47, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:45, messageCount = 1, poisonCause = null} 2013-12-09 21:16:37,756 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:45 syncCount: 1 2013-12-09 21:16:37,757 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 139, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:45} 2013-12-09 21:16:37,757 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:45 syncCount: 2 2013-12-09 21:16:37,811 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 139} 2013-12-09 21:16:37,811 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 51, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:47, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620141730, arrival = 0, brokerInTime = 1386620141732, brokerOutTime = 1386620193722, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 45} 2013-12-09 21:16:37,813 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 45 2013-12-09 21:16:37,813 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 140, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:46} 2013-12-09 21:16:37,813 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:46 2013-12-09 21:16:37,813 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:46 2013-12-09 21:16:37,814 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 141, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:48, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:48, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:46, messageCount = 1, poisonCause = null} 2013-12-09 21:16:37,814 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:46 syncCount: 1 2013-12-09 21:16:37,815 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 142, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:46} 2013-12-09 21:16:37,815 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:46 syncCount: 2 2013-12-09 21:16:37,869 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 142} 2013-12-09 21:16:37,869 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 52, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:48, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620141788, arrival = 0, brokerInTime = 1386620141790, brokerOutTime = 1386620193722, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 46} 2013-12-09 21:16:37,872 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 46 2013-12-09 21:16:37,872 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 143, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:47} 2013-12-09 21:16:37,873 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:47 2013-12-09 21:16:37,873 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:47 2013-12-09 21:16:37,874 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 144, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:49, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:49, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:47, messageCount = 1, poisonCause = null} 2013-12-09 21:16:37,874 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:47 syncCount: 1 2013-12-09 21:16:37,875 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 145, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:47} 2013-12-09 21:16:37,875 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:47 syncCount: 2 2013-12-09 21:16:37,927 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 145} 2013-12-09 21:16:37,927 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 53, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:49, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620141846, arrival = 0, brokerInTime = 1386620141847, brokerOutTime = 1386620193722, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 47} 2013-12-09 21:16:37,929 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 47 2013-12-09 21:16:37,929 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 146, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:48} 2013-12-09 21:16:37,930 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:48 2013-12-09 21:16:37,930 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:48 2013-12-09 21:16:37,930 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 147, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:50, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:50, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:48, messageCount = 1, poisonCause = null} 2013-12-09 21:16:37,931 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:48 syncCount: 1 2013-12-09 21:16:37,931 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 148, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:48} 2013-12-09 21:16:37,932 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:48 syncCount: 2 2013-12-09 21:16:37,985 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 148} 2013-12-09 21:16:37,985 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 54, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:50, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620141904, arrival = 0, brokerInTime = 1386620141906, brokerOutTime = 1386620193722, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 48} 2013-12-09 21:16:37,987 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 48 2013-12-09 21:16:37,987 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 149, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:49} 2013-12-09 21:16:37,987 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:49 2013-12-09 21:16:37,988 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:49 2013-12-09 21:16:37,988 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 150, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:51, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:51, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:49, messageCount = 1, poisonCause = null} 2013-12-09 21:16:37,989 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:49 syncCount: 1 2013-12-09 21:16:37,989 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 151, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:49} 2013-12-09 21:16:37,990 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:49 syncCount: 2 2013-12-09 21:16:38,043 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 151} 2013-12-09 21:16:38,043 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 55, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:51, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620141962, arrival = 0, brokerInTime = 1386620141963, brokerOutTime = 1386620193722, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 49} 2013-12-09 21:16:38,045 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 49 2013-12-09 21:16:38,045 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 152, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:50} 2013-12-09 21:16:38,045 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:50 2013-12-09 21:16:38,045 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:50 2013-12-09 21:16:38,046 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 153, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:52, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:52, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:50, messageCount = 1, poisonCause = null} 2013-12-09 21:16:38,046 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:50 syncCount: 1 2013-12-09 21:16:38,047 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 154, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:50} 2013-12-09 21:16:38,047 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:50 syncCount: 2 2013-12-09 21:16:38,101 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 154} 2013-12-09 21:16:38,102 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 56, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:52, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620142020, arrival = 0, brokerInTime = 1386620142022, brokerOutTime = 1386620193722, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 50} 2013-12-09 21:16:38,103 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 50 2013-12-09 21:16:38,104 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 155, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:51} 2013-12-09 21:16:38,104 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:51 2013-12-09 21:16:38,105 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:51 2013-12-09 21:16:38,105 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 156, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:53, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:53, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:51, messageCount = 1, poisonCause = null} 2013-12-09 21:16:38,107 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:51 syncCount: 1 2013-12-09 21:16:38,107 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 157, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:51} 2013-12-09 21:16:38,108 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:51 syncCount: 2 2013-12-09 21:16:38,159 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 157} 2013-12-09 21:16:38,159 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 57, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:53, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620142078, arrival = 0, brokerInTime = 1386620142080, brokerOutTime = 1386620193723, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 51} 2013-12-09 21:16:38,161 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 51 2013-12-09 21:16:38,161 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 158, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:52} 2013-12-09 21:16:38,161 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:52 2013-12-09 21:16:38,162 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:52 2013-12-09 21:16:38,162 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 159, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:54, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:54, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:52, messageCount = 1, poisonCause = null} 2013-12-09 21:16:38,163 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:52 syncCount: 1 2013-12-09 21:16:38,163 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 160, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:52} 2013-12-09 21:16:38,164 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:52 syncCount: 2 2013-12-09 21:16:38,217 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 160} 2013-12-09 21:16:38,218 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 58, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:54, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620142136, arrival = 0, brokerInTime = 1386620142137, brokerOutTime = 1386620193723, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 52} 2013-12-09 21:16:38,220 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 52 2013-12-09 21:16:38,220 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 161, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:53} 2013-12-09 21:16:38,221 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:53 2013-12-09 21:16:38,221 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:53 2013-12-09 21:16:38,222 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 162, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:55, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:55, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:53, messageCount = 1, poisonCause = null} 2013-12-09 21:16:38,223 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:53 syncCount: 1 2013-12-09 21:16:38,223 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 163, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:53} 2013-12-09 21:16:38,224 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:53 syncCount: 2 2013-12-09 21:16:38,275 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 163} 2013-12-09 21:16:38,276 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 59, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:55, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620142194, arrival = 0, brokerInTime = 1386620142195, brokerOutTime = 1386620193723, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 53} 2013-12-09 21:16:38,277 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 53 2013-12-09 21:16:38,278 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 164, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:54} 2013-12-09 21:16:38,278 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:54 2013-12-09 21:16:38,278 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:54 2013-12-09 21:16:38,279 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 165, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:56, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:56, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:54, messageCount = 1, poisonCause = null} 2013-12-09 21:16:38,280 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:54 syncCount: 1 2013-12-09 21:16:38,280 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 166, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:54} 2013-12-09 21:16:38,281 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:54 syncCount: 2 2013-12-09 21:16:38,333 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 166} 2013-12-09 21:16:38,333 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 60, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:56, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620142252, arrival = 0, brokerInTime = 1386620142253, brokerOutTime = 1386620193723, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 54} 2013-12-09 21:16:38,336 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 54 2013-12-09 21:16:38,336 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 167, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:55} 2013-12-09 21:16:38,337 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:55 2013-12-09 21:16:38,338 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:55 2013-12-09 21:16:38,338 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 168, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:57, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:57, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:55, messageCount = 1, poisonCause = null} 2013-12-09 21:16:38,339 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:55 syncCount: 1 2013-12-09 21:16:38,340 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 169, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:55} 2013-12-09 21:16:38,340 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:55 syncCount: 2 2013-12-09 21:16:38,391 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 169} 2013-12-09 21:16:38,392 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 61, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:57, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620142310, arrival = 0, brokerInTime = 1386620142312, brokerOutTime = 1386620193723, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 55} 2013-12-09 21:16:38,394 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 55 2013-12-09 21:16:38,394 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 170, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:56} 2013-12-09 21:16:38,395 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:56 2013-12-09 21:16:38,395 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:56 2013-12-09 21:16:38,396 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 171, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:58, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:58, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:56, messageCount = 1, poisonCause = null} 2013-12-09 21:16:38,397 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:56 syncCount: 1 2013-12-09 21:16:38,397 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 172, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:56} 2013-12-09 21:16:38,398 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:56 syncCount: 2 2013-12-09 21:16:38,449 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 172} 2013-12-09 21:16:38,450 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 62, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:58, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620142368, arrival = 0, brokerInTime = 1386620142370, brokerOutTime = 1386620193723, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 56} 2013-12-09 21:16:38,451 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 56 2013-12-09 21:16:38,451 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 173, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:57} 2013-12-09 21:16:38,452 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:57 2013-12-09 21:16:38,452 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:57 2013-12-09 21:16:38,452 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 174, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:59, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:59, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:57, messageCount = 1, poisonCause = null} 2013-12-09 21:16:38,453 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:57 syncCount: 1 2013-12-09 21:16:38,453 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 175, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:57} 2013-12-09 21:16:38,454 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:57 syncCount: 2 2013-12-09 21:16:38,507 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 175} 2013-12-09 21:16:38,507 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 63, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:59, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620142426, arrival = 0, brokerInTime = 1386620142428, brokerOutTime = 1386620193724, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 57} 2013-12-09 21:16:38,509 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 57 2013-12-09 21:16:38,509 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 176, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:58} 2013-12-09 21:16:38,509 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:58 2013-12-09 21:16:38,510 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:58 2013-12-09 21:16:38,510 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 177, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:60, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:60, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:58, messageCount = 1, poisonCause = null} 2013-12-09 21:16:38,511 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:58 syncCount: 1 2013-12-09 21:16:38,511 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 178, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:58} 2013-12-09 21:16:38,511 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:58 syncCount: 2 2013-12-09 21:16:38,617 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 178} 2013-12-09 21:16:38,617 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 64, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:60, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620142484, arrival = 0, brokerInTime = 1386620142486, brokerOutTime = 1386620193724, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 58} 2013-12-09 21:16:38,619 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 58 2013-12-09 21:16:38,620 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 179, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:59} 2013-12-09 21:16:38,620 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:59 2013-12-09 21:16:38,621 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:59 2013-12-09 21:16:38,621 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 180, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:61, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:61, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:59, messageCount = 1, poisonCause = null} 2013-12-09 21:16:38,622 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:59 syncCount: 1 2013-12-09 21:16:38,623 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 181, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:59} 2013-12-09 21:16:38,623 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:59 syncCount: 2 2013-12-09 21:16:38,697 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 181} 2013-12-09 21:16:38,698 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 65, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:61, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620142542, arrival = 0, brokerInTime = 1386620142544, brokerOutTime = 1386620193724, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 59} 2013-12-09 21:16:38,700 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 59 2013-12-09 21:16:38,700 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 182, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:60} 2013-12-09 21:16:38,701 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:60 2013-12-09 21:16:38,701 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:60 2013-12-09 21:16:38,702 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 183, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:62, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:62, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:60, messageCount = 1, poisonCause = null} 2013-12-09 21:16:38,703 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:60 syncCount: 1 2013-12-09 21:16:38,703 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 184, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:60} 2013-12-09 21:16:38,703 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:60 syncCount: 2 2013-12-09 21:16:38,780 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 184} 2013-12-09 21:16:38,780 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 66, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:62, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620142600, arrival = 0, brokerInTime = 1386620142603, brokerOutTime = 1386620193724, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 60} 2013-12-09 21:16:38,782 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 60 2013-12-09 21:16:38,782 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 185, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:61} 2013-12-09 21:16:38,782 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:61 2013-12-09 21:16:38,782 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:61 2013-12-09 21:16:38,783 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 186, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:63, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:63, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:61, messageCount = 1, poisonCause = null} 2013-12-09 21:16:38,783 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:61 syncCount: 1 2013-12-09 21:16:38,784 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 187, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:61} 2013-12-09 21:16:38,784 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:61 syncCount: 2 2013-12-09 21:16:38,838 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 187} 2013-12-09 21:16:38,838 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 67, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:63, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620142658, arrival = 0, brokerInTime = 1386620142660, brokerOutTime = 1386620193724, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 61} 2013-12-09 21:16:38,839 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 61 2013-12-09 21:16:38,840 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 188, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:62} 2013-12-09 21:16:38,840 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:62 2013-12-09 21:16:38,840 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:62 2013-12-09 21:16:38,840 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 189, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:64, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:64, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:62, messageCount = 1, poisonCause = null} 2013-12-09 21:16:38,841 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:62 syncCount: 1 2013-12-09 21:16:38,841 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 190, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:62} 2013-12-09 21:16:38,842 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:62 syncCount: 2 2013-12-09 21:16:38,896 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 190} 2013-12-09 21:16:38,896 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 68, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:64, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620142716, arrival = 0, brokerInTime = 1386620142717, brokerOutTime = 1386620193724, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 62} 2013-12-09 21:16:38,898 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 62 2013-12-09 21:16:38,898 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 191, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:63} 2013-12-09 21:16:38,899 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:63 2013-12-09 21:16:38,900 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:63 2013-12-09 21:16:38,900 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 192, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:65, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:65, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:63, messageCount = 1, poisonCause = null} 2013-12-09 21:16:38,902 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:63 syncCount: 1 2013-12-09 21:16:38,902 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 193, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:63} 2013-12-09 21:16:38,903 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:63 syncCount: 2 2013-12-09 21:16:38,962 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 193} 2013-12-09 21:16:38,963 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 69, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:65, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620142774, arrival = 0, brokerInTime = 1386620142776, brokerOutTime = 1386620193725, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 63} 2013-12-09 21:16:38,964 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 63 2013-12-09 21:16:38,964 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 194, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:64} 2013-12-09 21:16:38,965 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:64 2013-12-09 21:16:38,965 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:64 2013-12-09 21:16:38,965 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 195, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:66, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:66, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:64, messageCount = 1, poisonCause = null} 2013-12-09 21:16:38,966 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:64 syncCount: 1 2013-12-09 21:16:38,966 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 196, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:64} 2013-12-09 21:16:38,967 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:64 syncCount: 2 2013-12-09 21:16:39,028 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 196} 2013-12-09 21:16:39,029 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 70, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:66, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620142832, arrival = 0, brokerInTime = 1386620142833, brokerOutTime = 1386620193725, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 64} 2013-12-09 21:16:39,030 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 64 2013-12-09 21:16:39,030 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 197, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:65} 2013-12-09 21:16:39,031 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:65 2013-12-09 21:16:39,031 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:65 2013-12-09 21:16:39,031 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 198, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:67, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:67, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:65, messageCount = 1, poisonCause = null} 2013-12-09 21:16:39,032 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:65 syncCount: 1 2013-12-09 21:16:39,032 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 199, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:65} 2013-12-09 21:16:39,033 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:65 syncCount: 2 2013-12-09 21:16:39,095 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 199} 2013-12-09 21:16:39,095 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 71, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:67, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620142898, arrival = 0, brokerInTime = 1386620142900, brokerOutTime = 1386620193725, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 65} 2013-12-09 21:16:39,096 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 65 2013-12-09 21:16:39,097 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 200, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:66} 2013-12-09 21:16:39,097 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:66 2013-12-09 21:16:39,097 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:66 2013-12-09 21:16:39,097 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 201, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:68, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:68, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:66, messageCount = 1, poisonCause = null} 2013-12-09 21:16:39,099 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:66 syncCount: 1 2013-12-09 21:16:39,099 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 202, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:66} 2013-12-09 21:16:39,100 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:66 syncCount: 2 2013-12-09 21:16:39,161 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 202} 2013-12-09 21:16:39,161 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 72, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:68, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620142964, arrival = 0, brokerInTime = 1386620142966, brokerOutTime = 1386620193725, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 66} 2013-12-09 21:16:39,162 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 66 2013-12-09 21:16:39,163 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 203, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:67} 2013-12-09 21:16:39,163 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:67 2013-12-09 21:16:39,163 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:67 2013-12-09 21:16:39,164 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 204, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:69, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:69, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:67, messageCount = 1, poisonCause = null} 2013-12-09 21:16:39,164 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:67 syncCount: 1 2013-12-09 21:16:39,165 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 205, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:67} 2013-12-09 21:16:39,165 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:67 syncCount: 2 2013-12-09 21:16:39,229 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 205} 2013-12-09 21:16:39,229 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 73, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:69, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620143022, arrival = 0, brokerInTime = 1386620143024, brokerOutTime = 1386620193725, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 67} 2013-12-09 21:16:39,230 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 67 2013-12-09 21:16:39,230 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 206, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:68} 2013-12-09 21:16:39,231 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:68 2013-12-09 21:16:39,231 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:68 2013-12-09 21:16:39,231 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 207, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:70, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:70, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:68, messageCount = 1, poisonCause = null} 2013-12-09 21:16:39,232 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:68 syncCount: 1 2013-12-09 21:16:39,232 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 208, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:68} 2013-12-09 21:16:39,233 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:68 syncCount: 2 2013-12-09 21:16:39,287 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 208} 2013-12-09 21:16:39,287 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 74, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:70, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620143090, arrival = 0, brokerInTime = 1386620143092, brokerOutTime = 1386620193725, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 68} 2013-12-09 21:16:39,288 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 68 2013-12-09 21:16:39,288 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 209, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:69} 2013-12-09 21:16:39,289 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:69 2013-12-09 21:16:39,289 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:69 2013-12-09 21:16:39,289 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 210, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:71, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:71, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:69, messageCount = 1, poisonCause = null} 2013-12-09 21:16:39,290 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:69 syncCount: 1 2013-12-09 21:16:39,290 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 211, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:69} 2013-12-09 21:16:39,291 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:69 syncCount: 2 2013-12-09 21:16:39,345 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 211} 2013-12-09 21:16:39,345 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 75, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:71, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620143148, arrival = 0, brokerInTime = 1386620143150, brokerOutTime = 1386620193726, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 69} 2013-12-09 21:16:39,346 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 69 2013-12-09 21:16:39,346 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 212, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:70} 2013-12-09 21:16:39,347 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:70 2013-12-09 21:16:39,347 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:70 2013-12-09 21:16:39,347 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 213, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:72, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:72, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:70, messageCount = 1, poisonCause = null} 2013-12-09 21:16:39,348 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:70 syncCount: 1 2013-12-09 21:16:39,348 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 214, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:70} 2013-12-09 21:16:39,348 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:70 syncCount: 2 2013-12-09 21:16:39,403 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 214} 2013-12-09 21:16:39,403 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 76, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:72, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620143206, arrival = 0, brokerInTime = 1386620143207, brokerOutTime = 1386620193726, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 70} 2013-12-09 21:16:39,404 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 70 2013-12-09 21:16:39,404 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 215, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:71} 2013-12-09 21:16:39,405 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:71 2013-12-09 21:16:39,405 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:71 2013-12-09 21:16:39,406 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 216, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:73, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:73, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:71, messageCount = 1, poisonCause = null} 2013-12-09 21:16:39,406 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:71 syncCount: 1 2013-12-09 21:16:39,406 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 217, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:71} 2013-12-09 21:16:39,407 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:71 syncCount: 2 2013-12-09 21:16:39,461 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 217} 2013-12-09 21:16:39,461 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 77, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:73, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620143264, arrival = 0, brokerInTime = 1386620143266, brokerOutTime = 1386620193726, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 71} 2013-12-09 21:16:39,462 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 71 2013-12-09 21:16:39,462 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 218, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:72} 2013-12-09 21:16:39,463 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:72 2013-12-09 21:16:39,463 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:72 2013-12-09 21:16:39,463 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 219, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:74, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:74, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:72, messageCount = 1, poisonCause = null} 2013-12-09 21:16:39,464 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:72 syncCount: 1 2013-12-09 21:16:39,464 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 220, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:72} 2013-12-09 21:16:39,464 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:72 syncCount: 2 2013-12-09 21:16:39,519 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 220} 2013-12-09 21:16:39,519 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 78, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:74, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620143322, arrival = 0, brokerInTime = 1386620143323, brokerOutTime = 1386620193726, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 72} 2013-12-09 21:16:39,521 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 72 2013-12-09 21:16:39,521 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 221, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:73} 2013-12-09 21:16:39,522 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:73 2013-12-09 21:16:39,522 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:73 2013-12-09 21:16:39,523 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 222, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:75, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:75, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:73, messageCount = 1, poisonCause = null} 2013-12-09 21:16:39,524 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:73 syncCount: 1 2013-12-09 21:16:39,524 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 223, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:73} 2013-12-09 21:16:39,524 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:73 syncCount: 2 2013-12-09 21:16:39,577 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 223} 2013-12-09 21:16:39,577 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 79, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:75, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620143380, arrival = 0, brokerInTime = 1386620143381, brokerOutTime = 1386620193726, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 73} 2013-12-09 21:16:39,578 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 73 2013-12-09 21:16:39,578 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 224, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:74} 2013-12-09 21:16:39,579 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:74 2013-12-09 21:16:39,579 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:74 2013-12-09 21:16:39,579 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 225, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:76, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:76, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:74, messageCount = 1, poisonCause = null} 2013-12-09 21:16:39,580 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:74 syncCount: 1 2013-12-09 21:16:39,580 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 226, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:74} 2013-12-09 21:16:39,580 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:74 syncCount: 2 2013-12-09 21:16:39,635 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 226} 2013-12-09 21:16:39,635 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 80, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:76, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620143438, arrival = 0, brokerInTime = 1386620143440, brokerOutTime = 1386620193726, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 74} 2013-12-09 21:16:39,636 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 74 2013-12-09 21:16:39,636 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 227, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:75} 2013-12-09 21:16:39,637 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:75 2013-12-09 21:16:39,637 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:75 2013-12-09 21:16:39,637 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 228, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:77, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:77, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:75, messageCount = 1, poisonCause = null} 2013-12-09 21:16:39,638 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:75 syncCount: 1 2013-12-09 21:16:39,638 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 229, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:75} 2013-12-09 21:16:39,638 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:75 syncCount: 2 2013-12-09 21:16:39,693 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 229} 2013-12-09 21:16:39,693 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 81, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:77, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620143496, arrival = 0, brokerInTime = 1386620143497, brokerOutTime = 1386620193727, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 75} 2013-12-09 21:16:39,694 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 75 2013-12-09 21:16:39,694 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 230, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:76} 2013-12-09 21:16:39,695 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:76 2013-12-09 21:16:39,695 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:76 2013-12-09 21:16:39,695 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 231, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:78, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:78, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:76, messageCount = 1, poisonCause = null} 2013-12-09 21:16:39,696 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:76 syncCount: 1 2013-12-09 21:16:39,696 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 232, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:76} 2013-12-09 21:16:39,697 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:76 syncCount: 2 2013-12-09 21:16:39,750 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 232} 2013-12-09 21:16:39,751 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 82, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:78, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620143554, arrival = 0, brokerInTime = 1386620143556, brokerOutTime = 1386620193727, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 76} 2013-12-09 21:16:39,752 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 76 2013-12-09 21:16:39,752 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 233, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:77} 2013-12-09 21:16:39,753 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:77 2013-12-09 21:16:39,753 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:77 2013-12-09 21:16:39,753 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 234, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:79, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:79, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:77, messageCount = 1, poisonCause = null} 2013-12-09 21:16:39,754 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:77 syncCount: 1 2013-12-09 21:16:39,754 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 235, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:77} 2013-12-09 21:16:39,755 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:77 syncCount: 2 2013-12-09 21:16:39,808 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 235} 2013-12-09 21:16:39,809 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 83, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:79, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620143612, arrival = 0, brokerInTime = 1386620143613, brokerOutTime = 1386620193727, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 77} 2013-12-09 21:16:39,810 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 77 2013-12-09 21:16:39,810 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 236, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:78} 2013-12-09 21:16:39,811 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:78 2013-12-09 21:16:39,811 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:78 2013-12-09 21:16:39,811 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 237, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:80, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:80, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:78, messageCount = 1, poisonCause = null} 2013-12-09 21:16:39,812 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:78 syncCount: 1 2013-12-09 21:16:39,812 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 238, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:78} 2013-12-09 21:16:39,812 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:78 syncCount: 2 2013-12-09 21:16:39,867 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 238} 2013-12-09 21:16:39,867 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 84, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:80, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620143670, arrival = 0, brokerInTime = 1386620143671, brokerOutTime = 1386620193727, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 78} 2013-12-09 21:16:39,868 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 78 2013-12-09 21:16:39,869 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 239, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:79} 2013-12-09 21:16:39,869 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:79 2013-12-09 21:16:39,869 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:79 2013-12-09 21:16:39,869 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 240, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:81, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:81, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:79, messageCount = 1, poisonCause = null} 2013-12-09 21:16:39,870 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:79 syncCount: 1 2013-12-09 21:16:39,870 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 241, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:79} 2013-12-09 21:16:39,871 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:79 syncCount: 2 2013-12-09 21:16:39,925 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 241} 2013-12-09 21:16:39,925 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 85, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:81, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620143728, arrival = 0, brokerInTime = 1386620143730, brokerOutTime = 1386620193727, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 79} 2013-12-09 21:16:39,926 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 79 2013-12-09 21:16:39,927 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 242, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:80} 2013-12-09 21:16:39,928 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:80 2013-12-09 21:16:39,928 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:80 2013-12-09 21:16:39,928 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 243, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:82, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:82, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:80, messageCount = 1, poisonCause = null} 2013-12-09 21:16:39,929 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:80 syncCount: 1 2013-12-09 21:16:39,930 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 244, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:80} 2013-12-09 21:16:39,930 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:80 syncCount: 2 2013-12-09 21:16:39,983 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 244} 2013-12-09 21:16:39,983 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 86, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:82, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620143787, arrival = 0, brokerInTime = 1386620143789, brokerOutTime = 1386620193727, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 80} 2013-12-09 21:16:39,985 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 80 2013-12-09 21:16:39,985 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 245, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:81} 2013-12-09 21:16:39,986 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:81 2013-12-09 21:16:39,986 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:81 2013-12-09 21:16:39,986 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 246, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:83, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:83, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:81, messageCount = 1, poisonCause = null} 2013-12-09 21:16:39,987 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:81 syncCount: 1 2013-12-09 21:16:39,987 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 247, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:81} 2013-12-09 21:16:39,988 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:81 syncCount: 2 2013-12-09 21:16:40,040 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 247} 2013-12-09 21:16:40,041 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 87, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:83, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620143844, arrival = 0, brokerInTime = 1386620143845, brokerOutTime = 1386620193728, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 81} 2013-12-09 21:16:40,042 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 81 2013-12-09 21:16:40,043 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 248, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:82} 2013-12-09 21:16:40,043 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:82 2013-12-09 21:16:40,043 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:82 2013-12-09 21:16:40,043 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 249, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:84, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:84, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:82, messageCount = 1, poisonCause = null} 2013-12-09 21:16:40,044 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:82 syncCount: 1 2013-12-09 21:16:40,044 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 250, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:82} 2013-12-09 21:16:40,045 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:82 syncCount: 2 2013-12-09 21:16:40,098 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 250} 2013-12-09 21:16:40,099 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 88, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:84, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620143902, arrival = 0, brokerInTime = 1386620143904, brokerOutTime = 1386620193728, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 82} 2013-12-09 21:16:40,100 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 82 2013-12-09 21:16:40,101 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 251, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:83} 2013-12-09 21:16:40,101 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:83 2013-12-09 21:16:40,101 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:83 2013-12-09 21:16:40,102 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 252, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:85, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:85, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:83, messageCount = 1, poisonCause = null} 2013-12-09 21:16:40,102 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:83 syncCount: 1 2013-12-09 21:16:40,103 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 253, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:83} 2013-12-09 21:16:40,103 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:83 syncCount: 2 2013-12-09 21:16:40,157 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 253} 2013-12-09 21:16:40,157 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 89, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:85, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620143960, arrival = 0, brokerInTime = 1386620143961, brokerOutTime = 1386620193728, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 83} 2013-12-09 21:16:40,159 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 83 2013-12-09 21:16:40,159 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 254, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:84} 2013-12-09 21:16:40,160 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:84 2013-12-09 21:16:40,160 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:84 2013-12-09 21:16:40,160 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 255, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:86, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:86, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:84, messageCount = 1, poisonCause = null} 2013-12-09 21:16:40,161 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:84 syncCount: 1 2013-12-09 21:16:40,162 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 256, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:84} 2013-12-09 21:16:40,162 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:84 syncCount: 2 2013-12-09 21:16:40,214 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 256} 2013-12-09 21:16:40,215 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 90, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:86, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620144018, arrival = 0, brokerInTime = 1386620144020, brokerOutTime = 1386620193728, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 84} 2013-12-09 21:16:40,216 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 84 2013-12-09 21:16:40,216 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 257, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:85} 2013-12-09 21:16:40,217 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:85 2013-12-09 21:16:40,217 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:85 2013-12-09 21:16:40,218 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 258, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:87, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:87, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:85, messageCount = 1, poisonCause = null} 2013-12-09 21:16:40,218 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:85 syncCount: 1 2013-12-09 21:16:40,219 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 259, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:85} 2013-12-09 21:16:40,219 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:85 syncCount: 2 2013-12-09 21:16:40,272 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 259} 2013-12-09 21:16:40,273 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 91, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:87, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620144076, arrival = 0, brokerInTime = 1386620144077, brokerOutTime = 1386620193728, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 85} 2013-12-09 21:16:40,274 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 85 2013-12-09 21:16:40,274 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 260, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:86} 2013-12-09 21:16:40,275 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:86 2013-12-09 21:16:40,275 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:86 2013-12-09 21:16:40,275 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 261, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:88, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:88, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:86, messageCount = 1, poisonCause = null} 2013-12-09 21:16:40,276 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:86 syncCount: 1 2013-12-09 21:16:40,276 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 262, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:86} 2013-12-09 21:16:40,276 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:86 syncCount: 2 2013-12-09 21:16:40,330 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 262} 2013-12-09 21:16:40,331 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 92, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:88, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620144134, arrival = 0, brokerInTime = 1386620144136, brokerOutTime = 1386620193728, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 86} 2013-12-09 21:16:40,332 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 86 2013-12-09 21:16:40,332 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 263, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:87} 2013-12-09 21:16:40,332 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:87 2013-12-09 21:16:40,333 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:87 2013-12-09 21:16:40,333 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 264, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:89, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:89, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:87, messageCount = 1, poisonCause = null} 2013-12-09 21:16:40,334 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:87 syncCount: 1 2013-12-09 21:16:40,334 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 265, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:87} 2013-12-09 21:16:40,334 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:87 syncCount: 2 2013-12-09 21:16:40,388 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 265} 2013-12-09 21:16:40,389 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 93, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:89, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620144192, arrival = 0, brokerInTime = 1386620144194, brokerOutTime = 1386620193729, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 87} 2013-12-09 21:16:40,390 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 87 2013-12-09 21:16:40,390 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 266, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:88} 2013-12-09 21:16:40,391 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:88 2013-12-09 21:16:40,391 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:88 2013-12-09 21:16:40,391 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 267, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:90, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:90, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:88, messageCount = 1, poisonCause = null} 2013-12-09 21:16:40,392 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:88 syncCount: 1 2013-12-09 21:16:40,392 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 268, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:88} 2013-12-09 21:16:40,392 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:88 syncCount: 2 2013-12-09 21:16:40,446 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 268} 2013-12-09 21:16:40,447 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 94, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:90, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620144250, arrival = 0, brokerInTime = 1386620144252, brokerOutTime = 1386620193729, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 88} 2013-12-09 21:16:40,448 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 88 2013-12-09 21:16:40,448 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 269, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:89} 2013-12-09 21:16:40,448 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:89 2013-12-09 21:16:40,449 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:89 2013-12-09 21:16:40,449 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 270, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:91, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:91, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:89, messageCount = 1, poisonCause = null} 2013-12-09 21:16:40,450 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:89 syncCount: 1 2013-12-09 21:16:40,450 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 271, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:89} 2013-12-09 21:16:40,450 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:89 syncCount: 2 2013-12-09 21:16:40,504 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 271} 2013-12-09 21:16:40,505 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 95, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:91, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620144309, arrival = 0, brokerInTime = 1386620144311, brokerOutTime = 1386620193729, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 89} 2013-12-09 21:16:40,506 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 89 2013-12-09 21:16:40,506 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 272, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:90} 2013-12-09 21:16:40,507 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:90 2013-12-09 21:16:40,507 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:90 2013-12-09 21:16:40,507 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 273, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:92, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:92, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:90, messageCount = 1, poisonCause = null} 2013-12-09 21:16:40,508 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:90 syncCount: 1 2013-12-09 21:16:40,508 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 274, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:90} 2013-12-09 21:16:40,508 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:90 syncCount: 2 2013-12-09 21:16:40,562 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 274} 2013-12-09 21:16:40,563 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 96, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:92, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620144366, arrival = 0, brokerInTime = 1386620144367, brokerOutTime = 1386620193729, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 90} 2013-12-09 21:16:40,564 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 90 2013-12-09 21:16:40,564 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 275, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:91} 2013-12-09 21:16:40,564 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:91 2013-12-09 21:16:40,565 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:91 2013-12-09 21:16:40,565 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 276, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:93, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:93, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:91, messageCount = 1, poisonCause = null} 2013-12-09 21:16:40,565 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:91 syncCount: 1 2013-12-09 21:16:40,566 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 277, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:91} 2013-12-09 21:16:40,566 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:91 syncCount: 2 2013-12-09 21:16:40,620 [.0.1:58031@1666] DEBUG Usage - default:memory:queue://test_queue_z0:memory: usage change from: 5% of available memory, to: 4% of available memory 2013-12-09 21:16:40,621 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 277} 2013-12-09 21:16:40,621 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 97, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:93, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620144424, arrival = 0, brokerInTime = 1386620144425, brokerOutTime = 1386620193729, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 91} 2013-12-09 21:16:40,622 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 91 2013-12-09 21:16:40,622 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 278, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:92} 2013-12-09 21:16:40,623 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:92 2013-12-09 21:16:40,623 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:92 2013-12-09 21:16:40,623 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 279, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:94, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:94, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:92, messageCount = 1, poisonCause = null} 2013-12-09 21:16:40,624 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:92 syncCount: 1 2013-12-09 21:16:40,624 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 280, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:92} 2013-12-09 21:16:40,624 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:92 syncCount: 2 2013-12-09 21:16:40,678 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 280} 2013-12-09 21:16:40,679 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 98, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:94, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620144482, arrival = 0, brokerInTime = 1386620144483, brokerOutTime = 1386620193729, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 92} 2013-12-09 21:16:40,680 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 92 2013-12-09 21:16:40,680 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 281, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:93} 2013-12-09 21:16:40,680 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:93 2013-12-09 21:16:40,680 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:93 2013-12-09 21:16:40,681 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 282, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:95, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:95, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:93, messageCount = 1, poisonCause = null} 2013-12-09 21:16:40,681 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:93 syncCount: 1 2013-12-09 21:16:40,682 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 283, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:93} 2013-12-09 21:16:40,682 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:93 syncCount: 2 2013-12-09 21:16:40,745 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 283} 2013-12-09 21:16:40,745 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 99, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:95, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620144540, arrival = 0, brokerInTime = 1386620144541, brokerOutTime = 1386620193729, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 93} 2013-12-09 21:16:40,746 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 93 2013-12-09 21:16:40,746 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 284, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:94} 2013-12-09 21:16:40,747 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:94 2013-12-09 21:16:40,747 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:94 2013-12-09 21:16:40,747 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 285, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:96, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:96, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:94, messageCount = 1, poisonCause = null} 2013-12-09 21:16:40,748 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:94 syncCount: 1 2013-12-09 21:16:40,748 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 286, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:94} 2013-12-09 21:16:40,748 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:94 syncCount: 2 2013-12-09 21:16:40,852 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 286} 2013-12-09 21:16:40,853 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 100, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:96, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620144598, arrival = 0, brokerInTime = 1386620144599, brokerOutTime = 1386620193730, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 94} 2013-12-09 21:16:40,854 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 94 2013-12-09 21:16:40,854 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 287, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:95} 2013-12-09 21:16:40,855 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:95 2013-12-09 21:16:40,855 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:95 2013-12-09 21:16:40,855 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 288, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:97, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:97, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:95, messageCount = 1, poisonCause = null} 2013-12-09 21:16:40,855 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:95 syncCount: 1 2013-12-09 21:16:40,856 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 289, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:95} 2013-12-09 21:16:40,856 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:95 syncCount: 2 2013-12-09 21:16:40,910 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 289} 2013-12-09 21:16:40,910 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 101, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:97, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620144664, arrival = 0, brokerInTime = 1386620144665, brokerOutTime = 1386620193730, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 95} 2013-12-09 21:16:40,911 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 95 2013-12-09 21:16:40,912 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 290, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:96} 2013-12-09 21:16:40,912 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:96 2013-12-09 21:16:40,912 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:96 2013-12-09 21:16:40,912 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 291, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:98, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:98, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:96, messageCount = 1, poisonCause = null} 2013-12-09 21:16:40,913 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:96 syncCount: 1 2013-12-09 21:16:40,913 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 292, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:96} 2013-12-09 21:16:40,914 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:96 syncCount: 2 2013-12-09 21:16:41,018 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 292} 2013-12-09 21:16:41,019 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 102, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:98, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620144722, arrival = 0, brokerInTime = 1386620144723, brokerOutTime = 1386620193730, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 96} 2013-12-09 21:16:41,020 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 96 2013-12-09 21:16:41,020 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 293, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:97} 2013-12-09 21:16:41,021 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:97 2013-12-09 21:16:41,021 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:97 2013-12-09 21:16:41,021 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 294, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:99, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:99, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:97, messageCount = 1, poisonCause = null} 2013-12-09 21:16:41,022 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:97 syncCount: 1 2013-12-09 21:16:41,022 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 295, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:97} 2013-12-09 21:16:41,023 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:97 syncCount: 2 2013-12-09 21:16:41,076 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 295} 2013-12-09 21:16:41,076 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 103, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:99, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620144830, arrival = 0, brokerInTime = 1386620144831, brokerOutTime = 1386620193730, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 97} 2013-12-09 21:16:41,077 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 97 2013-12-09 21:16:41,078 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 296, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:98} 2013-12-09 21:16:41,078 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:98 2013-12-09 21:16:41,078 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:98 2013-12-09 21:16:41,078 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 297, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:100, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:100, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:98, messageCount = 1, poisonCause = null} 2013-12-09 21:16:41,079 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:98 syncCount: 1 2013-12-09 21:16:41,079 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 298, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:98} 2013-12-09 21:16:41,080 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:98 syncCount: 2 2013-12-09 21:16:41,133 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 298} 2013-12-09 21:16:41,134 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 104, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:100, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620144896, arrival = 0, brokerInTime = 1386620144897, brokerOutTime = 1386620193730, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 98} 2013-12-09 21:16:41,135 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 98 2013-12-09 21:16:41,135 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 299, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:99} 2013-12-09 21:16:41,136 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:99 2013-12-09 21:16:41,136 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:99 2013-12-09 21:16:41,136 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 300, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:101, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:101, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:99, messageCount = 1, poisonCause = null} 2013-12-09 21:16:41,137 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:99 syncCount: 1 2013-12-09 21:16:41,137 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 301, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:99} 2013-12-09 21:16:41,137 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:99 syncCount: 2 2013-12-09 21:16:41,191 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 301} 2013-12-09 21:16:41,192 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 105, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:101, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620145003, arrival = 0, brokerInTime = 1386620145005, brokerOutTime = 1386620193731, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 99} 2013-12-09 21:16:41,193 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 99 2013-12-09 21:16:41,193 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 302, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:100} 2013-12-09 21:16:41,194 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:100 2013-12-09 21:16:41,194 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:100 2013-12-09 21:16:41,194 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 303, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:102, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:102, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:100, messageCount = 1, poisonCause = null} 2013-12-09 21:16:41,195 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:100 syncCount: 1 2013-12-09 21:16:41,195 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 304, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:100} 2013-12-09 21:16:41,195 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:100 syncCount: 2 2013-12-09 21:16:41,250 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 304} 2013-12-09 21:16:41,250 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 106, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:102, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620145070, arrival = 0, brokerInTime = 1386620145072, brokerOutTime = 1386620193731, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 100} 2013-12-09 21:16:41,251 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 100 2013-12-09 21:16:41,251 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 305, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:101} 2013-12-09 21:16:41,252 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:101 2013-12-09 21:16:41,252 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:101 2013-12-09 21:16:41,253 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 306, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:103, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:103, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:101, messageCount = 1, poisonCause = null} 2013-12-09 21:16:41,254 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:101 syncCount: 1 2013-12-09 21:16:41,254 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 307, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:101} 2013-12-09 21:16:41,254 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:101 syncCount: 2 2013-12-09 21:16:41,308 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 307} 2013-12-09 21:16:41,308 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 107, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:103, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620145127, arrival = 0, brokerInTime = 1386620145129, brokerOutTime = 1386620193731, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 101} 2013-12-09 21:16:41,309 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 101 2013-12-09 21:16:41,309 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 308, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:102} 2013-12-09 21:16:41,310 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:102 2013-12-09 21:16:41,310 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:102 2013-12-09 21:16:41,310 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 309, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:104, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:104, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:102, messageCount = 1, poisonCause = null} 2013-12-09 21:16:41,311 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:102 syncCount: 1 2013-12-09 21:16:41,311 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 310, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:102} 2013-12-09 21:16:41,311 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:102 syncCount: 2 2013-12-09 21:16:41,365 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 310} 2013-12-09 21:16:41,366 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 108, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:104, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620145185, arrival = 0, brokerInTime = 1386620145187, brokerOutTime = 1386620193731, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 102} 2013-12-09 21:16:41,367 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 102 2013-12-09 21:16:41,367 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 311, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:103} 2013-12-09 21:16:41,368 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:103 2013-12-09 21:16:41,368 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:103 2013-12-09 21:16:41,368 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 312, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:105, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:105, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:103, messageCount = 1, poisonCause = null} 2013-12-09 21:16:41,369 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:103 syncCount: 1 2013-12-09 21:16:41,369 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 313, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:103} 2013-12-09 21:16:41,370 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:103 syncCount: 2 2013-12-09 21:16:41,433 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 313} 2013-12-09 21:16:41,434 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 109, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:105, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620145255, arrival = 0, brokerInTime = 1386620145257, brokerOutTime = 1386620193731, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 103} 2013-12-09 21:16:41,435 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 103 2013-12-09 21:16:41,435 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 314, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:104} 2013-12-09 21:16:41,435 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:104 2013-12-09 21:16:41,435 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:104 2013-12-09 21:16:41,436 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 315, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:106, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:106, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:104, messageCount = 1, poisonCause = null} 2013-12-09 21:16:41,436 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:104 syncCount: 1 2013-12-09 21:16:41,436 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 316, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:104} 2013-12-09 21:16:41,437 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:104 syncCount: 2 2013-12-09 21:16:41,454 [ Scheduled Task] DEBUG LeaseDatabaseLocker - coreActiveMQBroker1, lease keepAlive Query is UPDATE ACTIVEMQ_LOCK SET BROKER_NAME=?, TIME=? WHERE BROKER_NAME=? AND ID = 1 2013-12-09 21:16:41,491 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 316} 2013-12-09 21:16:41,492 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 110, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:106, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620145312, arrival = 0, brokerInTime = 1386620145314, brokerOutTime = 1386620193731, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 104} 2013-12-09 21:16:41,493 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 104 2013-12-09 21:16:41,493 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 317, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:105} 2013-12-09 21:16:41,493 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:105 2013-12-09 21:16:41,494 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:105 2013-12-09 21:16:41,494 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 318, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:107, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:107, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:105, messageCount = 1, poisonCause = null} 2013-12-09 21:16:41,495 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:105 syncCount: 1 2013-12-09 21:16:41,495 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 319, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:105} 2013-12-09 21:16:41,495 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:105 syncCount: 2 2013-12-09 21:16:41,591 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 319} 2013-12-09 21:16:41,591 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 111, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:107, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620145369, arrival = 0, brokerInTime = 1386620145371, brokerOutTime = 1386620193731, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 105} 2013-12-09 21:16:41,592 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 105 2013-12-09 21:16:41,592 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 320, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:106} 2013-12-09 21:16:41,593 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:106 2013-12-09 21:16:41,593 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:106 2013-12-09 21:16:41,593 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 321, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:108, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:108, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:106, messageCount = 1, poisonCause = null} 2013-12-09 21:16:41,594 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:106 syncCount: 1 2013-12-09 21:16:41,594 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 322, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:106} 2013-12-09 21:16:41,594 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:106 syncCount: 2 2013-12-09 21:16:41,649 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 322} 2013-12-09 21:16:41,649 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 112, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:108, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620145427, arrival = 0, brokerInTime = 1386620145429, brokerOutTime = 1386620193732, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 106} 2013-12-09 21:16:41,650 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 106 2013-12-09 21:16:41,650 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 323, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:107} 2013-12-09 21:16:41,651 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:107 2013-12-09 21:16:41,651 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:107 2013-12-09 21:16:41,651 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 324, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:109, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:109, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:107, messageCount = 1, poisonCause = null} 2013-12-09 21:16:41,652 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:107 syncCount: 1 2013-12-09 21:16:41,652 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 325, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:107} 2013-12-09 21:16:41,652 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:107 syncCount: 2 2013-12-09 21:16:41,707 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 325} 2013-12-09 21:16:41,707 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 113, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:109, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620145485, arrival = 0, brokerInTime = 1386620145487, brokerOutTime = 1386620193732, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 107} 2013-12-09 21:16:41,708 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 107 2013-12-09 21:16:41,708 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 326, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:108} 2013-12-09 21:16:41,709 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:108 2013-12-09 21:16:41,709 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:108 2013-12-09 21:16:41,709 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 327, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:110, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:110, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:108, messageCount = 1, poisonCause = null} 2013-12-09 21:16:41,710 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:108 syncCount: 1 2013-12-09 21:16:41,710 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 328, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:108} 2013-12-09 21:16:41,710 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:108 syncCount: 2 2013-12-09 21:16:41,765 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 328} 2013-12-09 21:16:41,765 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 114, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:110, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620145543, arrival = 0, brokerInTime = 1386620145544, brokerOutTime = 1386620193732, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 108} 2013-12-09 21:16:41,766 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 108 2013-12-09 21:16:41,766 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 329, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:109} 2013-12-09 21:16:41,767 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:109 2013-12-09 21:16:41,767 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:109 2013-12-09 21:16:41,767 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 330, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:111, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:111, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:109, messageCount = 1, poisonCause = null} 2013-12-09 21:16:41,768 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:109 syncCount: 1 2013-12-09 21:16:41,768 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 331, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:109} 2013-12-09 21:16:41,769 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:109 syncCount: 2 2013-12-09 21:16:41,823 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 331} 2013-12-09 21:16:41,823 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 115, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:111, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620145601, arrival = 0, brokerInTime = 1386620145602, brokerOutTime = 1386620193732, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 109} 2013-12-09 21:16:41,824 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 109 2013-12-09 21:16:41,824 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 332, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:110} 2013-12-09 21:16:41,825 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:110 2013-12-09 21:16:41,825 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:110 2013-12-09 21:16:41,825 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 333, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:112, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:112, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:110, messageCount = 1, poisonCause = null} 2013-12-09 21:16:41,826 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:110 syncCount: 1 2013-12-09 21:16:41,826 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 334, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:110} 2013-12-09 21:16:41,826 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:110 syncCount: 2 2013-12-09 21:16:41,881 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 334} 2013-12-09 21:16:41,881 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 116, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:112, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620145659, arrival = 0, brokerInTime = 1386620145660, brokerOutTime = 1386620193733, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 110} 2013-12-09 21:16:41,882 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 110 2013-12-09 21:16:41,882 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 335, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:111} 2013-12-09 21:16:41,883 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:111 2013-12-09 21:16:41,883 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:111 2013-12-09 21:16:41,884 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 336, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:113, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:113, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:111, messageCount = 1, poisonCause = null} 2013-12-09 21:16:41,884 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:111 syncCount: 1 2013-12-09 21:16:41,884 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 337, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:111} 2013-12-09 21:16:41,885 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:111 syncCount: 2 2013-12-09 21:16:42,230 [.0.1:58031@1666] WARN JDBCPersistenceAdapter - Commit failed: No operations allowed after statement closed. com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operations allowed after statement closed. at sun.reflect.GeneratedConstructorAccessor8.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.Util.getInstance(Util.java:386) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1015) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:989) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:975) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:920) at com.mysql.jdbc.StatementImpl.checkClosed(StatementImpl.java:461) at com.mysql.jdbc.PreparedStatement.clearBatch(PreparedStatement.java:1143) at com.mysql.jdbc.PreparedStatement.executeBatch(PreparedStatement.java:1471) at org.apache.commons.dbcp.DelegatingStatement.executeBatch(DelegatingStatement.java:297) at org.apache.commons.dbcp.DelegatingStatement.executeBatch(DelegatingStatement.java:297) at org.apache.commons.dbcp.DelegatingStatement.executeBatch(DelegatingStatement.java:297) at org.apache.activemq.store.jdbc.TransactionContext.executeBatch(TransactionContext.java:106) at org.apache.activemq.store.jdbc.TransactionContext.executeBatch(TransactionContext.java:88) at org.apache.activemq.store.jdbc.TransactionContext.commit(TransactionContext.java:173) at org.apache.activemq.store.jdbc.JDBCPersistenceAdapter.commitTransaction(JDBCPersistenceAdapter.java:516) at org.apache.activemq.store.memory.MemoryTransactionStore$Tx.commit(MemoryTransactionStore.java:110) at org.apache.activemq.store.memory.MemoryTransactionStore.commit(MemoryTransactionStore.java:259) at org.apache.activemq.transaction.LocalTransaction.commit(LocalTransaction.java:70) at org.apache.activemq.broker.TransactionBroker.commitTransaction(TransactionBroker.java:253) at org.apache.activemq.broker.MutableBrokerFilter.commitTransaction(MutableBrokerFilter.java:112) at org.apache.activemq.broker.TransportConnection.processCommitTransactionOnePhase(TransportConnection.java:424) at org.apache.activemq.command.TransactionInfo.visit(TransactionInfo.java:100) at org.apache.activemq.broker.TransportConnection.service(TransportConnection.java:292) at org.apache.activemq.broker.TransportConnection$1.onCommand(TransportConnection.java:149) at org.apache.activemq.transport.MutexTransport.onCommand(MutexTransport.java:50) at org.apache.activemq.transport.WireFormatNegotiator.onCommand(WireFormatNegotiator.java:113) at org.apache.activemq.transport.AbstractInactivityMonitor.onCommand(AbstractInactivityMonitor.java:270) at org.apache.activemq.transport.TransportSupport.doConsume(TransportSupport.java:83) at org.apache.activemq.transport.tcp.TcpTransport.doRun(TcpTransport.java:214) at org.apache.activemq.transport.tcp.TcpTransport.run(TcpTransport.java:196) at java.lang.Thread.run(Thread.java:722) 2013-12-09 21:16:42,234 [.0.1:58031@1666] WARN JDBCPersistenceAdapter - Rollback failed: No operations allowed after connection closed. com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operations allowed after connection closed. at sun.reflect.GeneratedConstructorAccessor8.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.Util.getInstance(Util.java:386) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1015) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:989) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:975) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:920) at com.mysql.jdbc.ConnectionImpl.throwConnectionClosedException(ConnectionImpl.java:1304) at com.mysql.jdbc.ConnectionImpl.checkClosed(ConnectionImpl.java:1296) at com.mysql.jdbc.ConnectionImpl.rollback(ConnectionImpl.java:5022) at org.apache.commons.dbcp.DelegatingConnection.rollback(DelegatingConnection.java:368) at org.apache.commons.dbcp.DelegatingConnection.rollback(DelegatingConnection.java:368) at org.apache.commons.dbcp.PoolingDataSource$PoolGuardConnectionWrapper.rollback(PoolingDataSource.java:323) at org.apache.activemq.store.jdbc.TransactionContext.rollback(TransactionContext.java:206) at org.apache.activemq.store.jdbc.TransactionContext.commit(TransactionContext.java:180) at org.apache.activemq.store.jdbc.JDBCPersistenceAdapter.commitTransaction(JDBCPersistenceAdapter.java:516) at org.apache.activemq.store.memory.MemoryTransactionStore$Tx.commit(MemoryTransactionStore.java:110) at org.apache.activemq.store.memory.MemoryTransactionStore.commit(MemoryTransactionStore.java:259) at org.apache.activemq.transaction.LocalTransaction.commit(LocalTransaction.java:70) at org.apache.activemq.broker.TransactionBroker.commitTransaction(TransactionBroker.java:253) at org.apache.activemq.broker.MutableBrokerFilter.commitTransaction(MutableBrokerFilter.java:112) at org.apache.activemq.broker.TransportConnection.processCommitTransactionOnePhase(TransportConnection.java:424) at org.apache.activemq.command.TransactionInfo.visit(TransactionInfo.java:100) at org.apache.activemq.broker.TransportConnection.service(TransportConnection.java:292) at org.apache.activemq.broker.TransportConnection$1.onCommand(TransportConnection.java:149) at org.apache.activemq.transport.MutexTransport.onCommand(MutexTransport.java:50) at org.apache.activemq.transport.WireFormatNegotiator.onCommand(WireFormatNegotiator.java:113) at org.apache.activemq.transport.AbstractInactivityMonitor.onCommand(AbstractInactivityMonitor.java:270) at org.apache.activemq.transport.TransportSupport.doConsume(TransportSupport.java:83) at org.apache.activemq.transport.tcp.TcpTransport.doRun(TcpTransport.java:214) at org.apache.activemq.transport.tcp.TcpTransport.run(TcpTransport.java:196) at java.lang.Thread.run(Thread.java:722) Caused by: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet successfully received from the server was 344 milliseconds ago. The last packet sent successfully to the server was 343 milliseconds ago. at sun.reflect.GeneratedConstructorAccessor11.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1121) at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3603) at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3492) at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:4043) at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2503) at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2664) at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2815) at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:2155) at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java:2458) at com.mysql.jdbc.PreparedStatement.executeBatchSerially(PreparedStatement.java:2006) at com.mysql.jdbc.PreparedStatement.executeBatch(PreparedStatement.java:1467) at org.apache.commons.dbcp.DelegatingStatement.executeBatch(DelegatingStatement.java:297) at org.apache.commons.dbcp.DelegatingStatement.executeBatch(DelegatingStatement.java:297) at org.apache.commons.dbcp.DelegatingStatement.executeBatch(DelegatingStatement.java:297) at org.apache.activemq.store.jdbc.TransactionContext.executeBatch(TransactionContext.java:106) at org.apache.activemq.store.jdbc.TransactionContext.executeBatch(TransactionContext.java:88) at org.apache.activemq.store.jdbc.TransactionContext.commit(TransactionContext.java:173) ... 17 more Caused by: java.io.EOFException: Can not read response from server. Expected to read 4 bytes, read 0 bytes before connection was unexpectedly lost. at com.mysql.jdbc.MysqlIO.readFully(MysqlIO.java:3052) at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3503) ... 32 more 2013-12-09 21:16:42,243 [.0.1:58031@1666] WARN LocalTransaction - Store COMMIT FAILED: java.io.IOException: No operations allowed after connection closed. at org.apache.activemq.util.IOExceptionSupport.create(IOExceptionSupport.java:45) at org.apache.activemq.store.jdbc.TransactionContext.rollback(TransactionContext.java:210) at org.apache.activemq.store.jdbc.TransactionContext.commit(TransactionContext.java:180) at org.apache.activemq.store.jdbc.JDBCPersistenceAdapter.commitTransaction(JDBCPersistenceAdapter.java:516) at org.apache.activemq.store.memory.MemoryTransactionStore$Tx.commit(MemoryTransactionStore.java:110) at org.apache.activemq.store.memory.MemoryTransactionStore.commit(MemoryTransactionStore.java:259) at org.apache.activemq.transaction.LocalTransaction.commit(LocalTransaction.java:70) at org.apache.activemq.broker.TransactionBroker.commitTransaction(TransactionBroker.java:253) at org.apache.activemq.broker.MutableBrokerFilter.commitTransaction(MutableBrokerFilter.java:112) at org.apache.activemq.broker.TransportConnection.processCommitTransactionOnePhase(TransportConnection.java:424) at org.apache.activemq.command.TransactionInfo.visit(TransactionInfo.java:100) at org.apache.activemq.broker.TransportConnection.service(TransportConnection.java:292) at org.apache.activemq.broker.TransportConnection$1.onCommand(TransportConnection.java:149) at org.apache.activemq.transport.MutexTransport.onCommand(MutexTransport.java:50) at org.apache.activemq.transport.WireFormatNegotiator.onCommand(WireFormatNegotiator.java:113) at org.apache.activemq.transport.AbstractInactivityMonitor.onCommand(AbstractInactivityMonitor.java:270) at org.apache.activemq.transport.TransportSupport.doConsume(TransportSupport.java:83) at org.apache.activemq.transport.tcp.TcpTransport.doRun(TcpTransport.java:214) at org.apache.activemq.transport.tcp.TcpTransport.run(TcpTransport.java:196) at java.lang.Thread.run(Thread.java:722) Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operations allowed after connection closed. at sun.reflect.GeneratedConstructorAccessor8.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.Util.getInstance(Util.java:386) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1015) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:989) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:975) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:920) at com.mysql.jdbc.ConnectionImpl.throwConnectionClosedException(ConnectionImpl.java:1304) at com.mysql.jdbc.ConnectionImpl.checkClosed(ConnectionImpl.java:1296) at com.mysql.jdbc.ConnectionImpl.rollback(ConnectionImpl.java:5022) at org.apache.commons.dbcp.DelegatingConnection.rollback(DelegatingConnection.java:368) at org.apache.commons.dbcp.DelegatingConnection.rollback(DelegatingConnection.java:368) at org.apache.commons.dbcp.PoolingDataSource$PoolGuardConnectionWrapper.rollback(PoolingDataSource.java:323) at org.apache.activemq.store.jdbc.TransactionContext.rollback(TransactionContext.java:206) ... 18 more Caused by: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet successfully received from the server was 344 milliseconds ago. The last packet sent successfully to the server was 343 milliseconds ago. at sun.reflect.GeneratedConstructorAccessor11.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1121) at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3603) at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3492) at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:4043) at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2503) at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2664) at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2815) at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:2155) at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java:2458) at com.mysql.jdbc.PreparedStatement.executeBatchSerially(PreparedStatement.java:2006) at com.mysql.jdbc.PreparedStatement.executeBatch(PreparedStatement.java:1467) at org.apache.commons.dbcp.DelegatingStatement.executeBatch(DelegatingStatement.java:297) at org.apache.commons.dbcp.DelegatingStatement.executeBatch(DelegatingStatement.java:297) at org.apache.commons.dbcp.DelegatingStatement.executeBatch(DelegatingStatement.java:297) at org.apache.activemq.store.jdbc.TransactionContext.executeBatch(TransactionContext.java:106) at org.apache.activemq.store.jdbc.TransactionContext.executeBatch(TransactionContext.java:88) at org.apache.activemq.store.jdbc.TransactionContext.commit(TransactionContext.java:173) ... 17 more Caused by: java.io.EOFException: Can not read response from server. Expected to read 4 bytes, read 0 bytes before connection was unexpectedly lost. at com.mysql.jdbc.MysqlIO.readFully(MysqlIO.java:3052) at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3503) ... 32 more 2013-12-09 21:16:42,251 [.0.1:58031@1666] DEBUG LocalTransaction - rollback: TX:ID:sideshow.home-57960-1386620121463-5:1:111 syncCount: 2 2013-12-09 21:16:42,251 [.0.1:58031@1666] DEBUG Service - Error occured while processing sync command: TransactionInfo {commandId = 337, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:111}, exception: javax.transaction.xa.XAException: STORE COMMIT FAILED: Transaction rolled back javax.transaction.xa.XAException: STORE COMMIT FAILED: Transaction rolled back at org.apache.activemq.transaction.LocalTransaction.commit(LocalTransaction.java:75) at org.apache.activemq.broker.TransactionBroker.commitTransaction(TransactionBroker.java:253) at org.apache.activemq.broker.MutableBrokerFilter.commitTransaction(MutableBrokerFilter.java:112) at org.apache.activemq.broker.TransportConnection.processCommitTransactionOnePhase(TransportConnection.java:424) at org.apache.activemq.command.TransactionInfo.visit(TransactionInfo.java:100) at org.apache.activemq.broker.TransportConnection.service(TransportConnection.java:292) at org.apache.activemq.broker.TransportConnection$1.onCommand(TransportConnection.java:149) at org.apache.activemq.transport.MutexTransport.onCommand(MutexTransport.java:50) at org.apache.activemq.transport.WireFormatNegotiator.onCommand(WireFormatNegotiator.java:113) at org.apache.activemq.transport.AbstractInactivityMonitor.onCommand(AbstractInactivityMonitor.java:270) at org.apache.activemq.transport.TransportSupport.doConsume(TransportSupport.java:83) at org.apache.activemq.transport.tcp.TcpTransport.doRun(TcpTransport.java:214) at org.apache.activemq.transport.tcp.TcpTransport.run(TcpTransport.java:196) at java.lang.Thread.run(Thread.java:722) Caused by: java.io.IOException: No operations allowed after connection closed. at org.apache.activemq.util.IOExceptionSupport.create(IOExceptionSupport.java:45) at org.apache.activemq.store.jdbc.TransactionContext.rollback(TransactionContext.java:210) at org.apache.activemq.store.jdbc.TransactionContext.commit(TransactionContext.java:180) at org.apache.activemq.store.jdbc.JDBCPersistenceAdapter.commitTransaction(JDBCPersistenceAdapter.java:516) at org.apache.activemq.store.memory.MemoryTransactionStore$Tx.commit(MemoryTransactionStore.java:110) at org.apache.activemq.store.memory.MemoryTransactionStore.commit(MemoryTransactionStore.java:259) at org.apache.activemq.transaction.LocalTransaction.commit(LocalTransaction.java:70) ... 13 more Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operations allowed after connection closed. at sun.reflect.GeneratedConstructorAccessor8.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.Util.getInstance(Util.java:386) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1015) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:989) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:975) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:920) at com.mysql.jdbc.ConnectionImpl.throwConnectionClosedException(ConnectionImpl.java:1304) at com.mysql.jdbc.ConnectionImpl.checkClosed(ConnectionImpl.java:1296) at com.mysql.jdbc.ConnectionImpl.rollback(ConnectionImpl.java:5022) at org.apache.commons.dbcp.DelegatingConnection.rollback(DelegatingConnection.java:368) at org.apache.commons.dbcp.DelegatingConnection.rollback(DelegatingConnection.java:368) at org.apache.commons.dbcp.PoolingDataSource$PoolGuardConnectionWrapper.rollback(PoolingDataSource.java:323) at org.apache.activemq.store.jdbc.TransactionContext.rollback(TransactionContext.java:206) ... 18 more Caused by: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet successfully received from the server was 344 milliseconds ago. The last packet sent successfully to the server was 343 milliseconds ago. at sun.reflect.GeneratedConstructorAccessor11.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1121) at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3603) at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3492) at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:4043) at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2503) at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2664) at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2815) at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:2155) at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java:2458) at com.mysql.jdbc.PreparedStatement.executeBatchSerially(PreparedStatement.java:2006) at com.mysql.jdbc.PreparedStatement.executeBatch(PreparedStatement.java:1467) at org.apache.commons.dbcp.DelegatingStatement.executeBatch(DelegatingStatement.java:297) at org.apache.commons.dbcp.DelegatingStatement.executeBatch(DelegatingStatement.java:297) at org.apache.commons.dbcp.DelegatingStatement.executeBatch(DelegatingStatement.java:297) at org.apache.activemq.store.jdbc.TransactionContext.executeBatch(TransactionContext.java:106) at org.apache.activemq.store.jdbc.TransactionContext.executeBatch(TransactionContext.java:88) at org.apache.activemq.store.jdbc.TransactionContext.commit(TransactionContext.java:173) ... 17 more Caused by: java.io.EOFException: Can not read response from server. Expected to read 4 bytes, read 0 bytes before connection was unexpectedly lost. at com.mysql.jdbc.MysqlIO.readFully(MysqlIO.java:3052) at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3503) ... 32 more 2013-12-09 21:16:42,261 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: ExceptionResponse {commandId = 0, responseRequired = false, correlationId = 337, exception = javax.transaction.xa.XAException: STORE COMMIT FAILED: Transaction rolled back} 2013-12-09 21:16:42,262 [pool-3-thread-1] INFO TransactionContext - commit failed for transaction TX:ID:sideshow.home-57960-1386620121463-5:1:111 javax.jms.JMSException: STORE COMMIT FAILED: Transaction rolled back at org.apache.activemq.util.JMSExceptionSupport.create(JMSExceptionSupport.java:54) at org.apache.activemq.ActiveMQConnection.syncSendPacket(ActiveMQConnection.java:1405) at org.apache.activemq.TransactionContext.syncSendPacketWithInterruptionHandling(TransactionContext.java:757) at org.apache.activemq.TransactionContext.commit(TransactionContext.java:322) at org.apache.activemq.ActiveMQSession.commit(ActiveMQSession.java:562) at org.apache.activemq.bugs.ConsumerProducerDBFailoverTest$MyConsumer.consumeMessages(ConsumerProducerDBFailoverTest.java:369) at org.apache.activemq.bugs.ConsumerProducerDBFailoverTest$MyConsumer.call(ConsumerProducerDBFailoverTest.java:352) at org.apache.activemq.bugs.ConsumerProducerDBFailoverTest$MyConsumer.call(ConsumerProducerDBFailoverTest.java:311) at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:334) at java.util.concurrent.FutureTask.run(FutureTask.java:166) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603) at java.lang.Thread.run(Thread.java:722) Caused by: javax.transaction.xa.XAException: STORE COMMIT FAILED: Transaction rolled back at org.apache.activemq.transaction.LocalTransaction.commit(LocalTransaction.java:75) at org.apache.activemq.broker.TransactionBroker.commitTransaction(TransactionBroker.java:253) at org.apache.activemq.broker.MutableBrokerFilter.commitTransaction(MutableBrokerFilter.java:112) at org.apache.activemq.broker.TransportConnection.processCommitTransactionOnePhase(TransportConnection.java:424) at org.apache.activemq.command.TransactionInfo.visit(TransactionInfo.java:100) at org.apache.activemq.broker.TransportConnection.service(TransportConnection.java:292) at org.apache.activemq.broker.TransportConnection$1.onCommand(TransportConnection.java:149) at org.apache.activemq.transport.MutexTransport.onCommand(MutexTransport.java:50) at org.apache.activemq.transport.WireFormatNegotiator.onCommand(WireFormatNegotiator.java:113) at org.apache.activemq.transport.AbstractInactivityMonitor.onCommand(AbstractInactivityMonitor.java:270) at org.apache.activemq.transport.TransportSupport.doConsume(TransportSupport.java:83) at org.apache.activemq.transport.tcp.TcpTransport.doRun(TcpTransport.java:214) at org.apache.activemq.transport.tcp.TcpTransport.run(TcpTransport.java:196) ... 1 more Caused by: java.io.IOException: No operations allowed after connection closed. at org.apache.activemq.util.IOExceptionSupport.create(IOExceptionSupport.java:45) at org.apache.activemq.store.jdbc.TransactionContext.rollback(TransactionContext.java:210) at org.apache.activemq.store.jdbc.TransactionContext.commit(TransactionContext.java:180) at org.apache.activemq.store.jdbc.JDBCPersistenceAdapter.commitTransaction(JDBCPersistenceAdapter.java:516) at org.apache.activemq.store.memory.MemoryTransactionStore$Tx.commit(MemoryTransactionStore.java:110) at org.apache.activemq.store.memory.MemoryTransactionStore.commit(MemoryTransactionStore.java:259) at org.apache.activemq.transaction.LocalTransaction.commit(LocalTransaction.java:70) ... 13 more Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operations allowed after connection closed. at sun.reflect.GeneratedConstructorAccessor8.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.Util.getInstance(Util.java:386) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1015) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:989) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:975) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:920) at com.mysql.jdbc.ConnectionImpl.throwConnectionClosedException(ConnectionImpl.java:1304) at com.mysql.jdbc.ConnectionImpl.checkClosed(ConnectionImpl.java:1296) at com.mysql.jdbc.ConnectionImpl.rollback(ConnectionImpl.java:5022) at org.apache.commons.dbcp.DelegatingConnection.rollback(DelegatingConnection.java:368) at org.apache.commons.dbcp.DelegatingConnection.rollback(DelegatingConnection.java:368) at org.apache.commons.dbcp.PoolingDataSource$PoolGuardConnectionWrapper.rollback(PoolingDataSource.java:323) at org.apache.activemq.store.jdbc.TransactionContext.rollback(TransactionContext.java:206) ... 18 more Caused by: java.lang.Throwable: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet successfully received from the server was 344 milliseconds ago. The last packet sent successfully to the server was 343 milliseconds ago. at sun.reflect.GeneratedConstructorAccessor11.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1121) at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3603) at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3492) at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:4043) at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2503) at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2664) at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2815) at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:2155) at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java:2458) at com.mysql.jdbc.PreparedStatement.executeBatchSerially(PreparedStatement.java:2006) at com.mysql.jdbc.PreparedStatement.executeBatch(PreparedStatement.java:1467) at org.apache.commons.dbcp.DelegatingStatement.executeBatch(DelegatingStatement.java:297) at org.apache.commons.dbcp.DelegatingStatement.executeBatch(DelegatingStatement.java:297) at org.apache.commons.dbcp.DelegatingStatement.executeBatch(DelegatingStatement.java:297) at org.apache.activemq.store.jdbc.TransactionContext.executeBatch(TransactionContext.java:106) at org.apache.activemq.store.jdbc.TransactionContext.executeBatch(TransactionContext.java:88) at org.apache.activemq.store.jdbc.TransactionContext.commit(TransactionContext.java:173) ... 17 more Caused by: java.io.EOFException: Can not read response from server. Expected to read 4 bytes, read 0 bytes before connection was unexpectedly lost. at com.mysql.jdbc.MysqlIO.readFully(MysqlIO.java:3052) at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3503) ... 32 more 2013-12-09 21:16:42,276 [pool-3-thread-1] INFO MyConsumer - test_queue_z0Exception on commit - keep receiving javax.jms.JMSException: STORE COMMIT FAILED: Transaction rolled back at org.apache.activemq.util.JMSExceptionSupport.create(JMSExceptionSupport.java:54) at org.apache.activemq.ActiveMQConnection.syncSendPacket(ActiveMQConnection.java:1405) at org.apache.activemq.TransactionContext.syncSendPacketWithInterruptionHandling(TransactionContext.java:757) at org.apache.activemq.TransactionContext.commit(TransactionContext.java:322) at org.apache.activemq.ActiveMQSession.commit(ActiveMQSession.java:562) at org.apache.activemq.bugs.ConsumerProducerDBFailoverTest$MyConsumer.consumeMessages(ConsumerProducerDBFailoverTest.java:369) at org.apache.activemq.bugs.ConsumerProducerDBFailoverTest$MyConsumer.call(ConsumerProducerDBFailoverTest.java:352) at org.apache.activemq.bugs.ConsumerProducerDBFailoverTest$MyConsumer.call(ConsumerProducerDBFailoverTest.java:311) at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:334) at java.util.concurrent.FutureTask.run(FutureTask.java:166) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603) at java.lang.Thread.run(Thread.java:722) Caused by: javax.transaction.xa.XAException: STORE COMMIT FAILED: Transaction rolled back at org.apache.activemq.transaction.LocalTransaction.commit(LocalTransaction.java:75) at org.apache.activemq.broker.TransactionBroker.commitTransaction(TransactionBroker.java:253) at org.apache.activemq.broker.MutableBrokerFilter.commitTransaction(MutableBrokerFilter.java:112) at org.apache.activemq.broker.TransportConnection.processCommitTransactionOnePhase(TransportConnection.java:424) at org.apache.activemq.command.TransactionInfo.visit(TransactionInfo.java:100) at org.apache.activemq.broker.TransportConnection.service(TransportConnection.java:292) at org.apache.activemq.broker.TransportConnection$1.onCommand(TransportConnection.java:149) at org.apache.activemq.transport.MutexTransport.onCommand(MutexTransport.java:50) at org.apache.activemq.transport.WireFormatNegotiator.onCommand(WireFormatNegotiator.java:113) at org.apache.activemq.transport.AbstractInactivityMonitor.onCommand(AbstractInactivityMonitor.java:270) at org.apache.activemq.transport.TransportSupport.doConsume(TransportSupport.java:83) at org.apache.activemq.transport.tcp.TcpTransport.doRun(TcpTransport.java:214) at org.apache.activemq.transport.tcp.TcpTransport.run(TcpTransport.java:196) ... 1 more Caused by: java.io.IOException: No operations allowed after connection closed. at org.apache.activemq.util.IOExceptionSupport.create(IOExceptionSupport.java:45) at org.apache.activemq.store.jdbc.TransactionContext.rollback(TransactionContext.java:210) at org.apache.activemq.store.jdbc.TransactionContext.commit(TransactionContext.java:180) at org.apache.activemq.store.jdbc.JDBCPersistenceAdapter.commitTransaction(JDBCPersistenceAdapter.java:516) at org.apache.activemq.store.memory.MemoryTransactionStore$Tx.commit(MemoryTransactionStore.java:110) at org.apache.activemq.store.memory.MemoryTransactionStore.commit(MemoryTransactionStore.java:259) at org.apache.activemq.transaction.LocalTransaction.commit(LocalTransaction.java:70) ... 13 more Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operations allowed after connection closed. at sun.reflect.GeneratedConstructorAccessor8.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.Util.getInstance(Util.java:386) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1015) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:989) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:975) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:920) at com.mysql.jdbc.ConnectionImpl.throwConnectionClosedException(ConnectionImpl.java:1304) at com.mysql.jdbc.ConnectionImpl.checkClosed(ConnectionImpl.java:1296) at com.mysql.jdbc.ConnectionImpl.rollback(ConnectionImpl.java:5022) at org.apache.commons.dbcp.DelegatingConnection.rollback(DelegatingConnection.java:368) at org.apache.commons.dbcp.DelegatingConnection.rollback(DelegatingConnection.java:368) at org.apache.commons.dbcp.PoolingDataSource$PoolGuardConnectionWrapper.rollback(PoolingDataSource.java:323) at org.apache.activemq.store.jdbc.TransactionContext.rollback(TransactionContext.java:206) ... 18 more Caused by: java.lang.Throwable: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet successfully received from the server was 344 milliseconds ago. The last packet sent successfully to the server was 343 milliseconds ago. at sun.reflect.GeneratedConstructorAccessor11.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1121) at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3603) at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3492) at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:4043) at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2503) at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2664) at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2815) at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:2155) at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java:2458) at com.mysql.jdbc.PreparedStatement.executeBatchSerially(PreparedStatement.java:2006) at com.mysql.jdbc.PreparedStatement.executeBatch(PreparedStatement.java:1467) at org.apache.commons.dbcp.DelegatingStatement.executeBatch(DelegatingStatement.java:297) at org.apache.commons.dbcp.DelegatingStatement.executeBatch(DelegatingStatement.java:297) at org.apache.commons.dbcp.DelegatingStatement.executeBatch(DelegatingStatement.java:297) at org.apache.activemq.store.jdbc.TransactionContext.executeBatch(TransactionContext.java:106) at org.apache.activemq.store.jdbc.TransactionContext.executeBatch(TransactionContext.java:88) at org.apache.activemq.store.jdbc.TransactionContext.commit(TransactionContext.java:173) ... 17 more Caused by: java.io.EOFException: Can not read response from server. Expected to read 4 bytes, read 0 bytes before connection was unexpectedly lost. at com.mysql.jdbc.MysqlIO.readFully(MysqlIO.java:3052) at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3503) ... 32 more 2013-12-09 21:16:42,286 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 338, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:112} 2013-12-09 21:16:42,286 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:112 2013-12-09 21:16:42,286 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:112 2013-12-09 21:16:42,287 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 339, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:113, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:113, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:112, messageCount = 1, poisonCause = null} 2013-12-09 21:16:42,288 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:112 syncCount: 1 2013-12-09 21:16:42,288 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 340, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:112} 2013-12-09 21:16:42,289 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:112 syncCount: 2 2013-12-09 21:16:42,291 [.0.1:58031@1666] WARN JDBCPersistenceAdapter - JDBC Failure: No operations allowed after statement closed. com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operations allowed after statement closed. at sun.reflect.GeneratedConstructorAccessor8.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.Util.getInstance(Util.java:386) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1015) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:989) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:975) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:920) at com.mysql.jdbc.StatementImpl.checkClosed(StatementImpl.java:461) at com.mysql.jdbc.PreparedStatement.setString(PreparedStatement.java:4453) at org.apache.commons.dbcp.DelegatingPreparedStatement.setString(DelegatingPreparedStatement.java:135) at org.apache.commons.dbcp.DelegatingPreparedStatement.setString(DelegatingPreparedStatement.java:135) at org.apache.commons.dbcp.DelegatingPreparedStatement.setString(DelegatingPreparedStatement.java:135) at org.apache.activemq.store.jdbc.adapter.DefaultJDBCAdapter.getStoreSequenceId(DefaultJDBCAdapter.java:291) at org.apache.activemq.store.jdbc.JDBCPersistenceAdapter.getStoreSequenceIdForMessageId(JDBCPersistenceAdapter.java:840) at org.apache.activemq.store.jdbc.JDBCMessageStore.removeMessage(JDBCMessageStore.java:194) at org.apache.activemq.store.memory.MemoryTransactionStore$4.run(MemoryTransactionStore.java:348) at org.apache.activemq.store.memory.MemoryTransactionStore$Tx.commit(MemoryTransactionStore.java:103) at org.apache.activemq.store.memory.MemoryTransactionStore.commit(MemoryTransactionStore.java:259) at org.apache.activemq.transaction.LocalTransaction.commit(LocalTransaction.java:70) at org.apache.activemq.broker.TransactionBroker.commitTransaction(TransactionBroker.java:253) at org.apache.activemq.broker.MutableBrokerFilter.commitTransaction(MutableBrokerFilter.java:112) at org.apache.activemq.broker.TransportConnection.processCommitTransactionOnePhase(TransportConnection.java:424) at org.apache.activemq.command.TransactionInfo.visit(TransactionInfo.java:100) at org.apache.activemq.broker.TransportConnection.service(TransportConnection.java:292) at org.apache.activemq.broker.TransportConnection$1.onCommand(TransportConnection.java:149) at org.apache.activemq.transport.MutexTransport.onCommand(MutexTransport.java:50) at org.apache.activemq.transport.WireFormatNegotiator.onCommand(WireFormatNegotiator.java:113) at org.apache.activemq.transport.AbstractInactivityMonitor.onCommand(AbstractInactivityMonitor.java:270) at org.apache.activemq.transport.TransportSupport.doConsume(TransportSupport.java:83) at org.apache.activemq.transport.tcp.TcpTransport.doRun(TcpTransport.java:214) at org.apache.activemq.transport.tcp.TcpTransport.run(TcpTransport.java:196) at java.lang.Thread.run(Thread.java:722) 2013-12-09 21:16:42,295 [.0.1:58031@1666] WARN JDBCPersistenceAdapter - Rollback failed: No operations allowed after connection closed. com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operations allowed after connection closed. at sun.reflect.GeneratedConstructorAccessor8.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.Util.getInstance(Util.java:386) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1015) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:989) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:975) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:920) at com.mysql.jdbc.ConnectionImpl.throwConnectionClosedException(ConnectionImpl.java:1304) at com.mysql.jdbc.ConnectionImpl.checkClosed(ConnectionImpl.java:1296) at com.mysql.jdbc.ConnectionImpl.rollback(ConnectionImpl.java:5022) at org.apache.commons.dbcp.DelegatingConnection.rollback(DelegatingConnection.java:368) at org.apache.commons.dbcp.DelegatingConnection.rollback(DelegatingConnection.java:368) at org.apache.commons.dbcp.PoolingDataSource$PoolGuardConnectionWrapper.rollback(PoolingDataSource.java:323) at org.apache.activemq.store.jdbc.TransactionContext.rollback(TransactionContext.java:206) at org.apache.activemq.store.jdbc.JDBCPersistenceAdapter.rollbackTransaction(JDBCPersistenceAdapter.java:522) at org.apache.activemq.store.memory.MemoryTransactionStore$Tx.commit(MemoryTransactionStore.java:107) at org.apache.activemq.store.memory.MemoryTransactionStore.commit(MemoryTransactionStore.java:259) at org.apache.activemq.transaction.LocalTransaction.commit(LocalTransaction.java:70) at org.apache.activemq.broker.TransactionBroker.commitTransaction(TransactionBroker.java:253) at org.apache.activemq.broker.MutableBrokerFilter.commitTransaction(MutableBrokerFilter.java:112) at org.apache.activemq.broker.TransportConnection.processCommitTransactionOnePhase(TransportConnection.java:424) at org.apache.activemq.command.TransactionInfo.visit(TransactionInfo.java:100) at org.apache.activemq.broker.TransportConnection.service(TransportConnection.java:292) at org.apache.activemq.broker.TransportConnection$1.onCommand(TransportConnection.java:149) at org.apache.activemq.transport.MutexTransport.onCommand(MutexTransport.java:50) at org.apache.activemq.transport.WireFormatNegotiator.onCommand(WireFormatNegotiator.java:113) at org.apache.activemq.transport.AbstractInactivityMonitor.onCommand(AbstractInactivityMonitor.java:270) at org.apache.activemq.transport.TransportSupport.doConsume(TransportSupport.java:83) at org.apache.activemq.transport.tcp.TcpTransport.doRun(TcpTransport.java:214) at org.apache.activemq.transport.tcp.TcpTransport.run(TcpTransport.java:196) at java.lang.Thread.run(Thread.java:722) Caused by: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet successfully received from the server was 402 milliseconds ago. The last packet sent successfully to the server was 0 milliseconds ago. at sun.reflect.GeneratedConstructorAccessor11.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1121) at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3603) at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3492) at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:4043) at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2503) at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2664) at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2809) at com.mysql.jdbc.ConnectionImpl.setTransactionIsolation(ConnectionImpl.java:5639) at org.apache.commons.dbcp.DelegatingConnection.setTransactionIsolation(DelegatingConnection.java:380) at org.apache.commons.dbcp.DelegatingConnection.setTransactionIsolation(DelegatingConnection.java:380) at org.apache.commons.dbcp.PoolingDataSource$PoolGuardConnectionWrapper.setTransactionIsolation(PoolingDataSource.java:343) at org.apache.activemq.store.jdbc.TransactionContext.getConnection(TransactionContext.java:72) at org.apache.activemq.store.jdbc.TransactionContext.begin(TransactionContext.java:163) at org.apache.activemq.store.jdbc.JDBCPersistenceAdapter.beginTransaction(JDBCPersistenceAdapter.java:510) at org.apache.activemq.store.memory.MemoryTransactionStore$Tx.commit(MemoryTransactionStore.java:92) ... 15 more Caused by: java.io.EOFException: Can not read response from server. Expected to read 4 bytes, read 0 bytes before connection was unexpectedly lost. at com.mysql.jdbc.MysqlIO.readFully(MysqlIO.java:3052) at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3503) ... 28 more 2013-12-09 21:16:42,303 [.0.1:58031@1666] WARN LocalTransaction - Store COMMIT FAILED: java.io.IOException: No operations allowed after connection closed. at org.apache.activemq.util.IOExceptionSupport.create(IOExceptionSupport.java:45) at org.apache.activemq.store.jdbc.TransactionContext.rollback(TransactionContext.java:210) at org.apache.activemq.store.jdbc.JDBCPersistenceAdapter.rollbackTransaction(JDBCPersistenceAdapter.java:522) at org.apache.activemq.store.memory.MemoryTransactionStore$Tx.commit(MemoryTransactionStore.java:107) at org.apache.activemq.store.memory.MemoryTransactionStore.commit(MemoryTransactionStore.java:259) at org.apache.activemq.transaction.LocalTransaction.commit(LocalTransaction.java:70) at org.apache.activemq.broker.TransactionBroker.commitTransaction(TransactionBroker.java:253) at org.apache.activemq.broker.MutableBrokerFilter.commitTransaction(MutableBrokerFilter.java:112) at org.apache.activemq.broker.TransportConnection.processCommitTransactionOnePhase(TransportConnection.java:424) at org.apache.activemq.command.TransactionInfo.visit(TransactionInfo.java:100) at org.apache.activemq.broker.TransportConnection.service(TransportConnection.java:292) at org.apache.activemq.broker.TransportConnection$1.onCommand(TransportConnection.java:149) at org.apache.activemq.transport.MutexTransport.onCommand(MutexTransport.java:50) at org.apache.activemq.transport.WireFormatNegotiator.onCommand(WireFormatNegotiator.java:113) at org.apache.activemq.transport.AbstractInactivityMonitor.onCommand(AbstractInactivityMonitor.java:270) at org.apache.activemq.transport.TransportSupport.doConsume(TransportSupport.java:83) at org.apache.activemq.transport.tcp.TcpTransport.doRun(TcpTransport.java:214) at org.apache.activemq.transport.tcp.TcpTransport.run(TcpTransport.java:196) at java.lang.Thread.run(Thread.java:722) Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operations allowed after connection closed. at sun.reflect.GeneratedConstructorAccessor8.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.Util.getInstance(Util.java:386) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1015) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:989) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:975) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:920) at com.mysql.jdbc.ConnectionImpl.throwConnectionClosedException(ConnectionImpl.java:1304) at com.mysql.jdbc.ConnectionImpl.checkClosed(ConnectionImpl.java:1296) at com.mysql.jdbc.ConnectionImpl.rollback(ConnectionImpl.java:5022) at org.apache.commons.dbcp.DelegatingConnection.rollback(DelegatingConnection.java:368) at org.apache.commons.dbcp.DelegatingConnection.rollback(DelegatingConnection.java:368) at org.apache.commons.dbcp.PoolingDataSource$PoolGuardConnectionWrapper.rollback(PoolingDataSource.java:323) at org.apache.activemq.store.jdbc.TransactionContext.rollback(TransactionContext.java:206) ... 17 more Caused by: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet successfully received from the server was 402 milliseconds ago. The last packet sent successfully to the server was 0 milliseconds ago. at sun.reflect.GeneratedConstructorAccessor11.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1121) at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3603) at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3492) at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:4043) at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2503) at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2664) at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2809) at com.mysql.jdbc.ConnectionImpl.setTransactionIsolation(ConnectionImpl.java:5639) at org.apache.commons.dbcp.DelegatingConnection.setTransactionIsolation(DelegatingConnection.java:380) at org.apache.commons.dbcp.DelegatingConnection.setTransactionIsolation(DelegatingConnection.java:380) at org.apache.commons.dbcp.PoolingDataSource$PoolGuardConnectionWrapper.setTransactionIsolation(PoolingDataSource.java:343) at org.apache.activemq.store.jdbc.TransactionContext.getConnection(TransactionContext.java:72) at org.apache.activemq.store.jdbc.TransactionContext.begin(TransactionContext.java:163) at org.apache.activemq.store.jdbc.JDBCPersistenceAdapter.beginTransaction(JDBCPersistenceAdapter.java:510) at org.apache.activemq.store.memory.MemoryTransactionStore$Tx.commit(MemoryTransactionStore.java:92) ... 15 more Caused by: java.io.EOFException: Can not read response from server. Expected to read 4 bytes, read 0 bytes before connection was unexpectedly lost. at com.mysql.jdbc.MysqlIO.readFully(MysqlIO.java:3052) at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3503) ... 28 more 2013-12-09 21:16:42,311 [.0.1:58031@1666] DEBUG LocalTransaction - rollback: TX:ID:sideshow.home-57960-1386620121463-5:1:112 syncCount: 2 2013-12-09 21:16:42,311 [.0.1:58031@1666] DEBUG Service - Error occured while processing sync command: TransactionInfo {commandId = 340, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:112}, exception: javax.transaction.xa.XAException: STORE COMMIT FAILED: Transaction rolled back javax.transaction.xa.XAException: STORE COMMIT FAILED: Transaction rolled back at org.apache.activemq.transaction.LocalTransaction.commit(LocalTransaction.java:75) at org.apache.activemq.broker.TransactionBroker.commitTransaction(TransactionBroker.java:253) at org.apache.activemq.broker.MutableBrokerFilter.commitTransaction(MutableBrokerFilter.java:112) at org.apache.activemq.broker.TransportConnection.processCommitTransactionOnePhase(TransportConnection.java:424) at org.apache.activemq.command.TransactionInfo.visit(TransactionInfo.java:100) at org.apache.activemq.broker.TransportConnection.service(TransportConnection.java:292) at org.apache.activemq.broker.TransportConnection$1.onCommand(TransportConnection.java:149) at org.apache.activemq.transport.MutexTransport.onCommand(MutexTransport.java:50) at org.apache.activemq.transport.WireFormatNegotiator.onCommand(WireFormatNegotiator.java:113) at org.apache.activemq.transport.AbstractInactivityMonitor.onCommand(AbstractInactivityMonitor.java:270) at org.apache.activemq.transport.TransportSupport.doConsume(TransportSupport.java:83) at org.apache.activemq.transport.tcp.TcpTransport.doRun(TcpTransport.java:214) at org.apache.activemq.transport.tcp.TcpTransport.run(TcpTransport.java:196) at java.lang.Thread.run(Thread.java:722) Caused by: java.io.IOException: No operations allowed after connection closed. at org.apache.activemq.util.IOExceptionSupport.create(IOExceptionSupport.java:45) at org.apache.activemq.store.jdbc.TransactionContext.rollback(TransactionContext.java:210) at org.apache.activemq.store.jdbc.JDBCPersistenceAdapter.rollbackTransaction(JDBCPersistenceAdapter.java:522) at org.apache.activemq.store.memory.MemoryTransactionStore$Tx.commit(MemoryTransactionStore.java:107) at org.apache.activemq.store.memory.MemoryTransactionStore.commit(MemoryTransactionStore.java:259) at org.apache.activemq.transaction.LocalTransaction.commit(LocalTransaction.java:70) ... 13 more Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operations allowed after connection closed. at sun.reflect.GeneratedConstructorAccessor8.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.Util.getInstance(Util.java:386) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1015) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:989) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:975) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:920) at com.mysql.jdbc.ConnectionImpl.throwConnectionClosedException(ConnectionImpl.java:1304) at com.mysql.jdbc.ConnectionImpl.checkClosed(ConnectionImpl.java:1296) at com.mysql.jdbc.ConnectionImpl.rollback(ConnectionImpl.java:5022) at org.apache.commons.dbcp.DelegatingConnection.rollback(DelegatingConnection.java:368) at org.apache.commons.dbcp.DelegatingConnection.rollback(DelegatingConnection.java:368) at org.apache.commons.dbcp.PoolingDataSource$PoolGuardConnectionWrapper.rollback(PoolingDataSource.java:323) at org.apache.activemq.store.jdbc.TransactionContext.rollback(TransactionContext.java:206) ... 17 more Caused by: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet successfully received from the server was 402 milliseconds ago. The last packet sent successfully to the server was 0 milliseconds ago. at sun.reflect.GeneratedConstructorAccessor11.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1121) at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3603) at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3492) at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:4043) at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2503) at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2664) at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2809) at com.mysql.jdbc.ConnectionImpl.setTransactionIsolation(ConnectionImpl.java:5639) at org.apache.commons.dbcp.DelegatingConnection.setTransactionIsolation(DelegatingConnection.java:380) at org.apache.commons.dbcp.DelegatingConnection.setTransactionIsolation(DelegatingConnection.java:380) at org.apache.commons.dbcp.PoolingDataSource$PoolGuardConnectionWrapper.setTransactionIsolation(PoolingDataSource.java:343) at org.apache.activemq.store.jdbc.TransactionContext.getConnection(TransactionContext.java:72) at org.apache.activemq.store.jdbc.TransactionContext.begin(TransactionContext.java:163) at org.apache.activemq.store.jdbc.JDBCPersistenceAdapter.beginTransaction(JDBCPersistenceAdapter.java:510) at org.apache.activemq.store.memory.MemoryTransactionStore$Tx.commit(MemoryTransactionStore.java:92) ... 15 more Caused by: java.io.EOFException: Can not read response from server. Expected to read 4 bytes, read 0 bytes before connection was unexpectedly lost. at com.mysql.jdbc.MysqlIO.readFully(MysqlIO.java:3052) at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3503) ... 28 more 2013-12-09 21:16:42,321 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: ExceptionResponse {commandId = 0, responseRequired = false, correlationId = 340, exception = javax.transaction.xa.XAException: STORE COMMIT FAILED: Transaction rolled back} 2013-12-09 21:16:42,321 [pool-3-thread-1] INFO TransactionContext - commit failed for transaction TX:ID:sideshow.home-57960-1386620121463-5:1:112 javax.jms.JMSException: STORE COMMIT FAILED: Transaction rolled back at org.apache.activemq.util.JMSExceptionSupport.create(JMSExceptionSupport.java:54) at org.apache.activemq.ActiveMQConnection.syncSendPacket(ActiveMQConnection.java:1405) at org.apache.activemq.TransactionContext.syncSendPacketWithInterruptionHandling(TransactionContext.java:757) at org.apache.activemq.TransactionContext.commit(TransactionContext.java:322) at org.apache.activemq.ActiveMQSession.commit(ActiveMQSession.java:562) at org.apache.activemq.bugs.ConsumerProducerDBFailoverTest$MyConsumer.consumeMessages(ConsumerProducerDBFailoverTest.java:369) at org.apache.activemq.bugs.ConsumerProducerDBFailoverTest$MyConsumer.call(ConsumerProducerDBFailoverTest.java:352) at org.apache.activemq.bugs.ConsumerProducerDBFailoverTest$MyConsumer.call(ConsumerProducerDBFailoverTest.java:311) at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:334) at java.util.concurrent.FutureTask.run(FutureTask.java:166) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603) at java.lang.Thread.run(Thread.java:722) Caused by: javax.transaction.xa.XAException: STORE COMMIT FAILED: Transaction rolled back at org.apache.activemq.transaction.LocalTransaction.commit(LocalTransaction.java:75) at org.apache.activemq.broker.TransactionBroker.commitTransaction(TransactionBroker.java:253) at org.apache.activemq.broker.MutableBrokerFilter.commitTransaction(MutableBrokerFilter.java:112) at org.apache.activemq.broker.TransportConnection.processCommitTransactionOnePhase(TransportConnection.java:424) at org.apache.activemq.command.TransactionInfo.visit(TransactionInfo.java:100) at org.apache.activemq.broker.TransportConnection.service(TransportConnection.java:292) at org.apache.activemq.broker.TransportConnection$1.onCommand(TransportConnection.java:149) at org.apache.activemq.transport.MutexTransport.onCommand(MutexTransport.java:50) at org.apache.activemq.transport.WireFormatNegotiator.onCommand(WireFormatNegotiator.java:113) at org.apache.activemq.transport.AbstractInactivityMonitor.onCommand(AbstractInactivityMonitor.java:270) at org.apache.activemq.transport.TransportSupport.doConsume(TransportSupport.java:83) at org.apache.activemq.transport.tcp.TcpTransport.doRun(TcpTransport.java:214) at org.apache.activemq.transport.tcp.TcpTransport.run(TcpTransport.java:196) ... 1 more Caused by: java.io.IOException: No operations allowed after connection closed. at org.apache.activemq.util.IOExceptionSupport.create(IOExceptionSupport.java:45) at org.apache.activemq.store.jdbc.TransactionContext.rollback(TransactionContext.java:210) at org.apache.activemq.store.jdbc.JDBCPersistenceAdapter.rollbackTransaction(JDBCPersistenceAdapter.java:522) at org.apache.activemq.store.memory.MemoryTransactionStore$Tx.commit(MemoryTransactionStore.java:107) at org.apache.activemq.store.memory.MemoryTransactionStore.commit(MemoryTransactionStore.java:259) at org.apache.activemq.transaction.LocalTransaction.commit(LocalTransaction.java:70) ... 13 more Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operations allowed after connection closed. at sun.reflect.GeneratedConstructorAccessor8.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.Util.getInstance(Util.java:386) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1015) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:989) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:975) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:920) at com.mysql.jdbc.ConnectionImpl.throwConnectionClosedException(ConnectionImpl.java:1304) at com.mysql.jdbc.ConnectionImpl.checkClosed(ConnectionImpl.java:1296) at com.mysql.jdbc.ConnectionImpl.rollback(ConnectionImpl.java:5022) at org.apache.commons.dbcp.DelegatingConnection.rollback(DelegatingConnection.java:368) at org.apache.commons.dbcp.DelegatingConnection.rollback(DelegatingConnection.java:368) at org.apache.commons.dbcp.PoolingDataSource$PoolGuardConnectionWrapper.rollback(PoolingDataSource.java:323) at org.apache.activemq.store.jdbc.TransactionContext.rollback(TransactionContext.java:206) ... 17 more Caused by: java.lang.Throwable: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet successfully received from the server was 402 milliseconds ago. The last packet sent successfully to the server was 0 milliseconds ago. at sun.reflect.GeneratedConstructorAccessor11.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1121) at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3603) at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3492) at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:4043) at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2503) at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2664) at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2809) at com.mysql.jdbc.ConnectionImpl.setTransactionIsolation(ConnectionImpl.java:5639) at org.apache.commons.dbcp.DelegatingConnection.setTransactionIsolation(DelegatingConnection.java:380) at org.apache.commons.dbcp.DelegatingConnection.setTransactionIsolation(DelegatingConnection.java:380) at org.apache.commons.dbcp.PoolingDataSource$PoolGuardConnectionWrapper.setTransactionIsolation(PoolingDataSource.java:343) at org.apache.activemq.store.jdbc.TransactionContext.getConnection(TransactionContext.java:72) at org.apache.activemq.store.jdbc.TransactionContext.begin(TransactionContext.java:163) at org.apache.activemq.store.jdbc.JDBCPersistenceAdapter.beginTransaction(JDBCPersistenceAdapter.java:510) at org.apache.activemq.store.memory.MemoryTransactionStore$Tx.commit(MemoryTransactionStore.java:92) ... 15 more Caused by: java.io.EOFException: Can not read response from server. Expected to read 4 bytes, read 0 bytes before connection was unexpectedly lost. at com.mysql.jdbc.MysqlIO.readFully(MysqlIO.java:3052) at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3503) ... 28 more 2013-12-09 21:16:42,331 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 341, responseRequired = false, ackType = 3, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:113, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:113, destination = queue://test_queue_z0, transactionId = null, messageCount = 1, poisonCause = null} 2013-12-09 21:16:42,332 [pool-3-thread-1] INFO MyConsumer - test_queue_z0Exception on commit - keep receiving javax.jms.JMSException: STORE COMMIT FAILED: Transaction rolled back at org.apache.activemq.util.JMSExceptionSupport.create(JMSExceptionSupport.java:54) at org.apache.activemq.ActiveMQConnection.syncSendPacket(ActiveMQConnection.java:1405) at org.apache.activemq.TransactionContext.syncSendPacketWithInterruptionHandling(TransactionContext.java:757) at org.apache.activemq.TransactionContext.commit(TransactionContext.java:322) at org.apache.activemq.ActiveMQSession.commit(ActiveMQSession.java:562) at org.apache.activemq.bugs.ConsumerProducerDBFailoverTest$MyConsumer.consumeMessages(ConsumerProducerDBFailoverTest.java:369) at org.apache.activemq.bugs.ConsumerProducerDBFailoverTest$MyConsumer.call(ConsumerProducerDBFailoverTest.java:352) at org.apache.activemq.bugs.ConsumerProducerDBFailoverTest$MyConsumer.call(ConsumerProducerDBFailoverTest.java:311) at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:334) at java.util.concurrent.FutureTask.run(FutureTask.java:166) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603) at java.lang.Thread.run(Thread.java:722) Caused by: javax.transaction.xa.XAException: STORE COMMIT FAILED: Transaction rolled back at org.apache.activemq.transaction.LocalTransaction.commit(LocalTransaction.java:75) at org.apache.activemq.broker.TransactionBroker.commitTransaction(TransactionBroker.java:253) at org.apache.activemq.broker.MutableBrokerFilter.commitTransaction(MutableBrokerFilter.java:112) at org.apache.activemq.broker.TransportConnection.processCommitTransactionOnePhase(TransportConnection.java:424) at org.apache.activemq.command.TransactionInfo.visit(TransactionInfo.java:100) at org.apache.activemq.broker.TransportConnection.service(TransportConnection.java:292) at org.apache.activemq.broker.TransportConnection$1.onCommand(TransportConnection.java:149) at org.apache.activemq.transport.MutexTransport.onCommand(MutexTransport.java:50) at org.apache.activemq.transport.WireFormatNegotiator.onCommand(WireFormatNegotiator.java:113) at org.apache.activemq.transport.AbstractInactivityMonitor.onCommand(AbstractInactivityMonitor.java:270) at org.apache.activemq.transport.TransportSupport.doConsume(TransportSupport.java:83) at org.apache.activemq.transport.tcp.TcpTransport.doRun(TcpTransport.java:214) at org.apache.activemq.transport.tcp.TcpTransport.run(TcpTransport.java:196) ... 1 more Caused by: java.io.IOException: No operations allowed after connection closed. at org.apache.activemq.util.IOExceptionSupport.create(IOExceptionSupport.java:45) at org.apache.activemq.store.jdbc.TransactionContext.rollback(TransactionContext.java:210) at org.apache.activemq.store.jdbc.JDBCPersistenceAdapter.rollbackTransaction(JDBCPersistenceAdapter.java:522) at org.apache.activemq.store.memory.MemoryTransactionStore$Tx.commit(MemoryTransactionStore.java:107) at org.apache.activemq.store.memory.MemoryTransactionStore.commit(MemoryTransactionStore.java:259) at org.apache.activemq.transaction.LocalTransaction.commit(LocalTransaction.java:70) ... 13 more Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operations allowed after connection closed. at sun.reflect.GeneratedConstructorAccessor8.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.Util.getInstance(Util.java:386) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1015) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:989) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:975) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:920) at com.mysql.jdbc.ConnectionImpl.throwConnectionClosedException(ConnectionImpl.java:1304) at com.mysql.jdbc.ConnectionImpl.checkClosed(ConnectionImpl.java:1296) at com.mysql.jdbc.ConnectionImpl.rollback(ConnectionImpl.java:5022) at org.apache.commons.dbcp.DelegatingConnection.rollback(DelegatingConnection.java:368) at org.apache.commons.dbcp.DelegatingConnection.rollback(DelegatingConnection.java:368) at org.apache.commons.dbcp.PoolingDataSource$PoolGuardConnectionWrapper.rollback(PoolingDataSource.java:323) at org.apache.activemq.store.jdbc.TransactionContext.rollback(TransactionContext.java:206) ... 17 more Caused by: java.lang.Throwable: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet successfully received from the server was 402 milliseconds ago. The last packet sent successfully to the server was 0 milliseconds ago. at sun.reflect.GeneratedConstructorAccessor11.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1121) at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3603) at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3492) at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:4043) at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2503) at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2664) at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2809) at com.mysql.jdbc.ConnectionImpl.setTransactionIsolation(ConnectionImpl.java:5639) at org.apache.commons.dbcp.DelegatingConnection.setTransactionIsolation(DelegatingConnection.java:380) at org.apache.commons.dbcp.DelegatingConnection.setTransactionIsolation(DelegatingConnection.java:380) at org.apache.commons.dbcp.PoolingDataSource$PoolGuardConnectionWrapper.setTransactionIsolation(PoolingDataSource.java:343) at org.apache.activemq.store.jdbc.TransactionContext.getConnection(TransactionContext.java:72) at org.apache.activemq.store.jdbc.TransactionContext.begin(TransactionContext.java:163) at org.apache.activemq.store.jdbc.JDBCPersistenceAdapter.beginTransaction(JDBCPersistenceAdapter.java:510) at org.apache.activemq.store.memory.MemoryTransactionStore$Tx.commit(MemoryTransactionStore.java:92) ... 15 more Caused by: java.io.EOFException: Can not read response from server. Expected to read 4 bytes, read 0 bytes before connection was unexpectedly lost. at com.mysql.jdbc.MysqlIO.readFully(MysqlIO.java:3052) at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3503) ... 28 more 2013-12-09 21:16:43,334 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 342, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:113} 2013-12-09 21:16:43,334 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:113 2013-12-09 21:16:43,334 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:113 2013-12-09 21:16:43,335 [pool-3-thread-1] DEBUG Connection:22 - SENDING: MessageAck {commandId = 343, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:113, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:113, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:113, messageCount = 1, poisonCause = null} 2013-12-09 21:16:43,335 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:113 syncCount: 1 2013-12-09 21:16:43,335 [pool-3-thread-1] DEBUG Connection:22 - SENDING: TransactionInfo {commandId = 344, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:113} 2013-12-09 21:16:43,336 [.0.1:58031@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:113 syncCount: 2 2013-12-09 21:16:43,339 [.0.1:58031@1666] WARN JDBCPersistenceAdapter - Could not get JDBC connection: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. at sun.reflect.GeneratedConstructorAccessor11.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1121) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:355) at com.mysql.jdbc.ConnectionImpl.coreConnect(ConnectionImpl.java:2479) at com.mysql.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:2516) at com.mysql.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:2301) at com.mysql.jdbc.ConnectionImpl.(ConnectionImpl.java:834) at com.mysql.jdbc.JDBC4Connection.(JDBC4Connection.java:47) at sun.reflect.GeneratedConstructorAccessor12.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:416) at com.mysql.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:317) at org.apache.commons.dbcp.DriverConnectionFactory.createConnection(DriverConnectionFactory.java:38) at org.apache.commons.dbcp.PoolableConnectionFactory.makeObject(PoolableConnectionFactory.java:582) at org.apache.commons.pool.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:1188) at org.apache.commons.dbcp.PoolingDataSource.getConnection(PoolingDataSource.java:106) at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:1044) at org.apache.activemq.store.jdbc.TransactionContext.getConnection(TransactionContext.java:56) at org.apache.activemq.store.jdbc.TransactionContext.begin(TransactionContext.java:163) at org.apache.activemq.store.jdbc.JDBCPersistenceAdapter.beginTransaction(JDBCPersistenceAdapter.java:510) at org.apache.activemq.store.memory.MemoryTransactionStore$Tx.commit(MemoryTransactionStore.java:92) at org.apache.activemq.store.memory.MemoryTransactionStore.commit(MemoryTransactionStore.java:259) at org.apache.activemq.transaction.LocalTransaction.commit(LocalTransaction.java:70) at org.apache.activemq.broker.TransactionBroker.commitTransaction(TransactionBroker.java:253) at org.apache.activemq.broker.MutableBrokerFilter.commitTransaction(MutableBrokerFilter.java:112) at org.apache.activemq.broker.TransportConnection.processCommitTransactionOnePhase(TransportConnection.java:424) at org.apache.activemq.command.TransactionInfo.visit(TransactionInfo.java:100) at org.apache.activemq.broker.TransportConnection.service(TransportConnection.java:292) at org.apache.activemq.broker.TransportConnection$1.onCommand(TransportConnection.java:149) at org.apache.activemq.transport.MutexTransport.onCommand(MutexTransport.java:50) at org.apache.activemq.transport.WireFormatNegotiator.onCommand(WireFormatNegotiator.java:113) at org.apache.activemq.transport.AbstractInactivityMonitor.onCommand(AbstractInactivityMonitor.java:270) at org.apache.activemq.transport.TransportSupport.doConsume(TransportSupport.java:83) at org.apache.activemq.transport.tcp.TcpTransport.doRun(TcpTransport.java:214) at org.apache.activemq.transport.tcp.TcpTransport.run(TcpTransport.java:196) at java.lang.Thread.run(Thread.java:722) Caused by: java.net.ConnectException: Connection refused at java.net.PlainSocketImpl.socketConnect(Native Method) at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:339) at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:200) at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:182) at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:391) at java.net.Socket.connect(Socket.java:579) at java.net.Socket.connect(Socket.java:528) at java.net.Socket.(Socket.java:425) at java.net.Socket.(Socket.java:241) at com.mysql.jdbc.StandardSocketFactory.connect(StandardSocketFactory.java:259) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:305) ... 35 more 2013-12-09 21:16:43,345 [.0.1:58031@1666] INFO DefaultIOExceptionHandler - Initiating stop/restart of transports on BrokerService[coreActiveMQBroker1] due to IO exception, java.io.IOException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. java.io.IOException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. at org.apache.activemq.util.IOExceptionSupport.create(IOExceptionSupport.java:45) at org.apache.activemq.store.jdbc.TransactionContext.getConnection(TransactionContext.java:66) at org.apache.activemq.store.jdbc.TransactionContext.begin(TransactionContext.java:163) at org.apache.activemq.store.jdbc.JDBCPersistenceAdapter.beginTransaction(JDBCPersistenceAdapter.java:510) at org.apache.activemq.store.memory.MemoryTransactionStore$Tx.commit(MemoryTransactionStore.java:92) at org.apache.activemq.store.memory.MemoryTransactionStore.commit(MemoryTransactionStore.java:259) at org.apache.activemq.transaction.LocalTransaction.commit(LocalTransaction.java:70) at org.apache.activemq.broker.TransactionBroker.commitTransaction(TransactionBroker.java:253) at org.apache.activemq.broker.MutableBrokerFilter.commitTransaction(MutableBrokerFilter.java:112) at org.apache.activemq.broker.TransportConnection.processCommitTransactionOnePhase(TransportConnection.java:424) at org.apache.activemq.command.TransactionInfo.visit(TransactionInfo.java:100) at org.apache.activemq.broker.TransportConnection.service(TransportConnection.java:292) at org.apache.activemq.broker.TransportConnection$1.onCommand(TransportConnection.java:149) at org.apache.activemq.transport.MutexTransport.onCommand(MutexTransport.java:50) at org.apache.activemq.transport.WireFormatNegotiator.onCommand(WireFormatNegotiator.java:113) at org.apache.activemq.transport.AbstractInactivityMonitor.onCommand(AbstractInactivityMonitor.java:270) at org.apache.activemq.transport.TransportSupport.doConsume(TransportSupport.java:83) at org.apache.activemq.transport.tcp.TcpTransport.doRun(TcpTransport.java:214) at org.apache.activemq.transport.tcp.TcpTransport.run(TcpTransport.java:196) at java.lang.Thread.run(Thread.java:722) Caused by: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. at sun.reflect.GeneratedConstructorAccessor11.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1121) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:355) at com.mysql.jdbc.ConnectionImpl.coreConnect(ConnectionImpl.java:2479) at com.mysql.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:2516) at com.mysql.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:2301) at com.mysql.jdbc.ConnectionImpl.(ConnectionImpl.java:834) at com.mysql.jdbc.JDBC4Connection.(JDBC4Connection.java:47) at sun.reflect.GeneratedConstructorAccessor12.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:416) at com.mysql.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:317) at org.apache.commons.dbcp.DriverConnectionFactory.createConnection(DriverConnectionFactory.java:38) at org.apache.commons.dbcp.PoolableConnectionFactory.makeObject(PoolableConnectionFactory.java:582) at org.apache.commons.pool.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:1188) at org.apache.commons.dbcp.PoolingDataSource.getConnection(PoolingDataSource.java:106) at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:1044) at org.apache.activemq.store.jdbc.TransactionContext.getConnection(TransactionContext.java:56) ... 18 more Caused by: java.net.ConnectException: Connection refused at java.net.PlainSocketImpl.socketConnect(Native Method) at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:339) at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:200) at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:182) at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:391) at java.net.Socket.connect(Socket.java:579) at java.net.Socket.connect(Socket.java:528) at java.net.Socket.(Socket.java:425) at java.net.Socket.(Socket.java:241) at com.mysql.jdbc.StandardSocketFactory.connect(StandardSocketFactory.java:259) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:305) ... 35 more 2013-12-09 21:16:43,354 [.0.1:58031@1666] WARN LocalTransaction - Store COMMIT FAILED: org.apache.activemq.broker.SuppressReplyException: Stop/RestartTransportsInitiated at org.apache.activemq.util.DefaultIOExceptionHandler.handle(DefaultIOExceptionHandler.java:124) at org.apache.activemq.broker.BrokerService.handleIOException(BrokerService.java:2528) at org.apache.activemq.store.jdbc.TransactionContext.getConnection(TransactionContext.java:67) at org.apache.activemq.store.jdbc.TransactionContext.begin(TransactionContext.java:163) at org.apache.activemq.store.jdbc.JDBCPersistenceAdapter.beginTransaction(JDBCPersistenceAdapter.java:510) at org.apache.activemq.store.memory.MemoryTransactionStore$Tx.commit(MemoryTransactionStore.java:92) at org.apache.activemq.store.memory.MemoryTransactionStore.commit(MemoryTransactionStore.java:259) at org.apache.activemq.transaction.LocalTransaction.commit(LocalTransaction.java:70) at org.apache.activemq.broker.TransactionBroker.commitTransaction(TransactionBroker.java:253) at org.apache.activemq.broker.MutableBrokerFilter.commitTransaction(MutableBrokerFilter.java:112) at org.apache.activemq.broker.TransportConnection.processCommitTransactionOnePhase(TransportConnection.java:424) at org.apache.activemq.command.TransactionInfo.visit(TransactionInfo.java:100) at org.apache.activemq.broker.TransportConnection.service(TransportConnection.java:292) at org.apache.activemq.broker.TransportConnection$1.onCommand(TransportConnection.java:149) at org.apache.activemq.transport.MutexTransport.onCommand(MutexTransport.java:50) at org.apache.activemq.transport.WireFormatNegotiator.onCommand(WireFormatNegotiator.java:113) at org.apache.activemq.transport.AbstractInactivityMonitor.onCommand(AbstractInactivityMonitor.java:270) at org.apache.activemq.transport.TransportSupport.doConsume(TransportSupport.java:83) at org.apache.activemq.transport.tcp.TcpTransport.doRun(TcpTransport.java:214) at org.apache.activemq.transport.tcp.TcpTransport.run(TcpTransport.java:196) at java.lang.Thread.run(Thread.java:722) Caused by: java.io.IOException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. at org.apache.activemq.util.IOExceptionSupport.create(IOExceptionSupport.java:45) at org.apache.activemq.store.jdbc.TransactionContext.getConnection(TransactionContext.java:66) ... 18 more Caused by: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. at sun.reflect.GeneratedConstructorAccessor11.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1121) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:355) at com.mysql.jdbc.ConnectionImpl.coreConnect(ConnectionImpl.java:2479) at com.mysql.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:2516) at com.mysql.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:2301) at com.mysql.jdbc.ConnectionImpl.(ConnectionImpl.java:834) at com.mysql.jdbc.JDBC4Connection.(JDBC4Connection.java:47) at sun.reflect.GeneratedConstructorAccessor12.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:416) at com.mysql.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:317) at org.apache.commons.dbcp.DriverConnectionFactory.createConnection(DriverConnectionFactory.java:38) at org.apache.commons.dbcp.PoolableConnectionFactory.makeObject(PoolableConnectionFactory.java:582) at org.apache.commons.pool.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:1188) at org.apache.commons.dbcp.PoolingDataSource.getConnection(PoolingDataSource.java:106) at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:1044) at org.apache.activemq.store.jdbc.TransactionContext.getConnection(TransactionContext.java:56) ... 18 more Caused by: java.net.ConnectException: Connection refused at java.net.PlainSocketImpl.socketConnect(Native Method) at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:339) at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:200) at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:182) at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:391) at java.net.Socket.connect(Socket.java:579) at java.net.Socket.connect(Socket.java:528) at java.net.Socket.(Socket.java:425) at java.net.Socket.(Socket.java:241) at com.mysql.jdbc.StandardSocketFactory.connect(StandardSocketFactory.java:259) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:305) ... 35 more 2013-12-09 21:16:43,363 [.0.1:58031@1666] DEBUG LocalTransaction - rollback: TX:ID:sideshow.home-57960-1386620121463-5:1:113 syncCount: 2 2013-12-09 21:16:43,363 [.0.1:58031@1666] DEBUG Service - Error occured while processing sync command: TransactionInfo {commandId = 344, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:113}, exception: javax.transaction.xa.XAException: STORE COMMIT FAILED: Transaction rolled back javax.transaction.xa.XAException: STORE COMMIT FAILED: Transaction rolled back at org.apache.activemq.transaction.LocalTransaction.commit(LocalTransaction.java:75) at org.apache.activemq.broker.TransactionBroker.commitTransaction(TransactionBroker.java:253) at org.apache.activemq.broker.MutableBrokerFilter.commitTransaction(MutableBrokerFilter.java:112) at org.apache.activemq.broker.TransportConnection.processCommitTransactionOnePhase(TransportConnection.java:424) at org.apache.activemq.command.TransactionInfo.visit(TransactionInfo.java:100) at org.apache.activemq.broker.TransportConnection.service(TransportConnection.java:292) at org.apache.activemq.broker.TransportConnection$1.onCommand(TransportConnection.java:149) at org.apache.activemq.transport.MutexTransport.onCommand(MutexTransport.java:50) at org.apache.activemq.transport.WireFormatNegotiator.onCommand(WireFormatNegotiator.java:113) at org.apache.activemq.transport.AbstractInactivityMonitor.onCommand(AbstractInactivityMonitor.java:270) at org.apache.activemq.transport.TransportSupport.doConsume(TransportSupport.java:83) at org.apache.activemq.transport.tcp.TcpTransport.doRun(TcpTransport.java:214) at org.apache.activemq.transport.tcp.TcpTransport.run(TcpTransport.java:196) at java.lang.Thread.run(Thread.java:722) Caused by: org.apache.activemq.broker.SuppressReplyException: Stop/RestartTransportsInitiated at org.apache.activemq.util.DefaultIOExceptionHandler.handle(DefaultIOExceptionHandler.java:124) at org.apache.activemq.broker.BrokerService.handleIOException(BrokerService.java:2528) at org.apache.activemq.store.jdbc.TransactionContext.getConnection(TransactionContext.java:67) at org.apache.activemq.store.jdbc.TransactionContext.begin(TransactionContext.java:163) at org.apache.activemq.store.jdbc.JDBCPersistenceAdapter.beginTransaction(JDBCPersistenceAdapter.java:510) at org.apache.activemq.store.memory.MemoryTransactionStore$Tx.commit(MemoryTransactionStore.java:92) at org.apache.activemq.store.memory.MemoryTransactionStore.commit(MemoryTransactionStore.java:259) at org.apache.activemq.transaction.LocalTransaction.commit(LocalTransaction.java:70) ... 13 more Caused by: java.io.IOException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. at org.apache.activemq.util.IOExceptionSupport.create(IOExceptionSupport.java:45) at org.apache.activemq.store.jdbc.TransactionContext.getConnection(TransactionContext.java:66) ... 18 more Caused by: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. at sun.reflect.GeneratedConstructorAccessor11.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1121) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:355) at com.mysql.jdbc.ConnectionImpl.coreConnect(ConnectionImpl.java:2479) at com.mysql.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:2516) at com.mysql.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:2301) at com.mysql.jdbc.ConnectionImpl.(ConnectionImpl.java:834) at com.mysql.jdbc.JDBC4Connection.(JDBC4Connection.java:47) at sun.reflect.GeneratedConstructorAccessor12.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:416) at com.mysql.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:317) at org.apache.commons.dbcp.DriverConnectionFactory.createConnection(DriverConnectionFactory.java:38) at org.apache.commons.dbcp.PoolableConnectionFactory.makeObject(PoolableConnectionFactory.java:582) at org.apache.commons.pool.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:1188) at org.apache.commons.dbcp.PoolingDataSource.getConnection(PoolingDataSource.java:106) at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:1044) at org.apache.activemq.store.jdbc.TransactionContext.getConnection(TransactionContext.java:56) ... 18 more Caused by: java.net.ConnectException: Connection refused at java.net.PlainSocketImpl.socketConnect(Native Method) at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:339) at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:200) at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:182) at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:391) at java.net.Socket.connect(Socket.java:579) at java.net.Socket.connect(Socket.java:528) at java.net.Socket.(Socket.java:425) at java.net.Socket.(Socket.java:241) at com.mysql.jdbc.StandardSocketFactory.connect(StandardSocketFactory.java:259) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:305) ... 35 more 2013-12-09 21:16:43,371 [.0.1:58031@1666] INFO TransportConnection - Suppressing reply to: TransactionInfo {commandId = 344, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:113} on: javax.transaction.xa.XAException: STORE COMMIT FAILED: Transaction rolled back, cause: org.apache.activemq.broker.SuppressReplyException: Stop/RestartTransportsInitiated 2013-12-09 21:16:43,371 [.0.1:58031@1666] WARN Service - Async error occurred: javax.transaction.xa.XAException: STORE COMMIT FAILED: Transaction rolled back at org.apache.activemq.transaction.LocalTransaction.commit(LocalTransaction.java:75) at org.apache.activemq.broker.TransactionBroker.commitTransaction(TransactionBroker.java:253) at org.apache.activemq.broker.MutableBrokerFilter.commitTransaction(MutableBrokerFilter.java:112) at org.apache.activemq.broker.TransportConnection.processCommitTransactionOnePhase(TransportConnection.java:424) at org.apache.activemq.command.TransactionInfo.visit(TransactionInfo.java:100) at org.apache.activemq.broker.TransportConnection.service(TransportConnection.java:292) at org.apache.activemq.broker.TransportConnection$1.onCommand(TransportConnection.java:149) at org.apache.activemq.transport.MutexTransport.onCommand(MutexTransport.java:50) at org.apache.activemq.transport.WireFormatNegotiator.onCommand(WireFormatNegotiator.java:113) at org.apache.activemq.transport.AbstractInactivityMonitor.onCommand(AbstractInactivityMonitor.java:270) at org.apache.activemq.transport.TransportSupport.doConsume(TransportSupport.java:83) at org.apache.activemq.transport.tcp.TcpTransport.doRun(TcpTransport.java:214) at org.apache.activemq.transport.tcp.TcpTransport.run(TcpTransport.java:196) at java.lang.Thread.run(Thread.java:722) Caused by: org.apache.activemq.broker.SuppressReplyException: Stop/RestartTransportsInitiated at org.apache.activemq.util.DefaultIOExceptionHandler.handle(DefaultIOExceptionHandler.java:124) at org.apache.activemq.broker.BrokerService.handleIOException(BrokerService.java:2528) at org.apache.activemq.store.jdbc.TransactionContext.getConnection(TransactionContext.java:67) at org.apache.activemq.store.jdbc.TransactionContext.begin(TransactionContext.java:163) at org.apache.activemq.store.jdbc.JDBCPersistenceAdapter.beginTransaction(JDBCPersistenceAdapter.java:510) at org.apache.activemq.store.memory.MemoryTransactionStore$Tx.commit(MemoryTransactionStore.java:92) at org.apache.activemq.store.memory.MemoryTransactionStore.commit(MemoryTransactionStore.java:259) at org.apache.activemq.transaction.LocalTransaction.commit(LocalTransaction.java:70) ... 13 more Caused by: java.io.IOException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. at org.apache.activemq.util.IOExceptionSupport.create(IOExceptionSupport.java:45) at org.apache.activemq.store.jdbc.TransactionContext.getConnection(TransactionContext.java:66) ... 18 more Caused by: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. at sun.reflect.GeneratedConstructorAccessor11.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1121) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:355) at com.mysql.jdbc.ConnectionImpl.coreConnect(ConnectionImpl.java:2479) at com.mysql.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:2516) at com.mysql.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:2301) at com.mysql.jdbc.ConnectionImpl.(ConnectionImpl.java:834) at com.mysql.jdbc.JDBC4Connection.(JDBC4Connection.java:47) at sun.reflect.GeneratedConstructorAccessor12.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:416) at com.mysql.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:317) at org.apache.commons.dbcp.DriverConnectionFactory.createConnection(DriverConnectionFactory.java:38) at org.apache.commons.dbcp.PoolableConnectionFactory.makeObject(PoolableConnectionFactory.java:582) at org.apache.commons.pool.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:1188) at org.apache.commons.dbcp.PoolingDataSource.getConnection(PoolingDataSource.java:106) at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:1044) at org.apache.activemq.store.jdbc.TransactionContext.getConnection(TransactionContext.java:56) ... 18 more Caused by: java.net.ConnectException: Connection refused at java.net.PlainSocketImpl.socketConnect(Native Method) at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:339) at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:200) at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:182) at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:391) at java.net.Socket.connect(Socket.java:579) at java.net.Socket.connect(Socket.java:528) at java.net.Socket.(Socket.java:425) at java.net.Socket.(Socket.java:241) at com.mysql.jdbc.StandardSocketFactory.connect(StandardSocketFactory.java:259) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:305) ... 35 more 2013-12-09 21:16:43,382 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED: ConnectionError {commandId = 0, responseRequired = false} 2013-12-09 21:16:43,382 [1666?trace=true] DEBUG ActiveMQConnection - Async exception with no exception listener: javax.transaction.xa.XAException: STORE COMMIT FAILED: Transaction rolled back javax.transaction.xa.XAException: STORE COMMIT FAILED: Transaction rolled back at org.apache.activemq.transaction.LocalTransaction.commit(LocalTransaction.java:75) at org.apache.activemq.broker.TransactionBroker.commitTransaction(TransactionBroker.java:253) at org.apache.activemq.broker.MutableBrokerFilter.commitTransaction(MutableBrokerFilter.java:112) at org.apache.activemq.broker.TransportConnection.processCommitTransactionOnePhase(TransportConnection.java:424) at org.apache.activemq.command.TransactionInfo.visit(TransactionInfo.java:100) at org.apache.activemq.broker.TransportConnection.service(TransportConnection.java:292) at org.apache.activemq.broker.TransportConnection$1.onCommand(TransportConnection.java:149) at org.apache.activemq.transport.MutexTransport.onCommand(MutexTransport.java:50) at org.apache.activemq.transport.WireFormatNegotiator.onCommand(WireFormatNegotiator.java:113) at org.apache.activemq.transport.AbstractInactivityMonitor.onCommand(AbstractInactivityMonitor.java:270) at org.apache.activemq.transport.TransportSupport.doConsume(TransportSupport.java:83) at org.apache.activemq.transport.tcp.TcpTransport.doRun(TcpTransport.java:214) at org.apache.activemq.transport.tcp.TcpTransport.run(TcpTransport.java:196) at java.lang.Thread.run(Thread.java:722) Caused by: java.lang.Throwable: org.apache.activemq.broker.SuppressReplyException: Stop/RestartTransportsInitiated at org.apache.activemq.util.DefaultIOExceptionHandler.handle(DefaultIOExceptionHandler.java:124) at org.apache.activemq.broker.BrokerService.handleIOException(BrokerService.java:2528) at org.apache.activemq.store.jdbc.TransactionContext.getConnection(TransactionContext.java:67) at org.apache.activemq.store.jdbc.TransactionContext.begin(TransactionContext.java:163) at org.apache.activemq.store.jdbc.JDBCPersistenceAdapter.beginTransaction(JDBCPersistenceAdapter.java:510) at org.apache.activemq.store.memory.MemoryTransactionStore$Tx.commit(MemoryTransactionStore.java:92) at org.apache.activemq.store.memory.MemoryTransactionStore.commit(MemoryTransactionStore.java:259) at org.apache.activemq.transaction.LocalTransaction.commit(LocalTransaction.java:70) ... 13 more Caused by: java.io.IOException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. at org.apache.activemq.util.IOExceptionSupport.create(IOExceptionSupport.java:45) at org.apache.activemq.store.jdbc.TransactionContext.getConnection(TransactionContext.java:66) ... 18 more Caused by: java.lang.Throwable: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. at sun.reflect.GeneratedConstructorAccessor11.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1121) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:355) at com.mysql.jdbc.ConnectionImpl.coreConnect(ConnectionImpl.java:2479) at com.mysql.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:2516) at com.mysql.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:2301) at com.mysql.jdbc.ConnectionImpl.(ConnectionImpl.java:834) at com.mysql.jdbc.JDBC4Connection.(JDBC4Connection.java:47) at sun.reflect.GeneratedConstructorAccessor12.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:416) at com.mysql.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:317) at org.apache.commons.dbcp.DriverConnectionFactory.createConnection(DriverConnectionFactory.java:38) at org.apache.commons.dbcp.PoolableConnectionFactory.makeObject(PoolableConnectionFactory.java:582) at org.apache.commons.pool.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:1188) at org.apache.commons.dbcp.PoolingDataSource.getConnection(PoolingDataSource.java:106) at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:1044) at org.apache.activemq.store.jdbc.TransactionContext.getConnection(TransactionContext.java:56) ... 18 more Caused by: java.net.ConnectException: Connection refused at java.net.PlainSocketImpl.socketConnect(Native Method) at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:339) at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:200) at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:182) at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:391) at java.net.Socket.connect(Socket.java:579) at java.net.Socket.connect(Socket.java:528) at java.net.Socket.(Socket.java:425) at java.net.Socket.(Socket.java:241) at com.mysql.jdbc.StandardSocketFactory.connect(StandardSocketFactory.java:259) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:305) ... 35 more 2013-12-09 21:16:43,684 [Broker1] Task-1] DEBUG TransportConnection - Stopping connection: tcp://127.0.0.1:58031 2013-12-09 21:16:43,684 [Broker1] Task-1] DEBUG TcpTransport - Stopping transport tcp:///127.0.0.1:58031@1666 2013-12-09 21:16:43,685 [Broker1] Task-1] DEBUG TaskRunnerFactory - Initialized TaskRunnerFactory[ActiveMQ Task] using ExecutorService: java.util.concurrent.ThreadPoolExecutor@528b376[Running, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0] 2013-12-09 21:16:43,686 [ActiveMQ Task-1] DEBUG TcpTransport - Closed socket Socket[addr=/127.0.0.1,port=58031,localport=1666] 2013-12-09 21:16:43,686 [.0.1:1666@58031] DEBUG Connection:22 - RECEIVED Exception: java.io.EOFException java.io.EOFException at java.io.DataInputStream.readInt(DataInputStream.java:392) at org.apache.activemq.openwire.OpenWireFormat.unmarshal(OpenWireFormat.java:275) at org.apache.activemq.transport.tcp.TcpTransport.readCommand(TcpTransport.java:221) at org.apache.activemq.transport.tcp.TcpTransport.doRun(TcpTransport.java:213) at org.apache.activemq.transport.tcp.TcpTransport.run(TcpTransport.java:196) at java.lang.Thread.run(Thread.java:722) 2013-12-09 21:16:43,686 [Broker1] Task-1] DEBUG ThreadPoolUtils - Forcing shutdown of ExecutorService: java.util.concurrent.ThreadPoolExecutor@528b376[Running, pool size = 1, active threads = 0, queued tasks = 0, completed tasks = 1] 2013-12-09 21:16:43,688 [.0.1:1666@58031] DEBUG ThreadPoolUtils - Shutdown of ExecutorService: java.util.concurrent.ThreadPoolExecutor@4e83de2b[Terminated, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0] is shutdown: true and terminated: true took: 0.000 seconds. 2013-12-09 21:16:43,688 [Broker1] Task-1] DEBUG TransportConnection - Stopped transport: tcp://127.0.0.1:58031 2013-12-09 21:16:43,688 [.0.1:1666@58031] DEBUG TcpTransport - Stopping transport tcp://localhost/127.0.0.1:1666@58031 2013-12-09 21:16:43,688 [Broker1] Task-1] DEBUG TransportConnection - Cleaning up connection resources: tcp://127.0.0.1:58031 2013-12-09 21:16:43,689 [.0.1:1666@58031] DEBUG TaskRunnerFactory - Initialized TaskRunnerFactory[ActiveMQ Task] using ExecutorService: java.util.concurrent.ThreadPoolExecutor@531cc7a1[Running, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0] 2013-12-09 21:16:43,689 [Broker1] Task-1] DEBUG TransportConnection - remove connection id: ID:sideshow.home-57960-1386620121463-5:1 2013-12-09 21:16:43,690 [ActiveMQ Task-1] DEBUG TcpTransport - Closed socket Socket[addr=localhost/127.0.0.1,port=1666,localport=58031] 2013-12-09 21:16:43,690 [Broker1] Task-1] DEBUG AbstractRegion - coreActiveMQBroker1 removing consumer: ID:sideshow.home-57960-1386620121463-5:1:1:1 for destination: queue://test_queue_z0 2013-12-09 21:16:43,690 [.0.1:1666@58031] DEBUG ThreadPoolUtils - Forcing shutdown of ExecutorService: java.util.concurrent.ThreadPoolExecutor@531cc7a1[Running, pool size = 1, active threads = 0, queued tasks = 0, completed tasks = 1] 2013-12-09 21:16:43,691 [Broker1] Task-1] DEBUG Queue - queue://test_queue_z0 remove sub: QueueSubscription: consumer=ID:sideshow.home-57960-1386620121463-5:1:1:1, destinations=1, dispatched=489, delivered=1, pending=0, lastDeliveredSeqId: 0, dequeues: 110, dispatched: 599, inflight: 489 2013-12-09 21:16:43,691 [.0.1:1666@58031] WARN FailoverTransport - Transport (tcp://127.0.0.1:1666) failed, reason: java.io.EOFException, attempting to automatically reconnect 2013-12-09 21:16:43,693 [.0.1:1666@58031] DEBUG ActiveMQConnection - transport interrupted - processing required, dispatchers: 1 2013-12-09 21:16:43,693 [-5:1] Scheduler] DEBUG ActiveMQMessageConsumer - ID:sideshow.home-57960-1386620121463-5:1:1:1 clearing unconsumed list (488) on transport interrupt 2013-12-09 21:16:43,693 [.0.1:1666@58031] DEBUG ActiveMQConnection - notified failover transport (unconnected) of pending interruption processing for: ID:sideshow.home-57960-1386620121463-5:1 2013-12-09 21:16:43,694 [ActiveMQ Task-2] DEBUG FailoverTransport - urlList connectionList:[tcp://localhost:1666?trace=true], from: [tcp://localhost:1666?trace=true] 2013-12-09 21:16:43,695 [ActiveMQ Task-2] DEBUG FailoverTransport - Waiting 10 ms before attempting connection. 2013-12-09 21:16:43,698 [-5:1] Scheduler] DEBUG ActiveMQConnection - transportInterruptionProcessingComplete: 0 for:ID:sideshow.home-57960-1386620121463-5:1 2013-12-09 21:16:43,706 [ActiveMQ Task-2] DEBUG FailoverTransport - Attempting 0th connect to: tcp://localhost:1666?trace=true 2013-12-09 21:16:43,707 [Broker1] Task-4] DEBUG Queue - test_queue_z0 toPageIn: 0, Inflight: 0, pagedInMessages.size 489, enqueueCount: 599, dequeueCount: 110 2013-12-09 21:16:43,707 [Broker1] Task-1] DEBUG AbstractRegion - coreActiveMQBroker1 removing consumer: ID:sideshow.home-57960-1386620121463-5:1:-1:1 for destination: ActiveMQ.Advisory.TempQueue,ActiveMQ.Advisory.TempTopic 2013-12-09 21:16:43,707 [ActiveMQ Task-2] DEBUG FailoverTransport - Connect fail to: tcp://localhost:1666?trace=true, reason: java.net.ConnectException: Connection refused 2013-12-09 21:16:43,708 [Broker1] Task-1] DEBUG TransportConnection - Connection Stopped: tcp://127.0.0.1:58031 2013-12-09 21:16:43,708 [ActiveMQ Task-2] DEBUG TcpTransport - Stopping transport tcp://localhost:1666?trace=true 2013-12-09 21:16:43,708 [stop transports] INFO TransportConnector - Connector openwire stopped 2013-12-09 21:16:43,709 [ActiveMQ Task-2] DEBUG TaskRunnerFactory - Initialized TaskRunnerFactory[ActiveMQ Task] using ExecutorService: java.util.concurrent.ThreadPoolExecutor@24c4bc13[Running, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0] 2013-12-09 21:16:43,709 [stop transports] INFO DefaultIOExceptionHandler - Successfully stopped transports on BrokerService[coreActiveMQBroker1] 2013-12-09 21:16:43,710 [ActiveMQ Task-1] DEBUG TcpTransport - Closed socket Socket[unconnected] 2013-12-09 21:16:43,710 [tart transports] DEBUG LeaseDatabaseLocker - coreActiveMQBroker1, lease keepAlive Query is UPDATE ACTIVEMQ_LOCK SET BROKER_NAME=?, TIME=? WHERE BROKER_NAME=? AND ID = 1 2013-12-09 21:16:43,710 [ActiveMQ Task-2] DEBUG ThreadPoolUtils - Forcing shutdown of ExecutorService: java.util.concurrent.ThreadPoolExecutor@24c4bc13[Running, pool size = 1, active threads = 0, queued tasks = 0, completed tasks = 1] 2013-12-09 21:16:43,711 [ActiveMQ Task-2] DEBUG FailoverTransport - Waiting 10 ms before attempting connection 2013-12-09 21:16:43,711 [-5:1] Scheduler] DEBUG ActiveMQConnection - notified failover transport (unconnected) of interruption completion for: ID:sideshow.home-57960-1386620121463-5:1 2013-12-09 21:16:43,713 [-5:1] Scheduler] DEBUG ActiveMQMessageConsumer - ID:sideshow.home-57960-1386620121463-5:1:1:1 tracking existing transacted null delivered list (1) on transport interrupt 2013-12-09 21:16:43,713 [tart transports] WARN LeaseDatabaseLocker - coreActiveMQBroker1, failed to update lease: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. at sun.reflect.GeneratedConstructorAccessor11.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1121) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:355) at com.mysql.jdbc.ConnectionImpl.coreConnect(ConnectionImpl.java:2479) at com.mysql.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:2516) at com.mysql.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:2301) at com.mysql.jdbc.ConnectionImpl.(ConnectionImpl.java:834) at com.mysql.jdbc.JDBC4Connection.(JDBC4Connection.java:47) at sun.reflect.GeneratedConstructorAccessor12.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:416) at com.mysql.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:317) at org.apache.commons.dbcp.DriverConnectionFactory.createConnection(DriverConnectionFactory.java:38) at org.apache.commons.dbcp.PoolableConnectionFactory.makeObject(PoolableConnectionFactory.java:582) at org.apache.commons.pool.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:1188) at org.apache.commons.dbcp.PoolingDataSource.getConnection(PoolingDataSource.java:106) at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:1044) at org.apache.activemq.store.jdbc.AbstractJDBCLocker.getConnection(AbstractJDBCLocker.java:80) at org.apache.activemq.store.jdbc.LeaseDatabaseLocker.keepAlive(LeaseDatabaseLocker.java:178) at org.apache.activemq.store.jdbc.JDBCIOExceptionHandler.hasLockOwnership(JDBCIOExceptionHandler.java:44) at org.apache.activemq.util.DefaultIOExceptionHandler$1$1.run(DefaultIOExceptionHandler.java:93) Caused by: java.net.ConnectException: Connection refused at java.net.PlainSocketImpl.socketConnect(Native Method) at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:339) at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:200) at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:182) at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:391) at java.net.Socket.connect(Socket.java:579) at java.net.Socket.connect(Socket.java:528) at java.net.Socket.(Socket.java:425) at java.net.Socket.(Socket.java:241) at com.mysql.jdbc.StandardSocketFactory.connect(StandardSocketFactory.java:259) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:305) ... 20 more 2013-12-09 21:16:43,723 [ActiveMQ Task-2] DEBUG FailoverTransport - urlList connectionList:[tcp://localhost:1666?trace=true], from: [tcp://localhost:1666?trace=true] 2013-12-09 21:16:43,723 [tart transports] DEBUG JDBCPersistenceAdapter - Could not get JDBC connection for checkpoint: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. 2013-12-09 21:16:43,723 [ActiveMQ Task-2] DEBUG FailoverTransport - Waiting 20 ms before attempting connection. 2013-12-09 21:16:43,723 [tart transports] INFO DefaultIOExceptionHandler - waiting for broker persistence adapter checkpoint to succeed before restarting transports 2013-12-09 21:16:43,745 [ActiveMQ Task-2] DEBUG FailoverTransport - Attempting 1th connect to: tcp://localhost:1666?trace=true 2013-12-09 21:16:43,745 [ActiveMQ Task-2] DEBUG FailoverTransport - Connect fail to: tcp://localhost:1666?trace=true, reason: java.net.ConnectException: Connection refused 2013-12-09 21:16:43,746 [ActiveMQ Task-2] DEBUG TcpTransport - Stopping transport tcp://localhost:1666?trace=true 2013-12-09 21:16:43,746 [ActiveMQ Task-2] DEBUG TaskRunnerFactory - Initialized TaskRunnerFactory[ActiveMQ Task] using ExecutorService: java.util.concurrent.ThreadPoolExecutor@4044d868[Running, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0] 2013-12-09 21:16:43,747 [ActiveMQ Task-1] DEBUG TcpTransport - Closed socket Socket[unconnected] 2013-12-09 21:16:43,747 [ActiveMQ Task-2] DEBUG ThreadPoolUtils - Forcing shutdown of ExecutorService: java.util.concurrent.ThreadPoolExecutor@4044d868[Running, pool size = 1, active threads = 0, queued tasks = 0, completed tasks = 1] 2013-12-09 21:16:43,747 [ActiveMQ Task-2] DEBUG FailoverTransport - Waiting 20 ms before attempting connection 2013-12-09 21:16:43,769 [ActiveMQ Task-2] DEBUG FailoverTransport - urlList connectionList:[tcp://localhost:1666?trace=true], from: [tcp://localhost:1666?trace=true] 2013-12-09 21:16:43,769 [ActiveMQ Task-2] DEBUG FailoverTransport - Waiting 40 ms before attempting connection. 2013-12-09 21:16:43,810 [ActiveMQ Task-2] DEBUG FailoverTransport - Attempting 2th connect to: tcp://localhost:1666?trace=true 2013-12-09 21:16:43,811 [ActiveMQ Task-2] DEBUG FailoverTransport - Connect fail to: tcp://localhost:1666?trace=true, reason: java.net.ConnectException: Connection refused 2013-12-09 21:16:43,811 [ActiveMQ Task-2] DEBUG TcpTransport - Stopping transport tcp://localhost:1666?trace=true 2013-12-09 21:16:43,811 [ActiveMQ Task-2] DEBUG TaskRunnerFactory - Initialized TaskRunnerFactory[ActiveMQ Task] using ExecutorService: java.util.concurrent.ThreadPoolExecutor@74727a94[Running, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0] 2013-12-09 21:16:43,812 [ActiveMQ Task-1] DEBUG TcpTransport - Closed socket Socket[unconnected] 2013-12-09 21:16:43,812 [ActiveMQ Task-2] DEBUG ThreadPoolUtils - Forcing shutdown of ExecutorService: java.util.concurrent.ThreadPoolExecutor@74727a94[Running, pool size = 1, active threads = 0, queued tasks = 0, completed tasks = 1] 2013-12-09 21:16:43,813 [ActiveMQ Task-2] DEBUG FailoverTransport - Waiting 40 ms before attempting connection 2013-12-09 21:16:43,854 [ActiveMQ Task-2] DEBUG FailoverTransport - urlList connectionList:[tcp://localhost:1666?trace=true], from: [tcp://localhost:1666?trace=true] 2013-12-09 21:16:43,854 [ActiveMQ Task-2] DEBUG FailoverTransport - Waiting 80 ms before attempting connection. 2013-12-09 21:16:43,935 [ActiveMQ Task-2] DEBUG FailoverTransport - Attempting 3th connect to: tcp://localhost:1666?trace=true 2013-12-09 21:16:43,936 [ActiveMQ Task-2] DEBUG FailoverTransport - Connect fail to: tcp://localhost:1666?trace=true, reason: java.net.ConnectException: Connection refused 2013-12-09 21:16:43,936 [ActiveMQ Task-2] DEBUG TcpTransport - Stopping transport tcp://localhost:1666?trace=true 2013-12-09 21:16:43,937 [ActiveMQ Task-2] DEBUG TaskRunnerFactory - Initialized TaskRunnerFactory[ActiveMQ Task] using ExecutorService: java.util.concurrent.ThreadPoolExecutor@6093a0c5[Running, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0] 2013-12-09 21:16:43,938 [ActiveMQ Task-1] DEBUG TcpTransport - Closed socket Socket[unconnected] 2013-12-09 21:16:43,938 [ActiveMQ Task-2] DEBUG ThreadPoolUtils - Forcing shutdown of ExecutorService: java.util.concurrent.ThreadPoolExecutor@6093a0c5[Running, pool size = 1, active threads = 0, queued tasks = 0, completed tasks = 1] 2013-12-09 21:16:43,938 [ActiveMQ Task-2] DEBUG FailoverTransport - Waiting 80 ms before attempting connection 2013-12-09 21:16:44,020 [ActiveMQ Task-2] DEBUG FailoverTransport - urlList connectionList:[tcp://localhost:1666?trace=true], from: [tcp://localhost:1666?trace=true] 2013-12-09 21:16:44,020 [ActiveMQ Task-2] DEBUG FailoverTransport - Waiting 160 ms before attempting connection. 2013-12-09 21:16:44,181 [ActiveMQ Task-2] DEBUG FailoverTransport - Attempting 4th connect to: tcp://localhost:1666?trace=true 2013-12-09 21:16:44,182 [ActiveMQ Task-2] DEBUG FailoverTransport - Connect fail to: tcp://localhost:1666?trace=true, reason: java.net.ConnectException: Connection refused 2013-12-09 21:16:44,182 [ActiveMQ Task-2] DEBUG TcpTransport - Stopping transport tcp://localhost:1666?trace=true 2013-12-09 21:16:44,182 [ActiveMQ Task-2] DEBUG TaskRunnerFactory - Initialized TaskRunnerFactory[ActiveMQ Task] using ExecutorService: java.util.concurrent.ThreadPoolExecutor@3d561b1a[Running, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0] 2013-12-09 21:16:44,183 [ActiveMQ Task-1] DEBUG TcpTransport - Closed socket Socket[unconnected] 2013-12-09 21:16:44,183 [ActiveMQ Task-2] DEBUG ThreadPoolUtils - Forcing shutdown of ExecutorService: java.util.concurrent.ThreadPoolExecutor@3d561b1a[Running, pool size = 1, active threads = 0, queued tasks = 0, completed tasks = 1] 2013-12-09 21:16:44,184 [ActiveMQ Task-2] DEBUG FailoverTransport - Waiting 160 ms before attempting connection 2013-12-09 21:16:44,345 [ActiveMQ Task-2] DEBUG FailoverTransport - urlList connectionList:[tcp://localhost:1666?trace=true], from: [tcp://localhost:1666?trace=true] 2013-12-09 21:16:44,346 [ActiveMQ Task-2] DEBUG FailoverTransport - Waiting 320 ms before attempting connection. 2013-12-09 21:16:44,667 [ActiveMQ Task-2] DEBUG FailoverTransport - Attempting 5th connect to: tcp://localhost:1666?trace=true 2013-12-09 21:16:44,668 [ActiveMQ Task-2] DEBUG FailoverTransport - Connect fail to: tcp://localhost:1666?trace=true, reason: java.net.ConnectException: Connection refused 2013-12-09 21:16:44,668 [ActiveMQ Task-2] DEBUG TcpTransport - Stopping transport tcp://localhost:1666?trace=true 2013-12-09 21:16:44,668 [ActiveMQ Task-2] DEBUG TaskRunnerFactory - Initialized TaskRunnerFactory[ActiveMQ Task] using ExecutorService: java.util.concurrent.ThreadPoolExecutor@42e97022[Running, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0] 2013-12-09 21:16:44,669 [ActiveMQ Task-1] DEBUG TcpTransport - Closed socket Socket[unconnected] 2013-12-09 21:16:44,670 [ActiveMQ Task-2] DEBUG ThreadPoolUtils - Forcing shutdown of ExecutorService: java.util.concurrent.ThreadPoolExecutor@42e97022[Running, pool size = 1, active threads = 0, queued tasks = 0, completed tasks = 1] 2013-12-09 21:16:44,670 [ActiveMQ Task-2] DEBUG FailoverTransport - Waiting 320 ms before attempting connection 2013-12-09 21:16:44,991 [ActiveMQ Task-2] DEBUG FailoverTransport - urlList connectionList:[tcp://localhost:1666?trace=true], from: [tcp://localhost:1666?trace=true] 2013-12-09 21:16:44,991 [ActiveMQ Task-2] DEBUG FailoverTransport - Waiting 640 ms before attempting connection. 2013-12-09 21:16:45,632 [ActiveMQ Task-2] DEBUG FailoverTransport - Attempting 6th connect to: tcp://localhost:1666?trace=true 2013-12-09 21:16:45,633 [ActiveMQ Task-2] DEBUG FailoverTransport - Connect fail to: tcp://localhost:1666?trace=true, reason: java.net.ConnectException: Connection refused 2013-12-09 21:16:45,633 [ActiveMQ Task-2] DEBUG TcpTransport - Stopping transport tcp://localhost:1666?trace=true 2013-12-09 21:16:45,633 [ActiveMQ Task-2] DEBUG TaskRunnerFactory - Initialized TaskRunnerFactory[ActiveMQ Task] using ExecutorService: java.util.concurrent.ThreadPoolExecutor@64868d8[Running, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0] 2013-12-09 21:16:45,634 [ActiveMQ Task-1] DEBUG TcpTransport - Closed socket Socket[unconnected] 2013-12-09 21:16:45,634 [ActiveMQ Task-2] DEBUG ThreadPoolUtils - Forcing shutdown of ExecutorService: java.util.concurrent.ThreadPoolExecutor@64868d8[Running, pool size = 1, active threads = 0, queued tasks = 0, completed tasks = 1] 2013-12-09 21:16:45,635 [ActiveMQ Task-2] DEBUG FailoverTransport - Waiting 640 ms before attempting connection 2013-12-09 21:16:46,276 [ActiveMQ Task-2] DEBUG FailoverTransport - urlList connectionList:[tcp://localhost:1666?trace=true], from: [tcp://localhost:1666?trace=true] 2013-12-09 21:16:46,276 [ActiveMQ Task-2] DEBUG FailoverTransport - Waiting 1280 ms before attempting connection. 2013-12-09 21:16:46,453 [ Scheduled Task] DEBUG LeaseDatabaseLocker - coreActiveMQBroker1, lease keepAlive Query is UPDATE ACTIVEMQ_LOCK SET BROKER_NAME=?, TIME=? WHERE BROKER_NAME=? AND ID = 1 2013-12-09 21:16:46,456 [ Scheduled Task] WARN LeaseDatabaseLocker - coreActiveMQBroker1, failed to update lease: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. at sun.reflect.GeneratedConstructorAccessor11.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1121) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:355) at com.mysql.jdbc.ConnectionImpl.coreConnect(ConnectionImpl.java:2479) at com.mysql.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:2516) at com.mysql.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:2301) at com.mysql.jdbc.ConnectionImpl.(ConnectionImpl.java:834) at com.mysql.jdbc.JDBC4Connection.(JDBC4Connection.java:47) at sun.reflect.GeneratedConstructorAccessor12.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:416) at com.mysql.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:317) at org.apache.commons.dbcp.DriverConnectionFactory.createConnection(DriverConnectionFactory.java:38) at org.apache.commons.dbcp.PoolableConnectionFactory.makeObject(PoolableConnectionFactory.java:582) at org.apache.commons.pool.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:1188) at org.apache.commons.dbcp.PoolingDataSource.getConnection(PoolingDataSource.java:106) at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:1044) at org.apache.activemq.store.jdbc.AbstractJDBCLocker.getConnection(AbstractJDBCLocker.java:80) at org.apache.activemq.store.jdbc.LeaseDatabaseLocker.keepAlive(LeaseDatabaseLocker.java:178) at org.apache.activemq.broker.LockableServiceSupport.keepLockAlive(LockableServiceSupport.java:125) at org.apache.activemq.broker.LockableServiceSupport$1.run(LockableServiceSupport.java:98) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471) at java.util.concurrent.FutureTask$Sync.innerRunAndReset(FutureTask.java:351) at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:178) at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:178) at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603) at java.lang.Thread.run(Thread.java:722) Caused by: java.net.ConnectException: Connection refused at java.net.PlainSocketImpl.socketConnect(Native Method) at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:339) at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:200) at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:182) at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:391) at java.net.Socket.connect(Socket.java:579) at java.net.Socket.connect(Socket.java:528) at java.net.Socket.(Socket.java:425) at java.net.Socket.(Socket.java:241) at com.mysql.jdbc.StandardSocketFactory.connect(StandardSocketFactory.java:259) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:305) ... 28 more 2013-12-09 21:16:46,461 [ Scheduled Task] WARN LockableServiceSupport - locker keepAlive resulted in org.apache.activemq.broker.SuppressReplyException: Stop/RestartTransportsInitiated at org.apache.activemq.util.DefaultIOExceptionHandler.handle(DefaultIOExceptionHandler.java:124) at org.apache.activemq.broker.BrokerService.handleIOException(BrokerService.java:2528) at org.apache.activemq.store.jdbc.LeaseDatabaseLocker.keepAlive(LeaseDatabaseLocker.java:197) at org.apache.activemq.broker.LockableServiceSupport.keepLockAlive(LockableServiceSupport.java:125) at org.apache.activemq.broker.LockableServiceSupport$1.run(LockableServiceSupport.java:98) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471) at java.util.concurrent.FutureTask$Sync.innerRunAndReset(FutureTask.java:351) at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:178) at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:178) at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603) at java.lang.Thread.run(Thread.java:722) Caused by: java.io.IOException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. at org.apache.activemq.util.IOExceptionSupport.create(IOExceptionSupport.java:45) at org.apache.activemq.store.jdbc.LeaseDatabaseLocker.keepAlive(LeaseDatabaseLocker.java:196) ... 10 more Caused by: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. at sun.reflect.GeneratedConstructorAccessor11.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1121) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:355) at com.mysql.jdbc.ConnectionImpl.coreConnect(ConnectionImpl.java:2479) at com.mysql.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:2516) at com.mysql.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:2301) at com.mysql.jdbc.ConnectionImpl.(ConnectionImpl.java:834) at com.mysql.jdbc.JDBC4Connection.(JDBC4Connection.java:47) at sun.reflect.GeneratedConstructorAccessor12.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:416) at com.mysql.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:317) at org.apache.commons.dbcp.DriverConnectionFactory.createConnection(DriverConnectionFactory.java:38) at org.apache.commons.dbcp.PoolableConnectionFactory.makeObject(PoolableConnectionFactory.java:582) at org.apache.commons.pool.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:1188) at org.apache.commons.dbcp.PoolingDataSource.getConnection(PoolingDataSource.java:106) at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:1044) at org.apache.activemq.store.jdbc.AbstractJDBCLocker.getConnection(AbstractJDBCLocker.java:80) at org.apache.activemq.store.jdbc.LeaseDatabaseLocker.keepAlive(LeaseDatabaseLocker.java:178) ... 10 more Caused by: java.net.ConnectException: Connection refused at java.net.PlainSocketImpl.socketConnect(Native Method) at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:339) at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:200) at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:182) at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:391) at java.net.Socket.connect(Socket.java:579) at java.net.Socket.connect(Socket.java:528) at java.net.Socket.(Socket.java:425) at java.net.Socket.(Socket.java:241) at com.mysql.jdbc.StandardSocketFactory.connect(StandardSocketFactory.java:259) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:305) ... 28 more 2013-12-09 21:16:47,558 [ActiveMQ Task-2] DEBUG FailoverTransport - Attempting 7th connect to: tcp://localhost:1666?trace=true 2013-12-09 21:16:47,558 [ActiveMQ Task-2] DEBUG FailoverTransport - Connect fail to: tcp://localhost:1666?trace=true, reason: java.net.ConnectException: Connection refused 2013-12-09 21:16:47,559 [ActiveMQ Task-2] DEBUG TcpTransport - Stopping transport tcp://localhost:1666?trace=true 2013-12-09 21:16:47,559 [ActiveMQ Task-2] DEBUG TaskRunnerFactory - Initialized TaskRunnerFactory[ActiveMQ Task] using ExecutorService: java.util.concurrent.ThreadPoolExecutor@250382ca[Running, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0] 2013-12-09 21:16:47,559 [ActiveMQ Task-1] DEBUG TcpTransport - Closed socket Socket[unconnected] 2013-12-09 21:16:47,560 [ActiveMQ Task-2] DEBUG ThreadPoolUtils - Forcing shutdown of ExecutorService: java.util.concurrent.ThreadPoolExecutor@250382ca[Running, pool size = 1, active threads = 0, queued tasks = 0, completed tasks = 1] 2013-12-09 21:16:47,560 [ActiveMQ Task-2] DEBUG FailoverTransport - Waiting 1280 ms before attempting connection 2013-12-09 21:16:48,725 [tart transports] DEBUG LeaseDatabaseLocker - coreActiveMQBroker1, lease keepAlive Query is UPDATE ACTIVEMQ_LOCK SET BROKER_NAME=?, TIME=? WHERE BROKER_NAME=? AND ID = 1 2013-12-09 21:16:48,727 [tart transports] WARN LeaseDatabaseLocker - coreActiveMQBroker1, failed to update lease: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. at sun.reflect.GeneratedConstructorAccessor11.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1121) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:355) at com.mysql.jdbc.ConnectionImpl.coreConnect(ConnectionImpl.java:2479) at com.mysql.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:2516) at com.mysql.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:2301) at com.mysql.jdbc.ConnectionImpl.(ConnectionImpl.java:834) at com.mysql.jdbc.JDBC4Connection.(JDBC4Connection.java:47) at sun.reflect.GeneratedConstructorAccessor12.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:416) at com.mysql.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:317) at org.apache.commons.dbcp.DriverConnectionFactory.createConnection(DriverConnectionFactory.java:38) at org.apache.commons.dbcp.PoolableConnectionFactory.makeObject(PoolableConnectionFactory.java:582) at org.apache.commons.pool.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:1188) at org.apache.commons.dbcp.PoolingDataSource.getConnection(PoolingDataSource.java:106) at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:1044) at org.apache.activemq.store.jdbc.AbstractJDBCLocker.getConnection(AbstractJDBCLocker.java:80) at org.apache.activemq.store.jdbc.LeaseDatabaseLocker.keepAlive(LeaseDatabaseLocker.java:178) at org.apache.activemq.store.jdbc.JDBCIOExceptionHandler.hasLockOwnership(JDBCIOExceptionHandler.java:44) at org.apache.activemq.util.DefaultIOExceptionHandler$1$1.run(DefaultIOExceptionHandler.java:93) Caused by: java.net.ConnectException: Connection refused at java.net.PlainSocketImpl.socketConnect(Native Method) at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:339) at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:200) at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:182) at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:391) at java.net.Socket.connect(Socket.java:579) at java.net.Socket.connect(Socket.java:528) at java.net.Socket.(Socket.java:425) at java.net.Socket.(Socket.java:241) at com.mysql.jdbc.StandardSocketFactory.connect(StandardSocketFactory.java:259) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:305) ... 20 more 2013-12-09 21:16:48,735 [tart transports] DEBUG JDBCPersistenceAdapter - Could not get JDBC connection for checkpoint: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. 2013-12-09 21:16:48,735 [tart transports] INFO DefaultIOExceptionHandler - waiting for broker persistence adapter checkpoint to succeed before restarting transports 2013-12-09 21:16:48,841 [ActiveMQ Task-2] DEBUG FailoverTransport - urlList connectionList:[tcp://localhost:1666?trace=true], from: [tcp://localhost:1666?trace=true] 2013-12-09 21:16:48,841 [ActiveMQ Task-2] DEBUG FailoverTransport - Waiting 2000 ms before attempting connection. 2013-12-09 21:16:50,843 [ActiveMQ Task-2] DEBUG FailoverTransport - Attempting 8th connect to: tcp://localhost:1666?trace=true 2013-12-09 21:16:50,843 [ActiveMQ Task-2] DEBUG FailoverTransport - Connect fail to: tcp://localhost:1666?trace=true, reason: java.net.ConnectException: Connection refused 2013-12-09 21:16:50,843 [ActiveMQ Task-2] DEBUG TcpTransport - Stopping transport tcp://localhost:1666?trace=true 2013-12-09 21:16:50,844 [ActiveMQ Task-2] DEBUG TaskRunnerFactory - Initialized TaskRunnerFactory[ActiveMQ Task] using ExecutorService: java.util.concurrent.ThreadPoolExecutor@18f4f1da[Running, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0] 2013-12-09 21:16:50,844 [ActiveMQ Task-1] DEBUG TcpTransport - Closed socket Socket[unconnected] 2013-12-09 21:16:50,844 [ActiveMQ Task-2] DEBUG ThreadPoolUtils - Forcing shutdown of ExecutorService: java.util.concurrent.ThreadPoolExecutor@18f4f1da[Running, pool size = 1, active threads = 0, queued tasks = 0, completed tasks = 1] 2013-12-09 21:16:50,845 [ActiveMQ Task-2] DEBUG FailoverTransport - Waiting 2000 ms before attempting connection 2013-12-09 21:16:51,454 [ Scheduled Task] DEBUG LeaseDatabaseLocker - coreActiveMQBroker1, lease keepAlive Query is UPDATE ACTIVEMQ_LOCK SET BROKER_NAME=?, TIME=? WHERE BROKER_NAME=? AND ID = 1 2013-12-09 21:16:51,457 [ Scheduled Task] WARN LeaseDatabaseLocker - coreActiveMQBroker1, failed to update lease: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. at sun.reflect.GeneratedConstructorAccessor11.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1121) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:355) at com.mysql.jdbc.ConnectionImpl.coreConnect(ConnectionImpl.java:2479) at com.mysql.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:2516) at com.mysql.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:2301) at com.mysql.jdbc.ConnectionImpl.(ConnectionImpl.java:834) at com.mysql.jdbc.JDBC4Connection.(JDBC4Connection.java:47) at sun.reflect.GeneratedConstructorAccessor12.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:416) at com.mysql.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:317) at org.apache.commons.dbcp.DriverConnectionFactory.createConnection(DriverConnectionFactory.java:38) at org.apache.commons.dbcp.PoolableConnectionFactory.makeObject(PoolableConnectionFactory.java:582) at org.apache.commons.pool.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:1188) at org.apache.commons.dbcp.PoolingDataSource.getConnection(PoolingDataSource.java:106) at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:1044) at org.apache.activemq.store.jdbc.AbstractJDBCLocker.getConnection(AbstractJDBCLocker.java:80) at org.apache.activemq.store.jdbc.LeaseDatabaseLocker.keepAlive(LeaseDatabaseLocker.java:178) at org.apache.activemq.broker.LockableServiceSupport.keepLockAlive(LockableServiceSupport.java:125) at org.apache.activemq.broker.LockableServiceSupport$1.run(LockableServiceSupport.java:98) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471) at java.util.concurrent.FutureTask$Sync.innerRunAndReset(FutureTask.java:351) at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:178) at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:178) at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603) at java.lang.Thread.run(Thread.java:722) Caused by: java.net.ConnectException: Connection refused at java.net.PlainSocketImpl.socketConnect(Native Method) at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:339) at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:200) at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:182) at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:391) at java.net.Socket.connect(Socket.java:579) at java.net.Socket.connect(Socket.java:528) at java.net.Socket.(Socket.java:425) at java.net.Socket.(Socket.java:241) at com.mysql.jdbc.StandardSocketFactory.connect(StandardSocketFactory.java:259) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:305) ... 28 more 2013-12-09 21:16:51,462 [ Scheduled Task] WARN LockableServiceSupport - locker keepAlive resulted in org.apache.activemq.broker.SuppressReplyException: Stop/RestartTransportsInitiated at org.apache.activemq.util.DefaultIOExceptionHandler.handle(DefaultIOExceptionHandler.java:124) at org.apache.activemq.broker.BrokerService.handleIOException(BrokerService.java:2528) at org.apache.activemq.store.jdbc.LeaseDatabaseLocker.keepAlive(LeaseDatabaseLocker.java:197) at org.apache.activemq.broker.LockableServiceSupport.keepLockAlive(LockableServiceSupport.java:125) at org.apache.activemq.broker.LockableServiceSupport$1.run(LockableServiceSupport.java:98) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471) at java.util.concurrent.FutureTask$Sync.innerRunAndReset(FutureTask.java:351) at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:178) at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:178) at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603) at java.lang.Thread.run(Thread.java:722) Caused by: java.io.IOException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. at org.apache.activemq.util.IOExceptionSupport.create(IOExceptionSupport.java:45) at org.apache.activemq.store.jdbc.LeaseDatabaseLocker.keepAlive(LeaseDatabaseLocker.java:196) ... 10 more Caused by: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. at sun.reflect.GeneratedConstructorAccessor11.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1121) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:355) at com.mysql.jdbc.ConnectionImpl.coreConnect(ConnectionImpl.java:2479) at com.mysql.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:2516) at com.mysql.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:2301) at com.mysql.jdbc.ConnectionImpl.(ConnectionImpl.java:834) at com.mysql.jdbc.JDBC4Connection.(JDBC4Connection.java:47) at sun.reflect.GeneratedConstructorAccessor12.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) at com.mysql.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:416) at com.mysql.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:317) at org.apache.commons.dbcp.DriverConnectionFactory.createConnection(DriverConnectionFactory.java:38) at org.apache.commons.dbcp.PoolableConnectionFactory.makeObject(PoolableConnectionFactory.java:582) at org.apache.commons.pool.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:1188) at org.apache.commons.dbcp.PoolingDataSource.getConnection(PoolingDataSource.java:106) at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:1044) at org.apache.activemq.store.jdbc.AbstractJDBCLocker.getConnection(AbstractJDBCLocker.java:80) at org.apache.activemq.store.jdbc.LeaseDatabaseLocker.keepAlive(LeaseDatabaseLocker.java:178) ... 10 more Caused by: java.net.ConnectException: Connection refused at java.net.PlainSocketImpl.socketConnect(Native Method) at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:339) at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:200) at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:182) at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:391) at java.net.Socket.connect(Socket.java:579) at java.net.Socket.connect(Socket.java:528) at java.net.Socket.(Socket.java:425) at java.net.Socket.(Socket.java:241) at com.mysql.jdbc.StandardSocketFactory.connect(StandardSocketFactory.java:259) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:305) ... 28 more 2013-12-09 21:16:51,872 [ker1] Scheduler] DEBUG Queue - queue://test_queue_z0 expiring messages .. 2013-12-09 21:16:51,872 [ker1] Scheduler] DEBUG Queue - test_queue_z0 toPageIn: 0, Inflight: 0, pagedInMessages.size 489, enqueueCount: 599, dequeueCount: 110 2013-12-09 21:16:51,873 [ker1] Scheduler] DEBUG Queue - queue://test_queue_z0 expiring messages done. 2013-12-09 21:16:51,873 [Broker1] Task-1] DEBUG Queue - test_queue_z0 toPageIn: 0, Inflight: 0, pagedInMessages.size 489, enqueueCount: 599, dequeueCount: 110 2013-12-09 21:16:51,889 [pool-1-thread-1] INFO ConsumerProducerDBFailoverTest - DB restarting 2013-12-09 21:16:52,846 [ActiveMQ Task-2] DEBUG FailoverTransport - urlList connectionList:[tcp://localhost:1666?trace=true], from: [tcp://localhost:1666?trace=true] 2013-12-09 21:16:52,847 [ActiveMQ Task-2] DEBUG FailoverTransport - Waiting 2000 ms before attempting connection. 2013-12-09 21:16:53,737 [tart transports] DEBUG LeaseDatabaseLocker - coreActiveMQBroker1, lease keepAlive Query is UPDATE ACTIVEMQ_LOCK SET BROKER_NAME=?, TIME=? WHERE BROKER_NAME=? AND ID = 1 2013-12-09 21:16:53,882 [tart transports] INFO TransportServerThreadSupport - Listening for connections at: tcp://localhost.home:1666?closeAsync=false 2013-12-09 21:16:53,882 [tart transports] INFO TransportConnector - Connector openwire started 2013-12-09 21:16:53,883 [tart transports] INFO DefaultIOExceptionHandler - Successfully restarted transports on BrokerService[coreActiveMQBroker1] 2013-12-09 21:16:54,848 [ActiveMQ Task-2] DEBUG FailoverTransport - Attempting 9th connect to: tcp://localhost:1666?trace=true 2013-12-09 21:16:54,849 [ActiveMQ Task-2] DEBUG WireFormatNegotiator - Sending: WireFormatInfo { version=10, properties={MaxFrameSize=9223372036854775807, CacheSize=1024, CacheEnabled=true, SizePrefixDisabled=false, MaxInactivityDurationInitalDelay=10000, TcpNoDelayEnabled=true, MaxInactivityDuration=30000, TightEncodingEnabled=true, StackTraceEnabled=true}, magic=[A,c,t,i,v,e,M,Q]} 2013-12-09 21:16:54,850 [ActiveMQ Task-2] DEBUG Connection:32 - SENDING: WireFormatInfo { version=10, properties={MaxFrameSize=9223372036854775807, CacheSize=1024, CacheEnabled=true, SizePrefixDisabled=false, MaxInactivityDurationInitalDelay=10000, TcpNoDelayEnabled=true, MaxInactivityDuration=30000, TightEncodingEnabled=true, StackTraceEnabled=true}, magic=[A,c,t,i,v,e,M,Q]} 2013-12-09 21:16:54,851 [Broker1] Task-1] DEBUG WireFormatNegotiator - Sending: WireFormatInfo { version=10, properties={MaxFrameSize=9223372036854775807, CacheSize=1024, CacheEnabled=true, SizePrefixDisabled=false, MaxInactivityDurationInitalDelay=10000, TcpNoDelayEnabled=true, MaxInactivityDuration=30000, TightEncodingEnabled=true, StackTraceEnabled=true}, magic=[A,c,t,i,v,e,M,Q]} 2013-12-09 21:16:54,852 [.0.1:58068@1666] DEBUG WireFormatNegotiator - Received WireFormat: WireFormatInfo { version=10, properties={CacheSize=1024, MaxFrameSize=9223372036854775807, CacheEnabled=true, SizePrefixDisabled=false, TcpNoDelayEnabled=true, MaxInactivityDurationInitalDelay=10000, MaxInactivityDuration=30000, TightEncodingEnabled=true, StackTraceEnabled=true}, magic=[A,c,t,i,v,e,M,Q]} 2013-12-09 21:16:54,853 [Broker1] Task-1] DEBUG InactivityMonitor - Using min of local: WireFormatInfo { version=10, properties={MaxFrameSize=9223372036854775807, CacheSize=1024, CacheEnabled=true, SizePrefixDisabled=false, MaxInactivityDurationInitalDelay=10000, TcpNoDelayEnabled=true, MaxInactivityDuration=30000, TightEncodingEnabled=true, StackTraceEnabled=true}, magic=[A,c,t,i,v,e,M,Q]} and remote: WireFormatInfo { version=10, properties={CacheSize=1024, MaxFrameSize=9223372036854775807, CacheEnabled=true, SizePrefixDisabled=false, TcpNoDelayEnabled=true, MaxInactivityDurationInitalDelay=10000, MaxInactivityDuration=30000, TightEncodingEnabled=true, StackTraceEnabled=true}, magic=[A,c,t,i,v,e,M,Q]} 2013-12-09 21:16:54,855 [.0.1:58068@1666] DEBUG WireFormatNegotiator - tcp:///127.0.0.1:58068@1666 before negotiation: OpenWireFormat{version=10, cacheEnabled=false, stackTraceEnabled=false, tightEncodingEnabled=false, sizePrefixDisabled=false, maxFrameSize=9223372036854775807} 2013-12-09 21:16:54,855 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: WireFormatInfo { version=10, properties={CacheSize=1024, MaxFrameSize=9223372036854775807, CacheEnabled=true, SizePrefixDisabled=false, TcpNoDelayEnabled=true, MaxInactivityDurationInitalDelay=10000, MaxInactivityDuration=30000, TightEncodingEnabled=true, StackTraceEnabled=true}, magic=[A,c,t,i,v,e,M,Q]} 2013-12-09 21:16:54,856 [.0.1:58068@1666] DEBUG WireFormatNegotiator - tcp:///127.0.0.1:58068@1666 after negotiation: OpenWireFormat{version=10, cacheEnabled=true, stackTraceEnabled=true, tightEncodingEnabled=true, sizePrefixDisabled=false, maxFrameSize=9223372036854775807} 2013-12-09 21:16:54,856 [.0.1:1666@58068] DEBUG InactivityMonitor - Using min of local: WireFormatInfo { version=10, properties={MaxFrameSize=9223372036854775807, CacheSize=1024, CacheEnabled=true, SizePrefixDisabled=false, MaxInactivityDurationInitalDelay=10000, TcpNoDelayEnabled=true, MaxInactivityDuration=30000, TightEncodingEnabled=true, StackTraceEnabled=true}, magic=[A,c,t,i,v,e,M,Q]} and remote: WireFormatInfo { version=10, properties={CacheSize=1024, MaxFrameSize=9223372036854775807, CacheEnabled=true, SizePrefixDisabled=false, TcpNoDelayEnabled=true, MaxInactivityDurationInitalDelay=10000, MaxInactivityDuration=30000, TightEncodingEnabled=true, StackTraceEnabled=true}, magic=[A,c,t,i,v,e,M,Q]} 2013-12-09 21:16:54,858 [.0.1:1666@58068] DEBUG WireFormatNegotiator - Received WireFormat: WireFormatInfo { version=10, properties={CacheSize=1024, MaxFrameSize=9223372036854775807, CacheEnabled=true, SizePrefixDisabled=false, TcpNoDelayEnabled=true, MaxInactivityDurationInitalDelay=10000, MaxInactivityDuration=30000, TightEncodingEnabled=true, StackTraceEnabled=true}, magic=[A,c,t,i,v,e,M,Q]} 2013-12-09 21:16:54,859 [.0.1:1666@58068] DEBUG WireFormatNegotiator - tcp://localhost/127.0.0.1:1666@58068 before negotiation: OpenWireFormat{version=10, cacheEnabled=false, stackTraceEnabled=false, tightEncodingEnabled=false, sizePrefixDisabled=false, maxFrameSize=9223372036854775807} 2013-12-09 21:16:54,859 [.0.1:1666@58068] DEBUG WireFormatNegotiator - tcp://localhost/127.0.0.1:1666@58068 after negotiation: OpenWireFormat{version=10, cacheEnabled=true, stackTraceEnabled=true, tightEncodingEnabled=true, sizePrefixDisabled=false, maxFrameSize=9223372036854775807} 2013-12-09 21:16:54,860 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: BrokerInfo {commandId = 0, responseRequired = false, brokerId = ID:sideshow.home-57960-1386620121463-0:1, brokerURL = tcp://127.0.0.1:1666, slaveBroker = false, masterBroker = false, faultTolerantConfiguration = false, networkConnection = false, duplexConnection = false, peerBrokerInfos = null, brokerName = coreActiveMQBroker1, connectionId = 0, brokerUploadUrl = null, networkProperties = null} 2013-12-09 21:16:54,860 [ActiveMQ Task-2] DEBUG Connection:32 - SENDING: ConnectionControl {commandId = 0, responseRequired = false, suspend = false, resume = false, close = false, exit = false, faultTolerant = true, connectedBrokers = , reconnectTo = , token = null, rebalanceConnection = false} 2013-12-09 21:16:54,861 [ActiveMQ Task-2] DEBUG ConnectionStateTracker - conn: ID:sideshow.home-57960-1386620121463-5:1 2013-12-09 21:16:54,861 [ActiveMQ Task-2] DEBUG Connection:32 - SENDING: ConnectionInfo {commandId = 1, responseRequired = true, connectionId = ID:sideshow.home-57960-1386620121463-5:1, clientId = ID:sideshow.home-57960-1386620121463-4:1, clientIp = null, userName = admin, password = *****, brokerPath = null, brokerMasterConnector = false, manageable = true, clientMaster = true, faultTolerant = true, failoverReconnect = true} 2013-12-09 21:16:54,862 [ActiveMQ Task-2] DEBUG ConnectionStateTracker - session: ID:sideshow.home-57960-1386620121463-5:1:1 2013-12-09 21:16:54,862 [.0.1:58068@1666] DEBUG TransportConnection - Setting up new connection id: ID:sideshow.home-57960-1386620121463-5:1, address: tcp://127.0.0.1:58068, info: ConnectionInfo {commandId = 1, responseRequired = true, connectionId = ID:sideshow.home-57960-1386620121463-5:1, clientId = ID:sideshow.home-57960-1386620121463-4:1, clientIp = null, userName = admin, password = *****, brokerPath = null, brokerMasterConnector = false, manageable = true, clientMaster = true, faultTolerant = true, failoverReconnect = true} 2013-12-09 21:16:54,862 [ActiveMQ Task-2] DEBUG Connection:32 - SENDING: SessionInfo {commandId = 3, responseRequired = false, sessionId = ID:sideshow.home-57960-1386620121463-5:1:1} 2013-12-09 21:16:54,863 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 1} 2013-12-09 21:16:54,864 [.0.1:1666@58068] DEBUG ResponseCorrelator - Received unexpected response: {Response {commandId = 0, responseRequired = false, correlationId = 1}}for command id: 1 2013-12-09 21:16:54,864 [ActiveMQ Task-2] DEBUG ConnectionStateTracker - restore consumer: ID:sideshow.home-57960-1386620121463-5:1:1:1 2013-12-09 21:16:54,864 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: ConnectionControl {commandId = 0, responseRequired = false, suspend = false, resume = false, close = false, exit = false, faultTolerant = false, connectedBrokers = , reconnectTo = , token = null, rebalanceConnection = false} 2013-12-09 21:16:54,865 [ActiveMQ Task-2] DEBUG Connection:32 - SENDING: ConsumerInfo {commandId = 4, responseRequired = true, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, prefetchSize = 1000, maximumPendingMessageLimit = 0, browser = false, dispatchAsync = true, selector = null, clientId = ID:sideshow.home-57960-1386620121463-4:1, subscriptionName = null, noLocal = false, exclusive = false, retroactive = false, priority = 0, brokerPath = null, optimizedAcknowledge = false, noRangeAcks = false, additionalPredicate = null} 2013-12-09 21:16:54,867 [ActiveMQ Task-2] DEBUG ConnectionStateTracker - session: ID:sideshow.home-57960-1386620121463-5:1:-1 2013-12-09 21:16:54,867 [ActiveMQ Task-2] DEBUG Connection:32 - SENDING: SessionInfo {commandId = 0, responseRequired = false, sessionId = ID:sideshow.home-57960-1386620121463-5:1:-1} 2013-12-09 21:16:54,867 [.0.1:58068@1666] DEBUG AbstractRegion - coreActiveMQBroker1 adding consumer: ID:sideshow.home-57960-1386620121463-5:1:1:1 for destination: queue://test_queue_z0 2013-12-09 21:16:54,867 [ActiveMQ Task-2] DEBUG ConnectionStateTracker - restore consumer: ID:sideshow.home-57960-1386620121463-5:1:-1:1 2013-12-09 21:16:54,868 [.0.1:58068@1666] DEBUG Queue - queue://test_queue_z0 add sub: 110, dequeues: 110, dispatched: 0, inflight: {} 2013-12-09 21:16:54,868 [ActiveMQ Task-2] DEBUG Connection:32 - SENDING: ConsumerInfo {commandId = 2, responseRequired = true, consumerId = ID:sideshow.home-57960-1386620121463-5:1:-1:1, destination = ActiveMQ.Advisory.TempQueue,ActiveMQ.Advisory.TempTopic, prefetchSize = 1000, maximumPendingMessageLimit = 0, browser = false, dispatchAsync = true, selector = null, clientId = null, subscriptionName = null, noLocal = true, exclusive = false, retroactive = false, priority = 0, brokerPath = null, optimizedAcknowledge = false, noRangeAcks = false, additionalPredicate = null} 2013-12-09 21:16:54,869 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 4} 2013-12-09 21:16:54,869 [Broker1] Task-4] DEBUG Queue - test_queue_z0 toPageIn: 0, Inflight: 0, pagedInMessages.size 489, enqueueCount: 599, dequeueCount: 110 2013-12-09 21:16:54,871 [.0.1:1666@58068] DEBUG ResponseCorrelator - Received unexpected response: {Response {commandId = 0, responseRequired = false, correlationId = 4}}for command id: 4 2013-12-09 21:16:54,870 [.0.1:58068@1666] DEBUG AbstractRegion - coreActiveMQBroker1 adding consumer: ID:sideshow.home-57960-1386620121463-5:1:-1:1 for destination: ActiveMQ.Advisory.TempQueue,ActiveMQ.Advisory.TempTopic 2013-12-09 21:16:54,870 [ActiveMQ Task-2] DEBUG ConnectionStateTracker - tx: TX:ID:sideshow.home-57960-1386620121463-5:1:113 2013-12-09 21:16:54,872 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 117, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:113, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620145717, arrival = 0, brokerInTime = 1386620145719, brokerOutTime = 1386620214871, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3de74140, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 111}, redeliveryCounter = 1} 2013-12-09 21:16:54,874 [ActiveMQ Task-2] DEBUG ConnectionStateTracker - rolling back potentially completed tx: TX:ID:sideshow.home-57960-1386620121463-5:1:113 2013-12-09 21:16:54,876 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 118, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:114, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620145775, arrival = 0, brokerInTime = 1386620145776, brokerOutTime = 1386620214872, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1acad81c, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 112}, redeliveryCounter = 1} 2013-12-09 21:16:54,877 [pool-3-thread-1] INFO TransactionContext - commit failed for transaction TX:ID:sideshow.home-57960-1386620121463-5:1:113 javax.jms.TransactionRolledBackException: Transaction completion in doubt due to failover. Forcing rollback of TX:ID:sideshow.home-57960-1386620121463-5:1:113 at org.apache.activemq.state.ConnectionStateTracker.restoreTransactions(ConnectionStateTracker.java:231) at org.apache.activemq.state.ConnectionStateTracker.restore(ConnectionStateTracker.java:169) at org.apache.activemq.transport.failover.FailoverTransport.restoreTransport(FailoverTransport.java:840) at org.apache.activemq.transport.failover.FailoverTransport.doReconnect(FailoverTransport.java:1018) at org.apache.activemq.transport.failover.FailoverTransport$2.iterate(FailoverTransport.java:148) at org.apache.activemq.thread.PooledTaskRunner.runTask(PooledTaskRunner.java:129) at org.apache.activemq.thread.PooledTaskRunner$1.run(PooledTaskRunner.java:47) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603) at java.lang.Thread.run(Thread.java:722) 2013-12-09 21:16:54,877 [ActiveMQ Task-2] DEBUG FailoverTransport - Connection established 2013-12-09 21:16:54,879 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 119, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:115, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620145833, arrival = 0, brokerInTime = 1386620145834, brokerOutTime = 1386620214872, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@f669400, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 113}, redeliveryCounter = 1} 2013-12-09 21:16:54,882 [pool-3-thread-1] INFO MyConsumer - test_queue_z0Exception on commit - keep receiving javax.jms.TransactionRolledBackException: Transaction completion in doubt due to failover. Forcing rollback of TX:ID:sideshow.home-57960-1386620121463-5:1:113 at org.apache.activemq.state.ConnectionStateTracker.restoreTransactions(ConnectionStateTracker.java:231) at org.apache.activemq.state.ConnectionStateTracker.restore(ConnectionStateTracker.java:169) at org.apache.activemq.transport.failover.FailoverTransport.restoreTransport(FailoverTransport.java:840) at org.apache.activemq.transport.failover.FailoverTransport.doReconnect(FailoverTransport.java:1018) at org.apache.activemq.transport.failover.FailoverTransport$2.iterate(FailoverTransport.java:148) at org.apache.activemq.thread.PooledTaskRunner.runTask(PooledTaskRunner.java:129) at org.apache.activemq.thread.PooledTaskRunner$1.run(PooledTaskRunner.java:47) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603) at java.lang.Thread.run(Thread.java:722) 2013-12-09 21:16:54,882 [ActiveMQ Task-2] INFO FailoverTransport - Successfully reconnected to tcp://localhost:1666?trace=true 2013-12-09 21:16:54,884 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 120, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:116, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620145891, arrival = 0, brokerInTime = 1386620145892, brokerOutTime = 1386620214872, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@177e93e6, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 114}, redeliveryCounter = 1} 2013-12-09 21:16:54,887 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 345, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:114} 2013-12-09 21:16:54,890 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 121, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:117, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620145949, arrival = 0, brokerInTime = 1386620145950, brokerOutTime = 1386620214872, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@771fed16, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 115}, redeliveryCounter = 1} 2013-12-09 21:16:54,891 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:114 2013-12-09 21:16:54,894 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:114 2013-12-09 21:16:54,894 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 122, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:118, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146007, arrival = 0, brokerInTime = 1386620146008, brokerOutTime = 1386620214873, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@217a1f9, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 116}, redeliveryCounter = 1} 2013-12-09 21:16:54,894 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 346, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:113, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:113, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:114, messageCount = 1, poisonCause = null} 2013-12-09 21:16:54,898 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 123, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:119, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146065, arrival = 0, brokerInTime = 1386620146067, brokerOutTime = 1386620214873, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5d8ae381, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 117}, redeliveryCounter = 1} 2013-12-09 21:16:54,900 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:114 syncCount: 1 2013-12-09 21:16:54,903 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 124, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:120, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146123, arrival = 0, brokerInTime = 1386620146124, brokerOutTime = 1386620214873, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@495e5a21, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 118}, redeliveryCounter = 1} 2013-12-09 21:16:54,904 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 347, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:114} 2013-12-09 21:16:54,907 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 2} 2013-12-09 21:16:54,908 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:114 syncCount: 2 2013-12-09 21:16:54,908 [.0.1:1666@58068] DEBUG ResponseCorrelator - Received unexpected response: {Response {commandId = 0, responseRequired = false, correlationId = 2}}for command id: 2 2013-12-09 21:16:54,909 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 125, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:121, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146181, arrival = 0, brokerInTime = 1386620146183, brokerOutTime = 1386620214874, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@734d1552, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 119}, redeliveryCounter = 1} 2013-12-09 21:16:54,912 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 126, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:122, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146239, arrival = 0, brokerInTime = 1386620146240, brokerOutTime = 1386620214874, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@49b2f5a1, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 120}, redeliveryCounter = 1} 2013-12-09 21:16:54,916 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 127, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:123, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146297, arrival = 0, brokerInTime = 1386620146298, brokerOutTime = 1386620214874, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@41c42d4, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 121}, redeliveryCounter = 1} 2013-12-09 21:16:54,919 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 128, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:124, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146355, arrival = 0, brokerInTime = 1386620146356, brokerOutTime = 1386620214875, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@63815b12, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 122}, redeliveryCounter = 1} 2013-12-09 21:16:54,921 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 129, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:125, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146413, arrival = 0, brokerInTime = 1386620146414, brokerOutTime = 1386620214875, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@8db2498, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 123}, redeliveryCounter = 1} 2013-12-09 21:16:54,924 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 130, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:126, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146479, arrival = 0, brokerInTime = 1386620146481, brokerOutTime = 1386620214875, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6b3f7bb2, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 124}, redeliveryCounter = 1} 2013-12-09 21:16:54,926 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 131, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:127, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146587, arrival = 0, brokerInTime = 1386620146588, brokerOutTime = 1386620214875, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@14d21a20, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 125}, redeliveryCounter = 1} 2013-12-09 21:16:54,929 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 132, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:128, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146653, arrival = 0, brokerInTime = 1386620146654, brokerOutTime = 1386620214875, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6db1358d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 126}, redeliveryCounter = 1} 2013-12-09 21:16:54,932 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 133, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:129, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146761, arrival = 0, brokerInTime = 1386620146762, brokerOutTime = 1386620214875, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@d32f43e, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 127}, redeliveryCounter = 1} 2013-12-09 21:16:54,936 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 134, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:130, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146868, arrival = 0, brokerInTime = 1386620146870, brokerOutTime = 1386620214875, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5de702a, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 128}, redeliveryCounter = 1} 2013-12-09 21:16:54,938 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 135, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:131, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146926, arrival = 0, brokerInTime = 1386620146928, brokerOutTime = 1386620214875, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@204d6e7b, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 129}, redeliveryCounter = 1} 2013-12-09 21:16:54,942 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 136, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:132, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146985, arrival = 0, brokerInTime = 1386620146986, brokerOutTime = 1386620214876, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@723ee458, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 130}, redeliveryCounter = 1} 2013-12-09 21:16:54,944 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 137, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:133, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147042, arrival = 0, brokerInTime = 1386620147043, brokerOutTime = 1386620214876, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7f018800, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 131}, redeliveryCounter = 1} 2013-12-09 21:16:54,946 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 138, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:134, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147101, arrival = 0, brokerInTime = 1386620147102, brokerOutTime = 1386620214876, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3d87f924, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 132}, redeliveryCounter = 1} 2013-12-09 21:16:54,948 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 139, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:135, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147158, arrival = 0, brokerInTime = 1386620147159, brokerOutTime = 1386620214876, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@29f5ca0b, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 133}, redeliveryCounter = 1} 2013-12-09 21:16:54,950 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 140, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:136, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147216, arrival = 0, brokerInTime = 1386620147217, brokerOutTime = 1386620214876, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@47a3adb2, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 134}, redeliveryCounter = 1} 2013-12-09 21:16:54,952 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 141, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:137, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147274, arrival = 0, brokerInTime = 1386620147275, brokerOutTime = 1386620214877, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4ae0a5dc, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 135}, redeliveryCounter = 1} 2013-12-09 21:16:54,954 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 142, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:138, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147332, arrival = 0, brokerInTime = 1386620147333, brokerOutTime = 1386620214877, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@62a934eb, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 136}, redeliveryCounter = 1} 2013-12-09 21:16:54,956 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 143, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:139, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147400, arrival = 0, brokerInTime = 1386620147401, brokerOutTime = 1386620214877, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@52d162e7, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 137}, redeliveryCounter = 1} 2013-12-09 21:16:54,959 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 144, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:140, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147458, arrival = 0, brokerInTime = 1386620147459, brokerOutTime = 1386620214877, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@30b4562b, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 138}, redeliveryCounter = 1} 2013-12-09 21:16:54,961 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 145, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:141, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147516, arrival = 0, brokerInTime = 1386620147517, brokerOutTime = 1386620214877, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@f853a08, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 139}, redeliveryCounter = 1} 2013-12-09 21:16:54,963 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 146, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:142, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147574, arrival = 0, brokerInTime = 1386620147575, brokerOutTime = 1386620214877, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@73a4eb2d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 140}, redeliveryCounter = 1} 2013-12-09 21:16:54,965 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 147, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:143, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147632, arrival = 0, brokerInTime = 1386620147633, brokerOutTime = 1386620214877, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@504c12ab, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 141}, redeliveryCounter = 1} 2013-12-09 21:16:54,967 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 148, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:144, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147690, arrival = 0, brokerInTime = 1386620147691, brokerOutTime = 1386620214878, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@325dc1bc, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 142}, redeliveryCounter = 1} 2013-12-09 21:16:54,969 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 149, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:145, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147747, arrival = 0, brokerInTime = 1386620147749, brokerOutTime = 1386620214878, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@295a3779, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 143}, redeliveryCounter = 1} 2013-12-09 21:16:54,971 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 150, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:146, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147805, arrival = 0, brokerInTime = 1386620147807, brokerOutTime = 1386620214878, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@61effe24, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 144}, redeliveryCounter = 1} 2013-12-09 21:16:54,972 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 151, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:147, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147863, arrival = 0, brokerInTime = 1386620147865, brokerOutTime = 1386620214878, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@53161fb7, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 145}, redeliveryCounter = 1} 2013-12-09 21:16:54,974 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 152, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:148, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147921, arrival = 0, brokerInTime = 1386620147923, brokerOutTime = 1386620214878, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@517c51fe, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 146}, redeliveryCounter = 1} 2013-12-09 21:16:54,976 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 153, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:149, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147980, arrival = 0, brokerInTime = 1386620147981, brokerOutTime = 1386620214878, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@38eb247d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 147}, redeliveryCounter = 1} 2013-12-09 21:16:54,978 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 154, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:150, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148038, arrival = 0, brokerInTime = 1386620148039, brokerOutTime = 1386620214878, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@55a8a7bc, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 148}, redeliveryCounter = 1} 2013-12-09 21:16:54,980 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 155, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:151, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148096, arrival = 0, brokerInTime = 1386620148097, brokerOutTime = 1386620214879, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@339c5393, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 149}, redeliveryCounter = 1} 2013-12-09 21:16:54,982 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 156, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:152, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148153, arrival = 0, brokerInTime = 1386620148155, brokerOutTime = 1386620214879, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5c32f25d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 150}, redeliveryCounter = 1} 2013-12-09 21:16:54,984 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 157, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:153, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148211, arrival = 0, brokerInTime = 1386620148213, brokerOutTime = 1386620214879, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@14c5e6f5, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 151}, redeliveryCounter = 1} 2013-12-09 21:16:54,988 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 158, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:154, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148270, arrival = 0, brokerInTime = 1386620148272, brokerOutTime = 1386620214879, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4cbde97a, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 152}, redeliveryCounter = 1} 2013-12-09 21:16:54,991 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 159, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:155, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148336, arrival = 0, brokerInTime = 1386620148339, brokerOutTime = 1386620214879, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@482b6ff2, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 153}, redeliveryCounter = 1} 2013-12-09 21:16:54,994 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 160, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:156, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148394, arrival = 0, brokerInTime = 1386620148395, brokerOutTime = 1386620214879, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1bc29de2, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 154}, redeliveryCounter = 1} 2013-12-09 21:16:54,996 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 161, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:157, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148452, arrival = 0, brokerInTime = 1386620148453, brokerOutTime = 1386620214879, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@60b6eab, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 155}, redeliveryCounter = 1} 2013-12-09 21:16:54,998 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 162, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:158, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148518, arrival = 0, brokerInTime = 1386620148520, brokerOutTime = 1386620214880, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@588e9fa6, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 156}, redeliveryCounter = 1} 2013-12-09 21:16:55,000 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 163, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:159, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148576, arrival = 0, brokerInTime = 1386620148577, brokerOutTime = 1386620214880, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7b9378b5, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 157}, redeliveryCounter = 1} 2013-12-09 21:16:55,002 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 164, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:160, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148634, arrival = 0, brokerInTime = 1386620148635, brokerOutTime = 1386620214880, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@ed9f275, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 158}, redeliveryCounter = 1} 2013-12-09 21:16:55,004 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 165, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:161, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148692, arrival = 0, brokerInTime = 1386620148693, brokerOutTime = 1386620214880, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6bce6f1, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 159}, redeliveryCounter = 1} 2013-12-09 21:16:55,006 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 166, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:162, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148750, arrival = 0, brokerInTime = 1386620148752, brokerOutTime = 1386620214880, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5bdddbab, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 160}, redeliveryCounter = 1} 2013-12-09 21:16:55,008 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 167, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:163, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148808, arrival = 0, brokerInTime = 1386620148809, brokerOutTime = 1386620214880, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4280e6ab, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 161}, redeliveryCounter = 1} 2013-12-09 21:16:55,010 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 168, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:164, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148866, arrival = 0, brokerInTime = 1386620148867, brokerOutTime = 1386620214880, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1ca806a9, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 162}, redeliveryCounter = 1} 2013-12-09 21:16:55,011 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 169, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:165, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148924, arrival = 0, brokerInTime = 1386620148925, brokerOutTime = 1386620214880, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5b4d4ff1, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 163}, redeliveryCounter = 1} 2013-12-09 21:16:55,013 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 170, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:166, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148982, arrival = 0, brokerInTime = 1386620148984, brokerOutTime = 1386620214880, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@30bb860b, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 164}, redeliveryCounter = 1} 2013-12-09 21:16:55,015 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 171, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:167, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620149040, arrival = 0, brokerInTime = 1386620149041, brokerOutTime = 1386620214880, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@675d552b, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 165}, redeliveryCounter = 1} 2013-12-09 21:16:55,017 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 172, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:168, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620149098, arrival = 0, brokerInTime = 1386620149099, brokerOutTime = 1386620214881, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2082af11, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 166}, redeliveryCounter = 1} 2013-12-09 21:16:55,020 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 173, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:169, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620149386, arrival = 0, brokerInTime = 1386620149387, brokerOutTime = 1386620214881, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@63b395c3, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 167}, redeliveryCounter = 1} 2013-12-09 21:16:55,022 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 174, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:170, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620149619, arrival = 0, brokerInTime = 1386620149621, brokerOutTime = 1386620214881, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@232d6858, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 168}, redeliveryCounter = 1} 2013-12-09 21:16:55,023 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 175, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:171, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620149769, arrival = 0, brokerInTime = 1386620149771, brokerOutTime = 1386620214881, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7a1d7b72, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 169}, redeliveryCounter = 1} 2013-12-09 21:16:55,025 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 176, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:172, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620149875, arrival = 0, brokerInTime = 1386620149877, brokerOutTime = 1386620214881, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2593b800, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 170}, redeliveryCounter = 1} 2013-12-09 21:16:55,027 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 177, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:173, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620149927, arrival = 0, brokerInTime = 1386620149928, brokerOutTime = 1386620214881, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5151b46, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 171}, redeliveryCounter = 1} 2013-12-09 21:16:55,029 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 178, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:174, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620149985, arrival = 0, brokerInTime = 1386620149987, brokerOutTime = 1386620214881, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2cb19345, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 172}, redeliveryCounter = 1} 2013-12-09 21:16:55,031 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 179, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:175, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150043, arrival = 0, brokerInTime = 1386620150044, brokerOutTime = 1386620214881, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3e3badef, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 173}, redeliveryCounter = 1} 2013-12-09 21:16:55,033 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 180, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:176, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150101, arrival = 0, brokerInTime = 1386620150103, brokerOutTime = 1386620214881, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@401845d4, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 174}, redeliveryCounter = 1} 2013-12-09 21:16:55,035 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 181, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:177, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150159, arrival = 0, brokerInTime = 1386620150161, brokerOutTime = 1386620214882, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7990822b, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 175}, redeliveryCounter = 1} 2013-12-09 21:16:55,037 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 182, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:178, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150216, arrival = 0, brokerInTime = 1386620150218, brokerOutTime = 1386620214882, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7e521366, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 176}, redeliveryCounter = 1} 2013-12-09 21:16:55,039 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 183, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:179, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150275, arrival = 0, brokerInTime = 1386620150276, brokerOutTime = 1386620214882, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3e77ce54, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 177}, redeliveryCounter = 1} 2013-12-09 21:16:55,041 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 184, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:180, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150341, arrival = 0, brokerInTime = 1386620150342, brokerOutTime = 1386620214882, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2b8b0cd6, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 178}, redeliveryCounter = 1} 2013-12-09 21:16:55,043 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 185, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:181, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150399, arrival = 0, brokerInTime = 1386620150400, brokerOutTime = 1386620214882, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@35f7cbef, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 179}, redeliveryCounter = 1} 2013-12-09 21:16:55,044 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 186, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:182, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150457, arrival = 0, brokerInTime = 1386620150458, brokerOutTime = 1386620214882, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1f6dd397, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 180}, redeliveryCounter = 1} 2013-12-09 21:16:55,046 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 187, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:183, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150523, arrival = 0, brokerInTime = 1386620150524, brokerOutTime = 1386620214882, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@635e6e9f, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 181}, redeliveryCounter = 1} 2013-12-09 21:16:55,048 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 188, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:184, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150589, arrival = 0, brokerInTime = 1386620150590, brokerOutTime = 1386620214882, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4cb0bbb0, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 182}, redeliveryCounter = 1} 2013-12-09 21:16:55,051 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 189, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:185, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150647, arrival = 0, brokerInTime = 1386620150649, brokerOutTime = 1386620214883, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@66f24725, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 183}, redeliveryCounter = 1} 2013-12-09 21:16:55,052 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 190, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:186, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150705, arrival = 0, brokerInTime = 1386620150707, brokerOutTime = 1386620214883, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2c1d02f0, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 184}, redeliveryCounter = 1} 2013-12-09 21:16:55,054 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 191, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:187, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150763, arrival = 0, brokerInTime = 1386620150764, brokerOutTime = 1386620214883, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@24abf130, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 185}, redeliveryCounter = 1} 2013-12-09 21:16:55,056 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 192, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:188, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150821, arrival = 0, brokerInTime = 1386620150823, brokerOutTime = 1386620214883, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1467991f, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 186}, redeliveryCounter = 1} 2013-12-09 21:16:55,058 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 193, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:189, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150879, arrival = 0, brokerInTime = 1386620150880, brokerOutTime = 1386620214883, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1d75ccb0, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 187}, redeliveryCounter = 1} 2013-12-09 21:16:55,060 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 194, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:190, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150937, arrival = 0, brokerInTime = 1386620150938, brokerOutTime = 1386620214883, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@20d145ec, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 188}, redeliveryCounter = 1} 2013-12-09 21:16:55,062 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 195, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:191, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150995, arrival = 0, brokerInTime = 1386620150996, brokerOutTime = 1386620214883, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@b4599c9, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 189}, redeliveryCounter = 1} 2013-12-09 21:16:55,064 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 196, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:192, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151053, arrival = 0, brokerInTime = 1386620151054, brokerOutTime = 1386620214883, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@67360e7, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 190}, redeliveryCounter = 1} 2013-12-09 21:16:55,067 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 197, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:193, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151111, arrival = 0, brokerInTime = 1386620151113, brokerOutTime = 1386620214883, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@dee100, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 191}, redeliveryCounter = 1} 2013-12-09 21:16:55,071 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 198, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:194, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151169, arrival = 0, brokerInTime = 1386620151170, brokerOutTime = 1386620214883, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2885c772, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 192}, redeliveryCounter = 1} 2013-12-09 21:16:55,074 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 199, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:195, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151227, arrival = 0, brokerInTime = 1386620151228, brokerOutTime = 1386620214883, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@66e92226, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 193}, redeliveryCounter = 1} 2013-12-09 21:16:55,076 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 200, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:196, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151285, arrival = 0, brokerInTime = 1386620151286, brokerOutTime = 1386620214884, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@53c12192, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 194}, redeliveryCounter = 1} 2013-12-09 21:16:55,079 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 201, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:197, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151343, arrival = 0, brokerInTime = 1386620151344, brokerOutTime = 1386620214884, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2c832333, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 195}, redeliveryCounter = 1} 2013-12-09 21:16:55,081 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 202, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:198, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151401, arrival = 0, brokerInTime = 1386620151402, brokerOutTime = 1386620214884, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@557c0019, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 196}, redeliveryCounter = 1} 2013-12-09 21:16:55,083 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 203, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:199, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151459, arrival = 0, brokerInTime = 1386620151460, brokerOutTime = 1386620214884, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3fea9527, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 197}, redeliveryCounter = 1} 2013-12-09 21:16:55,086 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 204, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:200, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151559, arrival = 0, brokerInTime = 1386620151560, brokerOutTime = 1386620214884, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@41e65439, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 198}, redeliveryCounter = 1} 2013-12-09 21:16:55,089 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 205, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:201, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151616, arrival = 0, brokerInTime = 1386620151618, brokerOutTime = 1386620214884, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@78a38bfb, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 199}, redeliveryCounter = 1} 2013-12-09 21:16:55,091 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 206, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:202, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151675, arrival = 0, brokerInTime = 1386620151676, brokerOutTime = 1386620214884, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@393b499d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 200}, redeliveryCounter = 1} 2013-12-09 21:16:55,093 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 207, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:203, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151733, arrival = 0, brokerInTime = 1386620151734, brokerOutTime = 1386620214884, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@635dffc5, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 201}, redeliveryCounter = 1} 2013-12-09 21:16:55,095 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 208, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:204, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151800, arrival = 0, brokerInTime = 1386620151802, brokerOutTime = 1386620214884, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3043117a, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 202}, redeliveryCounter = 1} 2013-12-09 21:16:55,097 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 209, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:205, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151858, arrival = 0, brokerInTime = 1386620151860, brokerOutTime = 1386620214884, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3307957, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 203}, redeliveryCounter = 1} 2013-12-09 21:16:55,099 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 210, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:206, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151916, arrival = 0, brokerInTime = 1386620151918, brokerOutTime = 1386620214885, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@636e4063, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 204}, redeliveryCounter = 1} 2013-12-09 21:16:55,102 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 211, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:207, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151974, arrival = 0, brokerInTime = 1386620151976, brokerOutTime = 1386620214885, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5b455694, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 205}, redeliveryCounter = 1} 2013-12-09 21:16:55,104 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 212, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:208, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152040, arrival = 0, brokerInTime = 1386620152042, brokerOutTime = 1386620214885, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@25373d5c, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 206}, redeliveryCounter = 1} 2013-12-09 21:16:55,106 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 213, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:209, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152107, arrival = 0, brokerInTime = 1386620152108, brokerOutTime = 1386620214885, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4d9d761a, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 207}, redeliveryCounter = 1} 2013-12-09 21:16:55,108 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 214, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:210, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152214, arrival = 0, brokerInTime = 1386620152216, brokerOutTime = 1386620214885, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1cb4ccc5, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 208}, redeliveryCounter = 1} 2013-12-09 21:16:55,110 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 215, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:211, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152272, arrival = 0, brokerInTime = 1386620152273, brokerOutTime = 1386620214885, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@21efa83c, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 209}, redeliveryCounter = 1} 2013-12-09 21:16:55,112 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 216, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:212, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152380, arrival = 0, brokerInTime = 1386620152381, brokerOutTime = 1386620214885, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7d0e0c8b, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 210}, redeliveryCounter = 1} 2013-12-09 21:16:55,114 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 217, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:213, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152437, arrival = 0, brokerInTime = 1386620152439, brokerOutTime = 1386620214885, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2559b9d1, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 211}, redeliveryCounter = 1} 2013-12-09 21:16:55,116 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 218, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:214, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152495, arrival = 0, brokerInTime = 1386620152497, brokerOutTime = 1386620214885, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@25b65b7f, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 212}, redeliveryCounter = 1} 2013-12-09 21:16:55,118 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 219, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:215, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152553, arrival = 0, brokerInTime = 1386620152555, brokerOutTime = 1386620214886, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@67310230, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 213}, redeliveryCounter = 1} 2013-12-09 21:16:55,120 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 220, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:216, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152612, arrival = 0, brokerInTime = 1386620152613, brokerOutTime = 1386620214886, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4286d23d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 214}, redeliveryCounter = 1} 2013-12-09 21:16:55,122 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 221, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:217, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152670, arrival = 0, brokerInTime = 1386620152671, brokerOutTime = 1386620214886, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2154c4ea, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 215}, redeliveryCounter = 1} 2013-12-09 21:16:55,124 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 222, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:218, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152728, arrival = 0, brokerInTime = 1386620152729, brokerOutTime = 1386620214886, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@444befbe, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 216}, redeliveryCounter = 1} 2013-12-09 21:16:55,126 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 223, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:219, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152786, arrival = 0, brokerInTime = 1386620152787, brokerOutTime = 1386620214886, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5568c5f9, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 217}, redeliveryCounter = 1} 2013-12-09 21:16:55,128 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 224, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:220, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152844, arrival = 0, brokerInTime = 1386620152845, brokerOutTime = 1386620214886, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@519d8a3d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 218}, redeliveryCounter = 1} 2013-12-09 21:16:55,130 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 225, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:221, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152902, arrival = 0, brokerInTime = 1386620152904, brokerOutTime = 1386620214886, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3dded4a7, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 219}, redeliveryCounter = 1} 2013-12-09 21:16:55,157 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 226, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:222, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152960, arrival = 0, brokerInTime = 1386620152961, brokerOutTime = 1386620214886, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@705b3fac, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 220}, redeliveryCounter = 1} 2013-12-09 21:16:55,159 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 227, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:223, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153018, arrival = 0, brokerInTime = 1386620153020, brokerOutTime = 1386620214886, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5078c1d5, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 221}, redeliveryCounter = 1} 2013-12-09 21:16:55,161 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 228, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:224, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153075, arrival = 0, brokerInTime = 1386620153077, brokerOutTime = 1386620214886, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@27fdb039, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 222}, redeliveryCounter = 1} 2013-12-09 21:16:55,163 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 229, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:225, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153133, arrival = 0, brokerInTime = 1386620153135, brokerOutTime = 1386620214887, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3c82b2, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 223}, redeliveryCounter = 1} 2013-12-09 21:16:55,166 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 230, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:226, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153191, arrival = 0, brokerInTime = 1386620153193, brokerOutTime = 1386620214887, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4a8743d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 224}, redeliveryCounter = 1} 2013-12-09 21:16:55,167 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 231, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:227, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153249, arrival = 0, brokerInTime = 1386620153251, brokerOutTime = 1386620214887, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4f67532e, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 225}, redeliveryCounter = 1} 2013-12-09 21:16:55,170 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 232, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:228, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153307, arrival = 0, brokerInTime = 1386620153309, brokerOutTime = 1386620214887, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@88619bc, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 226}, redeliveryCounter = 1} 2013-12-09 21:16:55,172 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 233, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:229, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153366, arrival = 0, brokerInTime = 1386620153367, brokerOutTime = 1386620214887, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1c038a03, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 227}, redeliveryCounter = 1} 2013-12-09 21:16:55,174 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 234, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:230, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153424, arrival = 0, brokerInTime = 1386620153425, brokerOutTime = 1386620214887, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2c59d953, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 228}, redeliveryCounter = 1} 2013-12-09 21:16:55,176 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 235, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:231, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153481, arrival = 0, brokerInTime = 1386620153483, brokerOutTime = 1386620214887, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3ecaeee4, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 229}, redeliveryCounter = 1} 2013-12-09 21:16:55,178 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 236, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:232, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153540, arrival = 0, brokerInTime = 1386620153541, brokerOutTime = 1386620214887, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7d09daf0, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 230}, redeliveryCounter = 1} 2013-12-09 21:16:55,180 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 237, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:233, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153598, arrival = 0, brokerInTime = 1386620153599, brokerOutTime = 1386620214887, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@120502b2, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 231}, redeliveryCounter = 1} 2013-12-09 21:16:55,182 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 238, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:234, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153655, arrival = 0, brokerInTime = 1386620153657, brokerOutTime = 1386620214888, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6f3fd5c, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 232}, redeliveryCounter = 1} 2013-12-09 21:16:55,185 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 239, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:235, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153713, arrival = 0, brokerInTime = 1386620153714, brokerOutTime = 1386620214888, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7c7ea694, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 233}, redeliveryCounter = 1} 2013-12-09 21:16:55,188 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 240, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:236, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153763, arrival = 0, brokerInTime = 1386620153764, brokerOutTime = 1386620214888, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5eea7e66, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 234}, redeliveryCounter = 1} 2013-12-09 21:16:55,190 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 241, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:237, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153821, arrival = 0, brokerInTime = 1386620153823, brokerOutTime = 1386620214888, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@75108b38, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 235}, redeliveryCounter = 1} 2013-12-09 21:16:55,193 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 242, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:238, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153879, arrival = 0, brokerInTime = 1386620153880, brokerOutTime = 1386620214888, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@11244593, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 236}, redeliveryCounter = 1} 2013-12-09 21:16:55,194 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 243, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:239, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153980, arrival = 0, brokerInTime = 1386620153981, brokerOutTime = 1386620214888, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6453beaf, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 237}, redeliveryCounter = 1} 2013-12-09 21:16:55,196 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 244, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:240, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154087, arrival = 0, brokerInTime = 1386620154089, brokerOutTime = 1386620214888, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@360c069e, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 238}, redeliveryCounter = 1} 2013-12-09 21:16:55,198 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 245, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:241, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154154, arrival = 0, brokerInTime = 1386620154155, brokerOutTime = 1386620214888, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4f868aca, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 239}, redeliveryCounter = 1} 2013-12-09 21:16:55,200 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 246, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:242, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154212, arrival = 0, brokerInTime = 1386620154213, brokerOutTime = 1386620214888, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@a01fc90, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 240}, redeliveryCounter = 1} 2013-12-09 21:16:55,203 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 247, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:243, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154269, arrival = 0, brokerInTime = 1386620154271, brokerOutTime = 1386620214888, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@86c5712, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 241}, redeliveryCounter = 1} 2013-12-09 21:16:55,205 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 248, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:244, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154327, arrival = 0, brokerInTime = 1386620154329, brokerOutTime = 1386620214889, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@c86310, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 242}, redeliveryCounter = 1} 2013-12-09 21:16:55,207 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 249, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:245, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154386, arrival = 0, brokerInTime = 1386620154387, brokerOutTime = 1386620214889, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@63dfafd6, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 243}, redeliveryCounter = 1} 2013-12-09 21:16:55,210 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 250, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:246, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154443, arrival = 0, brokerInTime = 1386620154445, brokerOutTime = 1386620214889, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@72913dd3, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 244}, redeliveryCounter = 1} 2013-12-09 21:16:55,213 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 251, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:247, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154502, arrival = 0, brokerInTime = 1386620154503, brokerOutTime = 1386620214889, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1d722268, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 245}, redeliveryCounter = 1} 2013-12-09 21:16:55,215 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 252, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:248, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154559, arrival = 0, brokerInTime = 1386620154561, brokerOutTime = 1386620214889, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3030e8f2, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 246}, redeliveryCounter = 1} 2013-12-09 21:16:55,218 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 253, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:249, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154618, arrival = 0, brokerInTime = 1386620154619, brokerOutTime = 1386620214889, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5b0d8095, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 247}, redeliveryCounter = 1} 2013-12-09 21:16:55,220 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 254, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:250, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154675, arrival = 0, brokerInTime = 1386620154677, brokerOutTime = 1386620214889, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5374e4e6, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 248}, redeliveryCounter = 1} 2013-12-09 21:16:55,223 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 255, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:251, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154734, arrival = 0, brokerInTime = 1386620154735, brokerOutTime = 1386620214890, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1f5fe2d8, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 249}, redeliveryCounter = 1} 2013-12-09 21:16:55,225 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 256, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:252, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154792, arrival = 0, brokerInTime = 1386620154793, brokerOutTime = 1386620214890, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5025e2ff, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 250}, redeliveryCounter = 1} 2013-12-09 21:16:55,227 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 257, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:253, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154850, arrival = 0, brokerInTime = 1386620154851, brokerOutTime = 1386620214890, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6759fc74, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 251}, redeliveryCounter = 1} 2013-12-09 21:16:55,229 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 258, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:254, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154907, arrival = 0, brokerInTime = 1386620154909, brokerOutTime = 1386620214890, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@44cd58ae, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 252}, redeliveryCounter = 1} 2013-12-09 21:16:55,232 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 259, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:255, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154965, arrival = 0, brokerInTime = 1386620154967, brokerOutTime = 1386620214890, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5792acc, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 253}, redeliveryCounter = 1} 2013-12-09 21:16:55,235 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 260, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:256, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155024, arrival = 0, brokerInTime = 1386620155025, brokerOutTime = 1386620214890, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@55e8b9e2, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 254}, redeliveryCounter = 1} 2013-12-09 21:16:55,236 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 261, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:257, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155081, arrival = 0, brokerInTime = 1386620155083, brokerOutTime = 1386620214891, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2203d07e, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 255}, redeliveryCounter = 1} 2013-12-09 21:16:55,238 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 262, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:258, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155140, arrival = 0, brokerInTime = 1386620155141, brokerOutTime = 1386620214891, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@286d11a4, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 256}, redeliveryCounter = 1} 2013-12-09 21:16:55,241 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 263, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:259, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155197, arrival = 0, brokerInTime = 1386620155198, brokerOutTime = 1386620214891, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@10a13ab8, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 257}, redeliveryCounter = 1} 2013-12-09 21:16:55,242 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 264, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:260, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155255, arrival = 0, brokerInTime = 1386620155256, brokerOutTime = 1386620214891, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@49160e8f, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 258}, redeliveryCounter = 1} 2013-12-09 21:16:55,244 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 265, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:261, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155313, arrival = 0, brokerInTime = 1386620155314, brokerOutTime = 1386620214892, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4715f3c5, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 259}, redeliveryCounter = 1} 2013-12-09 21:16:55,246 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 266, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:262, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155371, arrival = 0, brokerInTime = 1386620155372, brokerOutTime = 1386620214892, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@72372ef8, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 260}, redeliveryCounter = 1} 2013-12-09 21:16:55,248 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 267, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:263, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155429, arrival = 0, brokerInTime = 1386620155430, brokerOutTime = 1386620214892, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4ecd65d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 261}, redeliveryCounter = 1} 2013-12-09 21:16:55,250 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 268, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:264, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155487, arrival = 0, brokerInTime = 1386620155489, brokerOutTime = 1386620214892, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@58ed7631, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 262}, redeliveryCounter = 1} 2013-12-09 21:16:55,253 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 269, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:265, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155545, arrival = 0, brokerInTime = 1386620155546, brokerOutTime = 1386620214892, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4deab893, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 263}, redeliveryCounter = 1} 2013-12-09 21:16:55,255 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 270, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:266, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155595, arrival = 0, brokerInTime = 1386620155596, brokerOutTime = 1386620214893, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6cfbe2db, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 264}, redeliveryCounter = 1} 2013-12-09 21:16:55,257 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 271, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:267, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155653, arrival = 0, brokerInTime = 1386620155654, brokerOutTime = 1386620214893, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@ceacfc3, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 265}, redeliveryCounter = 1} 2013-12-09 21:16:55,258 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 272, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:268, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155703, arrival = 0, brokerInTime = 1386620155705, brokerOutTime = 1386620214893, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@bee11d5, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 266}, redeliveryCounter = 1} 2013-12-09 21:16:55,260 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 273, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:269, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155761, arrival = 0, brokerInTime = 1386620155762, brokerOutTime = 1386620214893, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3ad4bd11, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 267}, redeliveryCounter = 1} 2013-12-09 21:16:55,262 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 274, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:270, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155819, arrival = 0, brokerInTime = 1386620155820, brokerOutTime = 1386620214893, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@64c8c543, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 268}, redeliveryCounter = 1} 2013-12-09 21:16:55,264 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 275, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:271, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155877, arrival = 0, brokerInTime = 1386620155878, brokerOutTime = 1386620214893, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@390ee566, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 269}, redeliveryCounter = 1} 2013-12-09 21:16:55,267 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 276, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:272, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155935, arrival = 0, brokerInTime = 1386620155936, brokerOutTime = 1386620214894, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@f6a8ce, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 270}, redeliveryCounter = 1} 2013-12-09 21:16:55,270 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 277, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:273, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156001, arrival = 0, brokerInTime = 1386620156003, brokerOutTime = 1386620214894, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@41c46ce0, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 271}, redeliveryCounter = 1} 2013-12-09 21:16:55,272 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 278, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:274, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156069, arrival = 0, brokerInTime = 1386620156070, brokerOutTime = 1386620214894, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@46c807db, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 272}, redeliveryCounter = 1} 2013-12-09 21:16:55,274 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 279, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:275, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156127, arrival = 0, brokerInTime = 1386620156128, brokerOutTime = 1386620214894, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@767bdf2a, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 273}, redeliveryCounter = 1} 2013-12-09 21:16:55,276 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 280, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:276, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156185, arrival = 0, brokerInTime = 1386620156186, brokerOutTime = 1386620214894, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3e787b2b, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 274}, redeliveryCounter = 1} 2013-12-09 21:16:55,278 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 281, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:277, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156243, arrival = 0, brokerInTime = 1386620156244, brokerOutTime = 1386620214894, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@57de6417, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 275}, redeliveryCounter = 1} 2013-12-09 21:16:55,280 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 282, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:278, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156301, arrival = 0, brokerInTime = 1386620156303, brokerOutTime = 1386620214895, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@497d4f12, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 276}, redeliveryCounter = 1} 2013-12-09 21:16:55,282 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 283, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:279, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156358, arrival = 0, brokerInTime = 1386620156360, brokerOutTime = 1386620214895, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@41d24c6f, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 277}, redeliveryCounter = 1} 2013-12-09 21:16:55,284 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 284, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:280, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156408, arrival = 0, brokerInTime = 1386620156409, brokerOutTime = 1386620214895, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@55982d2b, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 278}, redeliveryCounter = 1} 2013-12-09 21:16:55,286 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 285, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:281, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156458, arrival = 0, brokerInTime = 1386620156459, brokerOutTime = 1386620214895, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@79bd8df3, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 279}, redeliveryCounter = 1} 2013-12-09 21:16:55,288 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 286, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:282, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156557, arrival = 0, brokerInTime = 1386620156559, brokerOutTime = 1386620214895, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@bb28af6, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 280}, redeliveryCounter = 1} 2013-12-09 21:16:55,291 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 287, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:283, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156615, arrival = 0, brokerInTime = 1386620156616, brokerOutTime = 1386620214895, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@76c12279, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 281}, redeliveryCounter = 1} 2013-12-09 21:16:55,293 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 288, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:284, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156673, arrival = 0, brokerInTime = 1386620156675, brokerOutTime = 1386620214896, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1be72d8, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 282}, redeliveryCounter = 1} 2013-12-09 21:16:55,295 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 289, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:285, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156723, arrival = 0, brokerInTime = 1386620156725, brokerOutTime = 1386620214896, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7e65c3cc, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 283}, redeliveryCounter = 1} 2013-12-09 21:16:55,298 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 290, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:286, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156781, arrival = 0, brokerInTime = 1386620156782, brokerOutTime = 1386620214896, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4b19c6e8, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 284}, redeliveryCounter = 1} 2013-12-09 21:16:55,300 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 291, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:287, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156839, arrival = 0, brokerInTime = 1386620156840, brokerOutTime = 1386620214896, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@951cfdd, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 285}, redeliveryCounter = 1} 2013-12-09 21:16:55,303 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 292, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:288, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156897, arrival = 0, brokerInTime = 1386620156899, brokerOutTime = 1386620214896, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5a25baf2, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 286}, redeliveryCounter = 1} 2013-12-09 21:16:55,306 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 293, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:289, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156955, arrival = 0, brokerInTime = 1386620156958, brokerOutTime = 1386620214896, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6314941a, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 287}, redeliveryCounter = 1} 2013-12-09 21:16:55,308 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 294, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:290, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157013, arrival = 0, brokerInTime = 1386620157014, brokerOutTime = 1386620214897, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5c0769c7, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 288}, redeliveryCounter = 1} 2013-12-09 21:16:55,313 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 295, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:291, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157071, arrival = 0, brokerInTime = 1386620157072, brokerOutTime = 1386620214897, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6ab1b704, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 289}, redeliveryCounter = 1} 2013-12-09 21:16:55,315 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 296, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:292, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157129, arrival = 0, brokerInTime = 1386620157130, brokerOutTime = 1386620214897, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@39669e55, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 290}, redeliveryCounter = 1} 2013-12-09 21:16:55,318 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 297, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:293, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157187, arrival = 0, brokerInTime = 1386620157189, brokerOutTime = 1386620214897, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@24fbe4, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 291}, redeliveryCounter = 1} 2013-12-09 21:16:55,321 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 298, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:294, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157245, arrival = 0, brokerInTime = 1386620157246, brokerOutTime = 1386620214897, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7c1535ce, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 292}, redeliveryCounter = 1} 2013-12-09 21:16:55,324 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 299, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:295, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157303, arrival = 0, brokerInTime = 1386620157304, brokerOutTime = 1386620214897, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@547fa706, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 293}, redeliveryCounter = 1} 2013-12-09 21:16:55,326 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 300, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:296, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157361, arrival = 0, brokerInTime = 1386620157363, brokerOutTime = 1386620214898, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@8aea641, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 294}, redeliveryCounter = 1} 2013-12-09 21:16:55,329 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 301, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:297, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157420, arrival = 0, brokerInTime = 1386620157421, brokerOutTime = 1386620214898, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@224f9db, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 295}, redeliveryCounter = 1} 2013-12-09 21:16:55,331 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 302, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:298, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157477, arrival = 0, brokerInTime = 1386620157478, brokerOutTime = 1386620214898, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@498f99f6, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 296}, redeliveryCounter = 1} 2013-12-09 21:16:55,333 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 303, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:299, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157535, arrival = 0, brokerInTime = 1386620157537, brokerOutTime = 1386620214898, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@72c50b34, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 297}, redeliveryCounter = 1} 2013-12-09 21:16:55,335 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 304, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:300, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157593, arrival = 0, brokerInTime = 1386620157594, brokerOutTime = 1386620214898, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6662bdc9, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 298}, redeliveryCounter = 1} 2013-12-09 21:16:55,337 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 305, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:301, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157651, arrival = 0, brokerInTime = 1386620157652, brokerOutTime = 1386620214899, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5c9a0ba2, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 299}, redeliveryCounter = 1} 2013-12-09 21:16:55,340 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 306, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:302, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157717, arrival = 0, brokerInTime = 1386620157718, brokerOutTime = 1386620214899, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@571e82d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 300}, redeliveryCounter = 1} 2013-12-09 21:16:55,342 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 307, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:303, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157784, arrival = 0, brokerInTime = 1386620157786, brokerOutTime = 1386620214899, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7941e525, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 301}, redeliveryCounter = 1} 2013-12-09 21:16:55,344 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 308, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:304, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157850, arrival = 0, brokerInTime = 1386620157851, brokerOutTime = 1386620214900, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@552b1e54, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 302}, redeliveryCounter = 1} 2013-12-09 21:16:55,345 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 309, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:305, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157916, arrival = 0, brokerInTime = 1386620157918, brokerOutTime = 1386620214900, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1d4487b, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 303}, redeliveryCounter = 1} 2013-12-09 21:16:55,347 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 310, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:306, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157982, arrival = 0, brokerInTime = 1386620157984, brokerOutTime = 1386620214900, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@17e2842d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 304}, redeliveryCounter = 1} 2013-12-09 21:16:55,350 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 311, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:307, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158040, arrival = 0, brokerInTime = 1386620158042, brokerOutTime = 1386620214900, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1853b29b, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 305}, redeliveryCounter = 1} 2013-12-09 21:16:55,352 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 312, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:308, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158098, arrival = 0, brokerInTime = 1386620158099, brokerOutTime = 1386620214901, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1ef2ea97, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 306}, redeliveryCounter = 1} 2013-12-09 21:16:55,354 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 313, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:309, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158166, arrival = 0, brokerInTime = 1386620158167, brokerOutTime = 1386620214901, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5e076f60, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 307}, redeliveryCounter = 1} 2013-12-09 21:16:55,356 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 314, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:310, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158224, arrival = 0, brokerInTime = 1386620158226, brokerOutTime = 1386620214901, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3a2137da, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 308}, redeliveryCounter = 1} 2013-12-09 21:16:55,359 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 315, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:311, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158282, arrival = 0, brokerInTime = 1386620158283, brokerOutTime = 1386620214901, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5ad9e706, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 309}, redeliveryCounter = 1} 2013-12-09 21:16:55,361 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 316, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:312, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158340, arrival = 0, brokerInTime = 1386620158341, brokerOutTime = 1386620214901, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@17ce6983, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 310}, redeliveryCounter = 1} 2013-12-09 21:16:55,363 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 317, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:313, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158398, arrival = 0, brokerInTime = 1386620158399, brokerOutTime = 1386620214901, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@13dca792, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 311}, redeliveryCounter = 1} 2013-12-09 21:16:55,365 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 318, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:314, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158456, arrival = 0, brokerInTime = 1386620158457, brokerOutTime = 1386620214901, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7b7d6c6d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 312}, redeliveryCounter = 1} 2013-12-09 21:16:55,368 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 319, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:315, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158514, arrival = 0, brokerInTime = 1386620158515, brokerOutTime = 1386620214902, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6759a771, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 313}, redeliveryCounter = 1} 2013-12-09 21:16:55,371 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 320, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:316, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158613, arrival = 0, brokerInTime = 1386620158615, brokerOutTime = 1386620214902, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2f0020b9, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 314}, redeliveryCounter = 1} 2013-12-09 21:16:55,373 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 321, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:317, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158696, arrival = 0, brokerInTime = 1386620158697, brokerOutTime = 1386620214902, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@316469ca, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 315}, redeliveryCounter = 1} 2013-12-09 21:16:55,375 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 322, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:318, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158779, arrival = 0, brokerInTime = 1386620158780, brokerOutTime = 1386620214902, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@375d661b, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 316}, redeliveryCounter = 1} 2013-12-09 21:16:55,377 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 323, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:319, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158837, arrival = 0, brokerInTime = 1386620158838, brokerOutTime = 1386620214902, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@54da9302, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 317}, redeliveryCounter = 1} 2013-12-09 21:16:55,379 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 324, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:320, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158895, arrival = 0, brokerInTime = 1386620158896, brokerOutTime = 1386620214902, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@59e993d3, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 318}, redeliveryCounter = 1} 2013-12-09 21:16:55,381 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 325, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:321, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158953, arrival = 0, brokerInTime = 1386620158954, brokerOutTime = 1386620214903, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@75e82fc2, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 319}, redeliveryCounter = 1} 2013-12-09 21:16:55,383 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 326, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:322, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159011, arrival = 0, brokerInTime = 1386620159012, brokerOutTime = 1386620214903, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5e97a607, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 320}, redeliveryCounter = 1} 2013-12-09 21:16:55,386 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 327, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:323, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159069, arrival = 0, brokerInTime = 1386620159070, brokerOutTime = 1386620214903, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@36154615, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 321}, redeliveryCounter = 1} 2013-12-09 21:16:55,388 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 328, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:324, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159127, arrival = 0, brokerInTime = 1386620159128, brokerOutTime = 1386620214903, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2eac2870, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 322}, redeliveryCounter = 1} 2013-12-09 21:16:55,390 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 329, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:325, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159185, arrival = 0, brokerInTime = 1386620159187, brokerOutTime = 1386620214903, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2892e900, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 323}, redeliveryCounter = 1} 2013-12-09 21:16:55,392 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 330, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:326, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159243, arrival = 0, brokerInTime = 1386620159244, brokerOutTime = 1386620214903, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@44ff13cf, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 324}, redeliveryCounter = 1} 2013-12-09 21:16:55,394 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 331, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:327, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159301, arrival = 0, brokerInTime = 1386620159302, brokerOutTime = 1386620214903, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@466d9e6c, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 325}, redeliveryCounter = 1} 2013-12-09 21:16:55,396 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 332, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:328, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159359, arrival = 0, brokerInTime = 1386620159360, brokerOutTime = 1386620214904, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@46bbe893, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 326}, redeliveryCounter = 1} 2013-12-09 21:16:55,398 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 333, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:329, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159417, arrival = 0, brokerInTime = 1386620159418, brokerOutTime = 1386620214904, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5aa22f2c, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 327}, redeliveryCounter = 1} 2013-12-09 21:16:55,400 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 334, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:330, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159483, arrival = 0, brokerInTime = 1386620159484, brokerOutTime = 1386620214904, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4dc72030, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 328}, redeliveryCounter = 1} 2013-12-09 21:16:55,402 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 335, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:331, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159549, arrival = 0, brokerInTime = 1386620159551, brokerOutTime = 1386620214904, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4c125734, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 329}, redeliveryCounter = 1} 2013-12-09 21:16:55,404 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 336, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:332, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159607, arrival = 0, brokerInTime = 1386620159608, brokerOutTime = 1386620214904, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@481b3df0, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 330}, redeliveryCounter = 1} 2013-12-09 21:16:55,405 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 337, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:333, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159673, arrival = 0, brokerInTime = 1386620159674, brokerOutTime = 1386620214904, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@747f7c8b, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 331}, redeliveryCounter = 1} 2013-12-09 21:16:55,407 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 338, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:334, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159739, arrival = 0, brokerInTime = 1386620159741, brokerOutTime = 1386620214904, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5dc9c56d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 332}, redeliveryCounter = 1} 2013-12-09 21:16:55,409 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 339, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:335, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159798, arrival = 0, brokerInTime = 1386620159800, brokerOutTime = 1386620214904, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@69c0a735, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 333}, redeliveryCounter = 1} 2013-12-09 21:16:55,411 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 340, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:336, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159856, arrival = 0, brokerInTime = 1386620159857, brokerOutTime = 1386620214905, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6721bed0, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 334}, redeliveryCounter = 1} 2013-12-09 21:16:55,413 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 341, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:337, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159920, arrival = 0, brokerInTime = 1386620159922, brokerOutTime = 1386620214905, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@58767e95, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 335}, redeliveryCounter = 1} 2013-12-09 21:16:55,415 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 342, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:338, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620160137, arrival = 0, brokerInTime = 1386620160139, brokerOutTime = 1386620214905, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4b709592, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 336}, redeliveryCounter = 1} 2013-12-09 21:16:55,418 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 343, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:339, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620160261, arrival = 0, brokerInTime = 1386620160262, brokerOutTime = 1386620214905, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4c6bcaef, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 337}, redeliveryCounter = 1} 2013-12-09 21:16:55,421 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 344, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:340, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620160435, arrival = 0, brokerInTime = 1386620160436, brokerOutTime = 1386620214905, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@38d8381b, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 338}, redeliveryCounter = 1} 2013-12-09 21:16:55,423 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 345, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:341, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620160568, arrival = 0, brokerInTime = 1386620160570, brokerOutTime = 1386620214905, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7b4b91c4, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 339}, redeliveryCounter = 1} 2013-12-09 21:16:55,425 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 346, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:342, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620160674, arrival = 0, brokerInTime = 1386620160675, brokerOutTime = 1386620214905, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1e4f1a19, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 340}, redeliveryCounter = 1} 2013-12-09 21:16:55,427 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 347, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:343, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620160726, arrival = 0, brokerInTime = 1386620160727, brokerOutTime = 1386620214905, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5b3a6eda, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 341}, redeliveryCounter = 1} 2013-12-09 21:16:55,429 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 348, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:344, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620160784, arrival = 0, brokerInTime = 1386620160786, brokerOutTime = 1386620214906, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5943d900, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 342}, redeliveryCounter = 1} 2013-12-09 21:16:55,431 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 349, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:345, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620160842, arrival = 0, brokerInTime = 1386620160843, brokerOutTime = 1386620214906, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@755bbcc8, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 343}, redeliveryCounter = 1} 2013-12-09 21:16:55,432 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 350, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:346, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620160900, arrival = 0, brokerInTime = 1386620160902, brokerOutTime = 1386620214906, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@59c72aa9, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 344}, redeliveryCounter = 1} 2013-12-09 21:16:55,434 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 351, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:347, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620160958, arrival = 0, brokerInTime = 1386620160959, brokerOutTime = 1386620214906, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@22c1eb4b, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 345}, redeliveryCounter = 1} 2013-12-09 21:16:55,436 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 352, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:348, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620161016, arrival = 0, brokerInTime = 1386620161017, brokerOutTime = 1386620214906, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@693e9ac0, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 346}, redeliveryCounter = 1} 2013-12-09 21:16:55,438 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 353, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:349, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620161074, arrival = 0, brokerInTime = 1386620161075, brokerOutTime = 1386620214906, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@d21e93b, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 347}, redeliveryCounter = 1} 2013-12-09 21:16:55,440 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 354, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:350, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620161140, arrival = 0, brokerInTime = 1386620161141, brokerOutTime = 1386620214906, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2d572739, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 348}, redeliveryCounter = 1} 2013-12-09 21:16:55,442 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 355, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:351, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620161198, arrival = 0, brokerInTime = 1386620161199, brokerOutTime = 1386620214907, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@34d02670, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 349}, redeliveryCounter = 1} 2013-12-09 21:16:55,444 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 356, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:352, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620161256, arrival = 0, brokerInTime = 1386620161258, brokerOutTime = 1386620214907, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4d8b9e26, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 350}, redeliveryCounter = 1} 2013-12-09 21:16:55,446 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 357, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:353, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620161314, arrival = 0, brokerInTime = 1386620161315, brokerOutTime = 1386620214907, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@93bf890, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 351}, redeliveryCounter = 1} 2013-12-09 21:16:55,447 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 358, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:354, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620161372, arrival = 0, brokerInTime = 1386620161373, brokerOutTime = 1386620214907, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@403bbaac, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 352}, redeliveryCounter = 1} 2013-12-09 21:16:55,449 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 359, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:355, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620161438, arrival = 0, brokerInTime = 1386620161439, brokerOutTime = 1386620214907, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@115c9326, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 353}, redeliveryCounter = 1} 2013-12-09 21:16:55,451 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 360, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:356, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620161505, arrival = 0, brokerInTime = 1386620161506, brokerOutTime = 1386620214907, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@54c0acb1, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 354}, redeliveryCounter = 1} 2013-12-09 21:16:55,453 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 361, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:357, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620161621, arrival = 0, brokerInTime = 1386620161622, brokerOutTime = 1386620214907, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3589c3ef, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 355}, redeliveryCounter = 1} 2013-12-09 21:16:55,455 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 362, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:358, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620161687, arrival = 0, brokerInTime = 1386620161688, brokerOutTime = 1386620214907, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@679e9b5e, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 356}, redeliveryCounter = 1} 2013-12-09 21:16:55,457 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 363, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:359, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620161753, arrival = 0, brokerInTime = 1386620161754, brokerOutTime = 1386620214908, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5dea6d77, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 357}, redeliveryCounter = 1} 2013-12-09 21:16:55,458 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 364, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:360, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620161811, arrival = 0, brokerInTime = 1386620161812, brokerOutTime = 1386620214908, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@49b8cfcc, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 358}, redeliveryCounter = 1} 2013-12-09 21:16:55,460 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 366, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:362, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620178373, arrival = 0, brokerInTime = 1386620178374, brokerOutTime = 1386620214908, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4527fe4, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 360}, redeliveryCounter = 1} 2013-12-09 21:16:55,462 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 367, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:363, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620178430, arrival = 0, brokerInTime = 1386620178431, brokerOutTime = 1386620214908, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@444a53f3, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 361}, redeliveryCounter = 1} 2013-12-09 21:16:55,464 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 368, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:364, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620178487, arrival = 0, brokerInTime = 1386620178488, brokerOutTime = 1386620214908, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6bcd998b, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 362}, redeliveryCounter = 1} 2013-12-09 21:16:55,466 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 369, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:365, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620178545, arrival = 0, brokerInTime = 1386620178546, brokerOutTime = 1386620214908, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@71babf8, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 363}, redeliveryCounter = 1} 2013-12-09 21:16:55,469 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 370, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:366, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620178603, arrival = 0, brokerInTime = 1386620178605, brokerOutTime = 1386620214909, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@29b72a6d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 364}, redeliveryCounter = 1} 2013-12-09 21:16:55,471 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 371, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:367, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620178662, arrival = 0, brokerInTime = 1386620178663, brokerOutTime = 1386620214909, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@38426f80, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 365}, redeliveryCounter = 1} 2013-12-09 21:16:55,473 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 372, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:368, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620178729, arrival = 0, brokerInTime = 1386620178730, brokerOutTime = 1386620214909, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@11a6595b, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 366}, redeliveryCounter = 1} 2013-12-09 21:16:55,475 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 373, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:369, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620178787, arrival = 0, brokerInTime = 1386620178789, brokerOutTime = 1386620214909, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@40346e6a, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 367}, redeliveryCounter = 1} 2013-12-09 21:16:55,477 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 374, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:370, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620178845, arrival = 0, brokerInTime = 1386620178847, brokerOutTime = 1386620214909, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@323d1214, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 368}, redeliveryCounter = 1} 2013-12-09 21:16:55,479 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 375, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:371, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620178903, arrival = 0, brokerInTime = 1386620178904, brokerOutTime = 1386620214910, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@476df8d0, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 369}, redeliveryCounter = 1} 2013-12-09 21:16:55,481 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 376, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:372, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620178961, arrival = 0, brokerInTime = 1386620178962, brokerOutTime = 1386620214910, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4ea4453, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 370}, redeliveryCounter = 1} 2013-12-09 21:16:55,483 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 377, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:373, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620179019, arrival = 0, brokerInTime = 1386620179021, brokerOutTime = 1386620214910, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@302ba7aa, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 371}, redeliveryCounter = 1} 2013-12-09 21:16:55,486 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 378, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:374, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620179077, arrival = 0, brokerInTime = 1386620179078, brokerOutTime = 1386620214910, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@20ca29b, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 372}, redeliveryCounter = 1} 2013-12-09 21:16:55,487 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 379, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:375, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620179135, arrival = 0, brokerInTime = 1386620179136, brokerOutTime = 1386620214910, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@b876f2a, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 373}, redeliveryCounter = 1} 2013-12-09 21:16:55,489 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 380, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:376, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620179193, arrival = 0, brokerInTime = 1386620179194, brokerOutTime = 1386620214910, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6893344f, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 374}, redeliveryCounter = 1} 2013-12-09 21:16:55,491 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 381, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:377, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620179251, arrival = 0, brokerInTime = 1386620179252, brokerOutTime = 1386620214911, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@184f642c, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 375}, redeliveryCounter = 1} 2013-12-09 21:16:55,493 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 382, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:378, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620179309, arrival = 0, brokerInTime = 1386620179311, brokerOutTime = 1386620214911, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@439912c, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 376}, redeliveryCounter = 1} 2013-12-09 21:16:55,495 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 383, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:379, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620179375, arrival = 0, brokerInTime = 1386620179376, brokerOutTime = 1386620214911, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5f69e1de, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 377}, redeliveryCounter = 1} 2013-12-09 21:16:55,497 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 384, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:380, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620179441, arrival = 0, brokerInTime = 1386620179443, brokerOutTime = 1386620214911, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@206be6c2, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 378}, redeliveryCounter = 1} 2013-12-09 21:16:55,500 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 385, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:381, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620179507, arrival = 0, brokerInTime = 1386620179509, brokerOutTime = 1386620214911, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@bfadb2f, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 379}, redeliveryCounter = 1} 2013-12-09 21:16:55,504 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 386, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:382, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620179574, arrival = 0, brokerInTime = 1386620179575, brokerOutTime = 1386620214911, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@24bf0ce, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 380}, redeliveryCounter = 1} 2013-12-09 21:16:55,506 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 387, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:383, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620179640, arrival = 0, brokerInTime = 1386620179641, brokerOutTime = 1386620214911, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@47ae658f, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 381}, redeliveryCounter = 1} 2013-12-09 21:16:55,508 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 388, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:384, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620179699, arrival = 0, brokerInTime = 1386620179701, brokerOutTime = 1386620214911, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@a8db40d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 382}, redeliveryCounter = 1} 2013-12-09 21:16:55,510 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 389, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:385, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620179756, arrival = 0, brokerInTime = 1386620179758, brokerOutTime = 1386620214912, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5d27c6e4, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 383}, redeliveryCounter = 1} 2013-12-09 21:16:55,513 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 390, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:386, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620179814, arrival = 0, brokerInTime = 1386620179815, brokerOutTime = 1386620214912, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5e72d283, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 384}, redeliveryCounter = 1} 2013-12-09 21:16:55,515 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 391, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:387, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620179872, arrival = 0, brokerInTime = 1386620179874, brokerOutTime = 1386620214912, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@445ac6e6, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 385}, redeliveryCounter = 1} 2013-12-09 21:16:55,518 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 392, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:388, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620179930, arrival = 0, brokerInTime = 1386620179932, brokerOutTime = 1386620214912, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@23b84919, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 386}, redeliveryCounter = 1} 2013-12-09 21:16:55,520 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 393, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:389, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620179988, arrival = 0, brokerInTime = 1386620179990, brokerOutTime = 1386620214912, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@17c71aa1, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 387}, redeliveryCounter = 1} 2013-12-09 21:16:55,522 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 394, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:390, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620180046, arrival = 0, brokerInTime = 1386620180048, brokerOutTime = 1386620214912, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@10a54c39, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 388}, redeliveryCounter = 1} 2013-12-09 21:16:55,525 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 395, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:391, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620180104, arrival = 0, brokerInTime = 1386620180105, brokerOutTime = 1386620214912, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@542f3ab8, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 389}, redeliveryCounter = 1} 2013-12-09 21:16:55,527 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 396, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:392, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620180162, arrival = 0, brokerInTime = 1386620180163, brokerOutTime = 1386620214913, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@68b83135, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 390}, redeliveryCounter = 1} 2013-12-09 21:16:55,529 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 397, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:393, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620180220, arrival = 0, brokerInTime = 1386620180221, brokerOutTime = 1386620214913, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@14a6c449, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 391}, redeliveryCounter = 1} 2013-12-09 21:16:55,531 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 398, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:394, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620180278, arrival = 0, brokerInTime = 1386620180279, brokerOutTime = 1386620214913, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@50a09f36, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 392}, redeliveryCounter = 1} 2013-12-09 21:16:55,534 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 399, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:395, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620180336, arrival = 0, brokerInTime = 1386620180337, brokerOutTime = 1386620214913, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6134bb94, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 393}, redeliveryCounter = 1} 2013-12-09 21:16:55,536 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 400, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:396, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620180394, arrival = 0, brokerInTime = 1386620180395, brokerOutTime = 1386620214913, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4d072367, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 394}, redeliveryCounter = 1} 2013-12-09 21:16:55,538 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 401, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:397, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620180453, arrival = 0, brokerInTime = 1386620180454, brokerOutTime = 1386620214913, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@fa566b3, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 395}, redeliveryCounter = 1} 2013-12-09 21:16:55,540 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 402, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:398, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620180510, arrival = 0, brokerInTime = 1386620180512, brokerOutTime = 1386620214913, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@33f979cb, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 396}, redeliveryCounter = 1} 2013-12-09 21:16:55,541 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 403, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:399, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620180568, arrival = 0, brokerInTime = 1386620180569, brokerOutTime = 1386620214914, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3fab1915, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 397}, redeliveryCounter = 1} 2013-12-09 21:16:55,543 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 404, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:400, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620180626, arrival = 0, brokerInTime = 1386620180627, brokerOutTime = 1386620214914, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@79fbd25a, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 398}, redeliveryCounter = 1} 2013-12-09 21:16:55,545 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 405, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:401, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620180684, arrival = 0, brokerInTime = 1386620180685, brokerOutTime = 1386620214914, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3af5147, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 399}, redeliveryCounter = 1} 2013-12-09 21:16:55,547 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 406, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:402, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620180742, arrival = 0, brokerInTime = 1386620180743, brokerOutTime = 1386620214914, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6b010e34, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 400}, redeliveryCounter = 1} 2013-12-09 21:16:55,549 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 407, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:403, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620180810, arrival = 0, brokerInTime = 1386620180812, brokerOutTime = 1386620214914, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@124baece, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 401}, redeliveryCounter = 1} 2013-12-09 21:16:55,551 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 408, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:404, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620180868, arrival = 0, brokerInTime = 1386620180870, brokerOutTime = 1386620214914, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@26c15fc4, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 402}, redeliveryCounter = 1} 2013-12-09 21:16:55,553 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 409, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:405, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620180926, arrival = 0, brokerInTime = 1386620180927, brokerOutTime = 1386620214914, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@617650bc, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 403}, redeliveryCounter = 1} 2013-12-09 21:16:55,556 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 410, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:406, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620180984, arrival = 0, brokerInTime = 1386620180986, brokerOutTime = 1386620214915, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1eae98a1, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 404}, redeliveryCounter = 1} 2013-12-09 21:16:55,558 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 411, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:407, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620181041, arrival = 0, brokerInTime = 1386620181043, brokerOutTime = 1386620214915, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@58a681c3, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 405}, redeliveryCounter = 1} 2013-12-09 21:16:55,560 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 412, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:408, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620181108, arrival = 0, brokerInTime = 1386620181109, brokerOutTime = 1386620214915, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1b9156ad, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 406}, redeliveryCounter = 1} 2013-12-09 21:16:55,562 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 413, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:409, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620181174, arrival = 0, brokerInTime = 1386620181175, brokerOutTime = 1386620214915, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@62d185fe, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 407}, redeliveryCounter = 1} 2013-12-09 21:16:55,565 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 414, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:410, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620181240, arrival = 0, brokerInTime = 1386620181242, brokerOutTime = 1386620214915, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@29b41961, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 408}, redeliveryCounter = 1} 2013-12-09 21:16:55,567 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 415, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:411, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620181298, arrival = 0, brokerInTime = 1386620181300, brokerOutTime = 1386620214915, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6eee44aa, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 409}, redeliveryCounter = 1} 2013-12-09 21:16:55,570 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 416, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:412, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620181364, arrival = 0, brokerInTime = 1386620181366, brokerOutTime = 1386620214915, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5cde2dcb, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 410}, redeliveryCounter = 1} 2013-12-09 21:16:55,572 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 417, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:413, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620181431, arrival = 0, brokerInTime = 1386620181433, brokerOutTime = 1386620214916, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7e909a0e, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 411}, redeliveryCounter = 1} 2013-12-09 21:16:55,575 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 418, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:414, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620181489, arrival = 0, brokerInTime = 1386620181490, brokerOutTime = 1386620214916, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@47724e0c, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 412}, redeliveryCounter = 1} 2013-12-09 21:16:55,577 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 419, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:415, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620181588, arrival = 0, brokerInTime = 1386620181589, brokerOutTime = 1386620214916, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@21621a79, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 413}, redeliveryCounter = 1} 2013-12-09 21:16:55,579 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 420, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:416, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620181646, arrival = 0, brokerInTime = 1386620181648, brokerOutTime = 1386620214916, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2fb80f0e, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 414}, redeliveryCounter = 1} 2013-12-09 21:16:55,581 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 421, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:417, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620181704, arrival = 0, brokerInTime = 1386620181705, brokerOutTime = 1386620214916, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5ce4789b, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 415}, redeliveryCounter = 1} 2013-12-09 21:16:55,583 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 422, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:418, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620181762, arrival = 0, brokerInTime = 1386620181763, brokerOutTime = 1386620214916, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1baa37c2, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 416}, redeliveryCounter = 1} 2013-12-09 21:16:55,586 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 423, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:419, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620181820, arrival = 0, brokerInTime = 1386620181821, brokerOutTime = 1386620214916, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4432afbe, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 417}, redeliveryCounter = 1} 2013-12-09 21:16:55,589 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 424, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:420, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620181879, arrival = 0, brokerInTime = 1386620181880, brokerOutTime = 1386620214917, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5bb005ec, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 418}, redeliveryCounter = 1} 2013-12-09 21:16:55,591 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 425, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:421, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620181937, arrival = 0, brokerInTime = 1386620181939, brokerOutTime = 1386620214917, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@154f7fb, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 419}, redeliveryCounter = 1} 2013-12-09 21:16:55,594 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 426, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:422, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620181995, arrival = 0, brokerInTime = 1386620181996, brokerOutTime = 1386620214917, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7164806b, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 420}, redeliveryCounter = 1} 2013-12-09 21:16:55,596 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 427, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:423, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620182052, arrival = 0, brokerInTime = 1386620182054, brokerOutTime = 1386620214917, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7d2b2af5, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 421}, redeliveryCounter = 1} 2013-12-09 21:16:55,598 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 428, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:424, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620182110, arrival = 0, brokerInTime = 1386620182111, brokerOutTime = 1386620214917, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1d117b06, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 422}, redeliveryCounter = 1} 2013-12-09 21:16:55,600 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 429, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:425, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620182168, arrival = 0, brokerInTime = 1386620182169, brokerOutTime = 1386620214917, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@66a3d5d2, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 423}, redeliveryCounter = 1} 2013-12-09 21:16:55,602 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 430, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:426, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620182226, arrival = 0, brokerInTime = 1386620182228, brokerOutTime = 1386620214917, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@e2b02a3, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 424}, redeliveryCounter = 1} 2013-12-09 21:16:55,605 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 431, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:427, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620182284, arrival = 0, brokerInTime = 1386620182285, brokerOutTime = 1386620214917, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@29ba2299, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 425}, redeliveryCounter = 1} 2013-12-09 21:16:55,607 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 432, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:428, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620182342, arrival = 0, brokerInTime = 1386620182343, brokerOutTime = 1386620214918, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7b358035, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 426}, redeliveryCounter = 1} 2013-12-09 21:16:55,609 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 433, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:429, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620182400, arrival = 0, brokerInTime = 1386620182402, brokerOutTime = 1386620214918, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@757456c4, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 427}, redeliveryCounter = 1} 2013-12-09 21:16:55,611 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 434, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:430, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620182458, arrival = 0, brokerInTime = 1386620182460, brokerOutTime = 1386620214918, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@28ec9a1a, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 428}, redeliveryCounter = 1} 2013-12-09 21:16:55,613 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 435, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:431, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620182516, arrival = 0, brokerInTime = 1386620182518, brokerOutTime = 1386620214918, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@457935f3, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 429}, redeliveryCounter = 1} 2013-12-09 21:16:55,615 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 436, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:432, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620182574, arrival = 0, brokerInTime = 1386620182576, brokerOutTime = 1386620214918, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@18c50827, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 430}, redeliveryCounter = 1} 2013-12-09 21:16:55,618 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 437, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:433, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620182632, arrival = 0, brokerInTime = 1386620182634, brokerOutTime = 1386620214918, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2f9a4525, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 431}, redeliveryCounter = 1} 2013-12-09 21:16:55,622 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 438, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:434, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620182690, arrival = 0, brokerInTime = 1386620182692, brokerOutTime = 1386620214918, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3931988d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 432}, redeliveryCounter = 1} 2013-12-09 21:16:55,624 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 439, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:435, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620182748, arrival = 0, brokerInTime = 1386620182750, brokerOutTime = 1386620214919, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@67166e50, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 433}, redeliveryCounter = 1} 2013-12-09 21:16:55,626 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 440, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:436, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620182807, arrival = 0, brokerInTime = 1386620182808, brokerOutTime = 1386620214919, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@71a47b0f, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 434}, redeliveryCounter = 1} 2013-12-09 21:16:55,628 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 441, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:437, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620182882, arrival = 0, brokerInTime = 1386620182884, brokerOutTime = 1386620214919, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@658b5012, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 435}, redeliveryCounter = 1} 2013-12-09 21:16:55,630 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 442, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:438, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620182990, arrival = 0, brokerInTime = 1386620182993, brokerOutTime = 1386620214919, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1d3601d3, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 436}, redeliveryCounter = 1} 2013-12-09 21:16:55,632 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 443, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:439, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620183098, arrival = 0, brokerInTime = 1386620183100, brokerOutTime = 1386620214919, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@44b1d2a0, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 437}, redeliveryCounter = 1} 2013-12-09 21:16:55,634 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 444, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:440, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620183210, arrival = 0, brokerInTime = 1386620183211, brokerOutTime = 1386620214919, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@767b299b, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 438}, redeliveryCounter = 1} 2013-12-09 21:16:55,636 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 445, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:441, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620183519, arrival = 0, brokerInTime = 1386620183520, brokerOutTime = 1386620214919, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@fe8bbe2, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 439}, redeliveryCounter = 1} 2013-12-09 21:16:55,638 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 446, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:442, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620183668, arrival = 0, brokerInTime = 1386620183669, brokerOutTime = 1386620214919, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7886fa96, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 440}, redeliveryCounter = 1} 2013-12-09 21:16:55,640 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 447, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:443, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620183773, arrival = 0, brokerInTime = 1386620183774, brokerOutTime = 1386620214920, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@65adcbab, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 441}, redeliveryCounter = 1} 2013-12-09 21:16:55,643 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 448, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:444, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620183825, arrival = 0, brokerInTime = 1386620183826, brokerOutTime = 1386620214920, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@75167bb3, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 442}, redeliveryCounter = 1} 2013-12-09 21:16:55,645 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 449, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:445, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620183883, arrival = 0, brokerInTime = 1386620183884, brokerOutTime = 1386620214920, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@171360d3, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 443}, redeliveryCounter = 1} 2013-12-09 21:16:55,648 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 450, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:446, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620183941, arrival = 0, brokerInTime = 1386620183942, brokerOutTime = 1386620214920, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7939c87a, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 444}, redeliveryCounter = 1} 2013-12-09 21:16:55,650 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 451, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:447, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620183999, arrival = 0, brokerInTime = 1386620184002, brokerOutTime = 1386620214920, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4098ffc3, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 445}, redeliveryCounter = 1} 2013-12-09 21:16:55,653 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 452, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:448, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620184057, arrival = 0, brokerInTime = 1386620184059, brokerOutTime = 1386620214920, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7cbf7c56, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 446}, redeliveryCounter = 1} 2013-12-09 21:16:55,655 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 453, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:449, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620184115, arrival = 0, brokerInTime = 1386620184117, brokerOutTime = 1386620214920, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7f7c3215, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 447}, redeliveryCounter = 1} 2013-12-09 21:16:55,658 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 454, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:450, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620184173, arrival = 0, brokerInTime = 1386620184174, brokerOutTime = 1386620214920, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@32bc4216, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 448}, redeliveryCounter = 1} 2013-12-09 21:16:55,661 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 455, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:451, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620184231, arrival = 0, brokerInTime = 1386620184233, brokerOutTime = 1386620214921, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6596cc5f, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 449}, redeliveryCounter = 1} 2013-12-09 21:16:55,665 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 456, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:452, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620184289, arrival = 0, brokerInTime = 1386620184290, brokerOutTime = 1386620214921, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@f43a514, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 450}, redeliveryCounter = 1} 2013-12-09 21:16:55,668 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 457, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:453, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620184347, arrival = 0, brokerInTime = 1386620184349, brokerOutTime = 1386620214921, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@220acbe0, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 451}, redeliveryCounter = 1} 2013-12-09 21:16:55,671 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 458, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:454, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620184405, arrival = 0, brokerInTime = 1386620184406, brokerOutTime = 1386620214921, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@72cef095, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 452}, redeliveryCounter = 1} 2013-12-09 21:16:55,673 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 459, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:455, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620184463, arrival = 0, brokerInTime = 1386620184464, brokerOutTime = 1386620214921, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@70150115, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 453}, redeliveryCounter = 1} 2013-12-09 21:16:55,675 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 460, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:456, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620184521, arrival = 0, brokerInTime = 1386620184522, brokerOutTime = 1386620214921, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@72fa432f, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 454}, redeliveryCounter = 1} 2013-12-09 21:16:55,677 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 461, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:457, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620184579, arrival = 0, brokerInTime = 1386620184580, brokerOutTime = 1386620214921, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@c50fda2, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 455}, redeliveryCounter = 1} 2013-12-09 21:16:55,679 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 462, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:458, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620184637, arrival = 0, brokerInTime = 1386620184638, brokerOutTime = 1386620214922, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@193b9cff, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 456}, redeliveryCounter = 1} 2013-12-09 21:16:55,681 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 463, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:459, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620184695, arrival = 0, brokerInTime = 1386620184696, brokerOutTime = 1386620214922, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@18c0364a, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 457}, redeliveryCounter = 1} 2013-12-09 21:16:55,683 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 464, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:460, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620184753, arrival = 0, brokerInTime = 1386620184754, brokerOutTime = 1386620214922, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@732c40f7, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 458}, redeliveryCounter = 1} 2013-12-09 21:16:55,685 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 465, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:461, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620184811, arrival = 0, brokerInTime = 1386620184812, brokerOutTime = 1386620214922, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5e5d5333, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 459}, redeliveryCounter = 1} 2013-12-09 21:16:55,687 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 466, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:462, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620184869, arrival = 0, brokerInTime = 1386620184870, brokerOutTime = 1386620214922, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@410169ab, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 460}, redeliveryCounter = 1} 2013-12-09 21:16:55,690 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 467, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:463, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620184927, arrival = 0, brokerInTime = 1386620184928, brokerOutTime = 1386620214922, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@43c07ae4, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 461}, redeliveryCounter = 1} 2013-12-09 21:16:55,691 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 468, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:464, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620184985, arrival = 0, brokerInTime = 1386620184986, brokerOutTime = 1386620214922, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@11c4317c, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 462}, redeliveryCounter = 1} 2013-12-09 21:16:55,693 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 469, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:465, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620185043, arrival = 0, brokerInTime = 1386620185044, brokerOutTime = 1386620214922, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@678ccd00, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 463}, redeliveryCounter = 1} 2013-12-09 21:16:55,695 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 470, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:466, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620185101, arrival = 0, brokerInTime = 1386620185103, brokerOutTime = 1386620214923, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4ce6f01c, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 464}, redeliveryCounter = 1} 2013-12-09 21:16:55,698 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 471, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:467, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620185159, arrival = 0, brokerInTime = 1386620185160, brokerOutTime = 1386620214923, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4d9de5b5, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 465}, redeliveryCounter = 1} 2013-12-09 21:16:55,700 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 472, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:468, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620185217, arrival = 0, brokerInTime = 1386620185218, brokerOutTime = 1386620214923, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3953f5e2, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 466}, redeliveryCounter = 1} 2013-12-09 21:16:55,703 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 473, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:469, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620185268, arrival = 0, brokerInTime = 1386620185269, brokerOutTime = 1386620214923, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3733e5d5, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 467}, redeliveryCounter = 1} 2013-12-09 21:16:55,705 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 474, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:470, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620185326, arrival = 0, brokerInTime = 1386620185327, brokerOutTime = 1386620214923, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@30361f43, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 468}, redeliveryCounter = 1} 2013-12-09 21:16:55,707 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 475, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:471, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620185384, arrival = 0, brokerInTime = 1386620185386, brokerOutTime = 1386620214923, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@313e806f, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 469}, redeliveryCounter = 1} 2013-12-09 21:16:55,709 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 476, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:472, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620185442, arrival = 0, brokerInTime = 1386620185443, brokerOutTime = 1386620214923, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7e6210aa, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 470}, redeliveryCounter = 1} 2013-12-09 21:16:55,711 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 477, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:473, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620185500, arrival = 0, brokerInTime = 1386620185502, brokerOutTime = 1386620214924, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@583449b8, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 471}, redeliveryCounter = 1} 2013-12-09 21:16:55,713 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 478, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:474, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620185558, arrival = 0, brokerInTime = 1386620185560, brokerOutTime = 1386620214924, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@50d3fc45, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 472}, redeliveryCounter = 1} 2013-12-09 21:16:55,715 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 479, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:475, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620185616, arrival = 0, brokerInTime = 1386620185619, brokerOutTime = 1386620214924, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@d573f78, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 473}, redeliveryCounter = 1} 2013-12-09 21:16:55,718 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 480, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:476, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620185674, arrival = 0, brokerInTime = 1386620185676, brokerOutTime = 1386620214924, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5b07e61f, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 474}, redeliveryCounter = 1} 2013-12-09 21:16:55,720 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 481, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:477, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620185732, arrival = 0, brokerInTime = 1386620185734, brokerOutTime = 1386620214924, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@63952be9, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 475}, redeliveryCounter = 1} 2013-12-09 21:16:55,723 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 482, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:478, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620185790, arrival = 0, brokerInTime = 1386620185792, brokerOutTime = 1386620214924, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@56760112, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 476}, redeliveryCounter = 1} 2013-12-09 21:16:55,725 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 483, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:479, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620185848, arrival = 0, brokerInTime = 1386620185850, brokerOutTime = 1386620214924, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5d407116, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 477}, redeliveryCounter = 1} 2013-12-09 21:16:55,728 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 484, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:480, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620185907, arrival = 0, brokerInTime = 1386620185909, brokerOutTime = 1386620214925, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@31c08b2e, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 478}, redeliveryCounter = 1} 2013-12-09 21:16:55,730 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 485, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:481, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620185964, arrival = 0, brokerInTime = 1386620185965, brokerOutTime = 1386620214925, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@57f19286, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 479}, redeliveryCounter = 1} 2013-12-09 21:16:55,732 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 486, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:482, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620186022, arrival = 0, brokerInTime = 1386620186023, brokerOutTime = 1386620214925, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@34cac885, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 480}, redeliveryCounter = 1} 2013-12-09 21:16:55,734 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 487, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:483, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620186080, arrival = 0, brokerInTime = 1386620186081, brokerOutTime = 1386620214925, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6d32aed6, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 481}, redeliveryCounter = 1} 2013-12-09 21:16:55,736 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 488, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:484, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620186138, arrival = 0, brokerInTime = 1386620186139, brokerOutTime = 1386620214925, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1a749b9c, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 482}, redeliveryCounter = 1} 2013-12-09 21:16:55,739 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 489, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:485, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620186196, arrival = 0, brokerInTime = 1386620186198, brokerOutTime = 1386620214925, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5d942c55, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 483}, redeliveryCounter = 1} 2013-12-09 21:16:55,741 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 490, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:486, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620186254, arrival = 0, brokerInTime = 1386620186255, brokerOutTime = 1386620214925, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2aeab072, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 484}, redeliveryCounter = 1} 2013-12-09 21:16:55,744 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 491, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:487, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620186312, arrival = 0, brokerInTime = 1386620186313, brokerOutTime = 1386620214925, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@15e62261, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 485}, redeliveryCounter = 1} 2013-12-09 21:16:55,746 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 492, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:488, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620186370, arrival = 0, brokerInTime = 1386620186371, brokerOutTime = 1386620214926, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@37db1982, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 486}, redeliveryCounter = 1} 2013-12-09 21:16:55,749 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 493, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:489, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620186428, arrival = 0, brokerInTime = 1386620186429, brokerOutTime = 1386620214926, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1167c274, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 487}, redeliveryCounter = 1} 2013-12-09 21:16:55,752 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 494, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:490, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620186486, arrival = 0, brokerInTime = 1386620186487, brokerOutTime = 1386620214926, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@330f5699, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 488}, redeliveryCounter = 1} 2013-12-09 21:16:55,756 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 495, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:491, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620186585, arrival = 0, brokerInTime = 1386620186587, brokerOutTime = 1386620214926, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@33fe70ff, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 489}, redeliveryCounter = 1} 2013-12-09 21:16:55,760 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 496, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:492, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620186643, arrival = 0, brokerInTime = 1386620186644, brokerOutTime = 1386620214926, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5ac9004, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 490}, redeliveryCounter = 1} 2013-12-09 21:16:55,762 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 497, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:493, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620186701, arrival = 0, brokerInTime = 1386620186702, brokerOutTime = 1386620214926, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@422f985, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 491}, redeliveryCounter = 1} 2013-12-09 21:16:55,764 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 498, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:494, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620186759, arrival = 0, brokerInTime = 1386620186760, brokerOutTime = 1386620214926, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@142b8ce2, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 492}, redeliveryCounter = 1} 2013-12-09 21:16:55,768 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 499, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:495, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620186817, arrival = 0, brokerInTime = 1386620186819, brokerOutTime = 1386620214927, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@372e53c6, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 493}, redeliveryCounter = 1} 2013-12-09 21:16:55,770 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 500, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:496, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620186875, arrival = 0, brokerInTime = 1386620186877, brokerOutTime = 1386620214927, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@427e0877, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 494}, redeliveryCounter = 1} 2013-12-09 21:16:55,772 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 501, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:497, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620186933, arrival = 0, brokerInTime = 1386620186934, brokerOutTime = 1386620214927, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@605ddebb, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 495}, redeliveryCounter = 1} 2013-12-09 21:16:55,775 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 502, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:498, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620186999, arrival = 0, brokerInTime = 1386620187000, brokerOutTime = 1386620214927, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@32c9f86a, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 496}, redeliveryCounter = 1} 2013-12-09 21:16:55,777 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 503, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:499, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620187066, arrival = 0, brokerInTime = 1386620187068, brokerOutTime = 1386620214927, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@69d41132, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 497}, redeliveryCounter = 1} 2013-12-09 21:16:55,779 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 504, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:500, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620187132, arrival = 0, brokerInTime = 1386620187134, brokerOutTime = 1386620214927, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@61b51fe5, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 498}, redeliveryCounter = 1} 2013-12-09 21:16:55,781 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 505, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:501, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620187198, arrival = 0, brokerInTime = 1386620187200, brokerOutTime = 1386620214927, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3a412580, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 499}, redeliveryCounter = 1} 2013-12-09 21:16:55,783 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 506, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:502, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620187264, arrival = 0, brokerInTime = 1386620187266, brokerOutTime = 1386620214928, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@b051461, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 500}, redeliveryCounter = 1} 2013-12-09 21:16:55,785 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 507, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:503, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620187332, arrival = 0, brokerInTime = 1386620187334, brokerOutTime = 1386620214928, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7a7cf1ed, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 501}, redeliveryCounter = 1} 2013-12-09 21:16:55,788 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 508, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:504, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620187390, arrival = 0, brokerInTime = 1386620187391, brokerOutTime = 1386620214928, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@20ef3d6e, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 502}, redeliveryCounter = 1} 2013-12-09 21:16:55,790 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 509, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:505, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620187448, arrival = 0, brokerInTime = 1386620187449, brokerOutTime = 1386620214928, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3aaa11a6, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 503}, redeliveryCounter = 1} 2013-12-09 21:16:55,791 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 510, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:506, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620187506, arrival = 0, brokerInTime = 1386620187507, brokerOutTime = 1386620214928, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@736cc760, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 504}, redeliveryCounter = 1} 2013-12-09 21:16:55,794 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 511, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:507, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620187564, arrival = 0, brokerInTime = 1386620187566, brokerOutTime = 1386620214928, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6a95aad3, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 505}, redeliveryCounter = 1} 2013-12-09 21:16:55,796 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 512, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:508, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620187622, arrival = 0, brokerInTime = 1386620187624, brokerOutTime = 1386620214928, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@8023950, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 506}, redeliveryCounter = 1} 2013-12-09 21:16:55,798 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 513, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:509, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620187680, arrival = 0, brokerInTime = 1386620187681, brokerOutTime = 1386620214928, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4a00b74b, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 507}, redeliveryCounter = 1} 2013-12-09 21:16:55,800 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 514, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:510, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620187738, arrival = 0, brokerInTime = 1386620187739, brokerOutTime = 1386620214929, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7501c2e1, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 508}, redeliveryCounter = 1} 2013-12-09 21:16:55,802 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 515, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:511, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620187796, arrival = 0, brokerInTime = 1386620187798, brokerOutTime = 1386620214929, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@46a17dca, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 509}, redeliveryCounter = 1} 2013-12-09 21:16:55,804 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 516, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:512, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620187854, arrival = 0, brokerInTime = 1386620187855, brokerOutTime = 1386620214929, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@14497d00, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 510}, redeliveryCounter = 1} 2013-12-09 21:16:55,806 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 517, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:513, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620187912, arrival = 0, brokerInTime = 1386620187913, brokerOutTime = 1386620214929, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@64ad9567, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 511}, redeliveryCounter = 1} 2013-12-09 21:16:55,808 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 518, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:514, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620187970, arrival = 0, brokerInTime = 1386620187971, brokerOutTime = 1386620214929, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@402bd0d4, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 512}, redeliveryCounter = 1} 2013-12-09 21:16:55,810 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 519, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:515, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620188028, arrival = 0, brokerInTime = 1386620188029, brokerOutTime = 1386620214929, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7c9b2f35, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 513}, redeliveryCounter = 1} 2013-12-09 21:16:55,812 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 520, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:516, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620188086, arrival = 0, brokerInTime = 1386620188087, brokerOutTime = 1386620214929, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3038807c, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 514}, redeliveryCounter = 1} 2013-12-09 21:16:55,814 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 521, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:517, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620188144, arrival = 0, brokerInTime = 1386620188145, brokerOutTime = 1386620214929, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4d7b659f, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 515}, redeliveryCounter = 1} 2013-12-09 21:16:55,815 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 522, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:518, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620188202, arrival = 0, brokerInTime = 1386620188203, brokerOutTime = 1386620214930, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@604cd176, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 516}, redeliveryCounter = 1} 2013-12-09 21:16:55,818 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 523, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:519, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620188260, arrival = 0, brokerInTime = 1386620188261, brokerOutTime = 1386620214930, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@534bcb5e, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 517}, redeliveryCounter = 1} 2013-12-09 21:16:55,821 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 524, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:520, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620188319, arrival = 0, brokerInTime = 1386620188320, brokerOutTime = 1386620214930, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1514b30b, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 518}, redeliveryCounter = 1} 2013-12-09 21:16:55,823 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 525, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:521, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620188376, arrival = 0, brokerInTime = 1386620188377, brokerOutTime = 1386620214930, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1f6a1fd, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 519}, redeliveryCounter = 1} 2013-12-09 21:16:55,825 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 526, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:522, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620188434, arrival = 0, brokerInTime = 1386620188435, brokerOutTime = 1386620214930, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6704ea0c, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 520}, redeliveryCounter = 1} 2013-12-09 21:16:55,828 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 527, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:523, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620188492, arrival = 0, brokerInTime = 1386620188493, brokerOutTime = 1386620214930, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@73a1eeaa, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 521}, redeliveryCounter = 1} 2013-12-09 21:16:55,830 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 528, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:524, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620188550, arrival = 0, brokerInTime = 1386620188552, brokerOutTime = 1386620214930, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@c3c1635, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 522}, redeliveryCounter = 1} 2013-12-09 21:16:55,832 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 529, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:525, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620188608, arrival = 0, brokerInTime = 1386620188609, brokerOutTime = 1386620214931, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3cd5f7d9, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 523}, redeliveryCounter = 1} 2013-12-09 21:16:55,834 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 530, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:526, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620188666, arrival = 0, brokerInTime = 1386620188668, brokerOutTime = 1386620214931, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@382e6c3, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 524}, redeliveryCounter = 1} 2013-12-09 21:16:55,836 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 531, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:527, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620188724, arrival = 0, brokerInTime = 1386620188725, brokerOutTime = 1386620214931, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6fc0e02, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 525}, redeliveryCounter = 1} 2013-12-09 21:16:55,838 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 532, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:528, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620188790, arrival = 0, brokerInTime = 1386620188791, brokerOutTime = 1386620214931, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@dfba8e3, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 526}, redeliveryCounter = 1} 2013-12-09 21:16:55,841 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 533, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:529, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620188897, arrival = 0, brokerInTime = 1386620188899, brokerOutTime = 1386620214931, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@50cd641, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 527}, redeliveryCounter = 1} 2013-12-09 21:16:55,843 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 534, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:530, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620188955, arrival = 0, brokerInTime = 1386620188957, brokerOutTime = 1386620214931, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@dc647fe, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 528}, redeliveryCounter = 1} 2013-12-09 21:16:55,845 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 535, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:531, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620189063, arrival = 0, brokerInTime = 1386620189064, brokerOutTime = 1386620214931, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@54a07bc2, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 529}, redeliveryCounter = 1} 2013-12-09 21:16:55,847 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 536, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:532, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620189129, arrival = 0, brokerInTime = 1386620189130, brokerOutTime = 1386620214932, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@741d28f5, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 530}, redeliveryCounter = 1} 2013-12-09 21:16:55,849 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 537, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:533, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620189187, arrival = 0, brokerInTime = 1386620189188, brokerOutTime = 1386620214932, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@266c2861, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 531}, redeliveryCounter = 1} 2013-12-09 21:16:55,851 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 538, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:534, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620189245, arrival = 0, brokerInTime = 1386620189246, brokerOutTime = 1386620214932, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6cf0bfc, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 532}, redeliveryCounter = 1} 2013-12-09 21:16:55,853 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 539, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:535, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620189303, arrival = 0, brokerInTime = 1386620189305, brokerOutTime = 1386620214932, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@31bd0e2, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 533}, redeliveryCounter = 1} 2013-12-09 21:16:55,855 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 540, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:536, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620189362, arrival = 0, brokerInTime = 1386620189363, brokerOutTime = 1386620214932, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@172ea706, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 534}, redeliveryCounter = 1} 2013-12-09 21:16:55,857 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 541, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:537, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620189420, arrival = 0, brokerInTime = 1386620189422, brokerOutTime = 1386620214932, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@77d786cd, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 535}, redeliveryCounter = 1} 2013-12-09 21:16:55,860 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 542, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:538, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620189477, arrival = 0, brokerInTime = 1386620189479, brokerOutTime = 1386620214933, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@66d33a32, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 536}, redeliveryCounter = 1} 2013-12-09 21:16:55,861 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 543, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:539, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620189546, arrival = 0, brokerInTime = 1386620189548, brokerOutTime = 1386620214933, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3591dd5b, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 537}, redeliveryCounter = 1} 2013-12-09 21:16:55,863 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 544, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:540, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620189604, arrival = 0, brokerInTime = 1386620189605, brokerOutTime = 1386620214933, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7b5b9cd6, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 538}, redeliveryCounter = 1} 2013-12-09 21:16:55,866 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 545, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:541, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620189662, arrival = 0, brokerInTime = 1386620189664, brokerOutTime = 1386620214933, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3b95e4df, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 539}, redeliveryCounter = 1} 2013-12-09 21:16:55,869 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 546, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:542, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620189720, arrival = 0, brokerInTime = 1386620189723, brokerOutTime = 1386620214933, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6de50b08, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 540}, redeliveryCounter = 1} 2013-12-09 21:16:55,873 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 547, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:543, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620189778, arrival = 0, brokerInTime = 1386620189779, brokerOutTime = 1386620214933, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@58377295, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 541}, redeliveryCounter = 1} 2013-12-09 21:16:55,876 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 548, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:544, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620189836, arrival = 0, brokerInTime = 1386620189837, brokerOutTime = 1386620214933, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2043c172, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 542}, redeliveryCounter = 1} 2013-12-09 21:16:55,878 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 549, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:545, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620189894, arrival = 0, brokerInTime = 1386620189895, brokerOutTime = 1386620214934, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@405133ea, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 543}, redeliveryCounter = 1} 2013-12-09 21:16:55,880 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 550, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:546, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620189952, arrival = 0, brokerInTime = 1386620189954, brokerOutTime = 1386620214934, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@132768a3, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 544}, redeliveryCounter = 1} 2013-12-09 21:16:55,882 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 551, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:547, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620190010, arrival = 0, brokerInTime = 1386620190012, brokerOutTime = 1386620214934, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@46af28, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 545}, redeliveryCounter = 1} 2013-12-09 21:16:55,884 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 552, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:548, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620190069, arrival = 0, brokerInTime = 1386620190071, brokerOutTime = 1386620214934, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@20956b3c, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 546}, redeliveryCounter = 1} 2013-12-09 21:16:55,886 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 553, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:549, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620190126, arrival = 0, brokerInTime = 1386620190127, brokerOutTime = 1386620214934, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@31b340da, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 547}, redeliveryCounter = 1} 2013-12-09 21:16:55,888 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 554, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:550, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620190184, arrival = 0, brokerInTime = 1386620190186, brokerOutTime = 1386620214934, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6f66c1b3, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 548}, redeliveryCounter = 1} 2013-12-09 21:16:55,890 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 555, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:551, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620190250, arrival = 0, brokerInTime = 1386620190252, brokerOutTime = 1386620214934, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@433707e8, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 549}, redeliveryCounter = 1} 2013-12-09 21:16:55,892 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 556, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:552, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620190316, arrival = 0, brokerInTime = 1386620190318, brokerOutTime = 1386620214935, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@51e832d1, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 550}, redeliveryCounter = 1} 2013-12-09 21:16:55,894 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 557, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:553, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620190383, arrival = 0, brokerInTime = 1386620190386, brokerOutTime = 1386620214935, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@63606159, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 551}, redeliveryCounter = 1} 2013-12-09 21:16:55,896 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 558, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:554, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620190491, arrival = 0, brokerInTime = 1386620190493, brokerOutTime = 1386620214935, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4c974d07, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 552}, redeliveryCounter = 1} 2013-12-09 21:16:55,899 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 559, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:555, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620190599, arrival = 0, brokerInTime = 1386620190601, brokerOutTime = 1386620214935, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@61422dd9, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 553}, redeliveryCounter = 1} 2013-12-09 21:16:55,901 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 560, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:556, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620190706, arrival = 0, brokerInTime = 1386620190707, brokerOutTime = 1386620214935, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3fd03371, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 554}, redeliveryCounter = 1} 2013-12-09 21:16:55,905 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 561, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:557, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620190763, arrival = 0, brokerInTime = 1386620190765, brokerOutTime = 1386620214935, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7de16071, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 555}, redeliveryCounter = 1} 2013-12-09 21:16:55,907 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 562, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:558, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620190830, arrival = 0, brokerInTime = 1386620190831, brokerOutTime = 1386620214935, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5782db47, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 556}, redeliveryCounter = 1} 2013-12-09 21:16:55,910 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 563, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:559, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620190887, arrival = 0, brokerInTime = 1386620190889, brokerOutTime = 1386620214936, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@500a3f33, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 557}, redeliveryCounter = 1} 2013-12-09 21:16:55,913 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 564, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:560, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620190945, arrival = 0, brokerInTime = 1386620190947, brokerOutTime = 1386620214936, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@50bb5652, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 558}, redeliveryCounter = 1} 2013-12-09 21:16:55,915 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 565, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:561, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620191003, arrival = 0, brokerInTime = 1386620191005, brokerOutTime = 1386620214936, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3b204ae6, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 559}, redeliveryCounter = 1} 2013-12-09 21:16:55,918 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 566, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:562, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620191061, arrival = 0, brokerInTime = 1386620191062, brokerOutTime = 1386620214936, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4515605d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 560}, redeliveryCounter = 1} 2013-12-09 21:16:55,921 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 567, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:563, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620191111, arrival = 0, brokerInTime = 1386620191113, brokerOutTime = 1386620214936, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7e699d19, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 561}, redeliveryCounter = 1} 2013-12-09 21:16:55,925 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 568, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:564, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620191169, arrival = 0, brokerInTime = 1386620191171, brokerOutTime = 1386620214936, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@47c91525, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 562}, redeliveryCounter = 1} 2013-12-09 21:16:55,928 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 569, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:565, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620191227, arrival = 0, brokerInTime = 1386620191229, brokerOutTime = 1386620214936, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@628b54f4, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 563}, redeliveryCounter = 1} 2013-12-09 21:16:55,931 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 570, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:566, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620191285, arrival = 0, brokerInTime = 1386620191286, brokerOutTime = 1386620214936, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@297691b7, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 564}, redeliveryCounter = 1} 2013-12-09 21:16:55,935 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 571, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:567, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620191343, arrival = 0, brokerInTime = 1386620191344, brokerOutTime = 1386620214936, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@27589aa5, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 565}, redeliveryCounter = 1} 2013-12-09 21:16:55,938 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 572, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:568, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620191401, arrival = 0, brokerInTime = 1386620191402, brokerOutTime = 1386620214937, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2a10dad1, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 566}, redeliveryCounter = 1} 2013-12-09 21:16:55,940 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 573, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:569, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620191459, arrival = 0, brokerInTime = 1386620191460, brokerOutTime = 1386620214937, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@388de4ea, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 567}, redeliveryCounter = 1} 2013-12-09 21:16:55,943 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 574, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:570, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620191559, arrival = 0, brokerInTime = 1386620191560, brokerOutTime = 1386620214937, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6bafdba7, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 568}, redeliveryCounter = 1} 2013-12-09 21:16:55,945 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 575, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:571, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620191617, arrival = 0, brokerInTime = 1386620191619, brokerOutTime = 1386620214937, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@667de82c, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 569}, redeliveryCounter = 1} 2013-12-09 21:16:55,948 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 576, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:572, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620191674, arrival = 0, brokerInTime = 1386620191676, brokerOutTime = 1386620214937, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5415d545, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 570}, redeliveryCounter = 1} 2013-12-09 21:16:55,950 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 577, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:573, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620191742, arrival = 0, brokerInTime = 1386620191743, brokerOutTime = 1386620214937, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6564d023, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 571}, redeliveryCounter = 1} 2013-12-09 21:16:55,953 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 578, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:574, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620191800, arrival = 0, brokerInTime = 1386620191802, brokerOutTime = 1386620214937, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3d9cddd6, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 572}, redeliveryCounter = 1} 2013-12-09 21:16:55,956 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 579, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:575, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620191858, arrival = 0, brokerInTime = 1386620191859, brokerOutTime = 1386620214937, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5a82c34, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 573}, redeliveryCounter = 1} 2013-12-09 21:16:55,958 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 580, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:576, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620191916, arrival = 0, brokerInTime = 1386620191918, brokerOutTime = 1386620214938, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@63ee0cd2, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 574}, redeliveryCounter = 1} 2013-12-09 21:16:55,961 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 581, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:577, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620191974, arrival = 0, brokerInTime = 1386620191975, brokerOutTime = 1386620214938, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@218be23f, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 575}, redeliveryCounter = 1} 2013-12-09 21:16:55,964 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 582, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:578, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620192032, arrival = 0, brokerInTime = 1386620192034, brokerOutTime = 1386620214938, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@66b2a74d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 576}, redeliveryCounter = 1} 2013-12-09 21:16:55,966 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 583, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:579, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620192090, arrival = 0, brokerInTime = 1386620192091, brokerOutTime = 1386620214938, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5b05e4e7, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 577}, redeliveryCounter = 1} 2013-12-09 21:16:55,968 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 584, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:580, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620192156, arrival = 0, brokerInTime = 1386620192158, brokerOutTime = 1386620214938, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5ff72860, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 578}, redeliveryCounter = 1} 2013-12-09 21:16:55,970 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 585, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:581, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620192223, arrival = 0, brokerInTime = 1386620192224, brokerOutTime = 1386620214938, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5b7be7d8, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 579}, redeliveryCounter = 1} 2013-12-09 21:16:55,972 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 586, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:582, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620192280, arrival = 0, brokerInTime = 1386620192282, brokerOutTime = 1386620214939, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@23b244d4, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 580}, redeliveryCounter = 1} 2013-12-09 21:16:55,974 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 587, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:583, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620192388, arrival = 0, brokerInTime = 1386620192389, brokerOutTime = 1386620214939, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@cc4cc9b, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 581}, redeliveryCounter = 1} 2013-12-09 21:16:55,976 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 588, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:584, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620192450, arrival = 0, brokerInTime = 1386620192451, brokerOutTime = 1386620214939, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4c54daa9, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 582}, redeliveryCounter = 1} 2013-12-09 21:16:55,979 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 589, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:585, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620192505, arrival = 0, brokerInTime = 1386620192507, brokerOutTime = 1386620214939, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@56dfb465, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 583}, redeliveryCounter = 1} 2013-12-09 21:16:55,981 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 590, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:586, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620192563, arrival = 0, brokerInTime = 1386620192564, brokerOutTime = 1386620214939, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@78bc7f71, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 584}, redeliveryCounter = 1} 2013-12-09 21:16:55,984 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 591, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:587, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620192620, arrival = 0, brokerInTime = 1386620192622, brokerOutTime = 1386620214940, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1f5311a4, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 585}, redeliveryCounter = 1} 2013-12-09 21:16:55,987 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 592, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:588, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620192678, arrival = 0, brokerInTime = 1386620192680, brokerOutTime = 1386620214940, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6ab360d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 586}, redeliveryCounter = 1} 2013-12-09 21:16:55,991 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 593, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:589, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620192736, arrival = 0, brokerInTime = 1386620192737, brokerOutTime = 1386620214940, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@526992e6, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 587}, redeliveryCounter = 1} 2013-12-09 21:16:55,994 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 594, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:590, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620192794, arrival = 0, brokerInTime = 1386620192796, brokerOutTime = 1386620214940, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@112b644f, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 588}, redeliveryCounter = 1} 2013-12-09 21:16:55,996 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 595, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:591, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620192852, arrival = 0, brokerInTime = 1386620192854, brokerOutTime = 1386620214940, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@37c68757, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 589}, redeliveryCounter = 1} 2013-12-09 21:16:55,999 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 596, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:592, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620192910, arrival = 0, brokerInTime = 1386620192911, brokerOutTime = 1386620214940, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4adf7d5c, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 590}, redeliveryCounter = 1} 2013-12-09 21:16:56,001 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 597, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:593, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620192968, arrival = 0, brokerInTime = 1386620192969, brokerOutTime = 1386620214941, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@169f496b, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 591}, redeliveryCounter = 1} 2013-12-09 21:16:56,003 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 347} 2013-12-09 21:16:56,004 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 598, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:594, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620193026, arrival = 0, brokerInTime = 1386620193027, brokerOutTime = 1386620214941, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@338d1b67, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 592}, redeliveryCounter = 1} 2013-12-09 21:16:56,004 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 117, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:113, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620145717, arrival = 0, brokerInTime = 1386620145719, brokerOutTime = 1386620214871, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 111} 2013-12-09 21:16:56,008 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 111 2013-12-09 21:16:56,006 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 599, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:595, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620193084, arrival = 0, brokerInTime = 1386620193086, brokerOutTime = 1386620214941, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@750221a1, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 593}, redeliveryCounter = 1} 2013-12-09 21:16:56,008 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 348, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:115} 2013-12-09 21:16:56,011 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 600, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:596, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620193142, arrival = 0, brokerInTime = 1386620193143, brokerOutTime = 1386620214941, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5eee0d0a, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 594}, redeliveryCounter = 1} 2013-12-09 21:16:56,011 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:115 2013-12-09 21:16:56,014 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 601, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:597, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620193200, arrival = 0, brokerInTime = 1386620193202, brokerOutTime = 1386620214941, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5e9a3c36, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 595}, redeliveryCounter = 1} 2013-12-09 21:16:56,014 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:115 2013-12-09 21:16:56,016 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 602, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:598, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620193258, arrival = 0, brokerInTime = 1386620193260, brokerOutTime = 1386620214941, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5fe72dbf, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 596}, redeliveryCounter = 1} 2013-12-09 21:16:56,017 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 349, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:114, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:114, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:115, messageCount = 1, poisonCause = null} 2013-12-09 21:16:56,020 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 603, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:599, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620193316, arrival = 0, brokerInTime = 1386620193318, brokerOutTime = 1386620214941, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@426c87c9, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 597}, redeliveryCounter = 1} 2013-12-09 21:16:56,022 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:115 syncCount: 1 2013-12-09 21:16:56,024 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 604, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:600, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620193374, arrival = 0, brokerInTime = 1386620193376, brokerOutTime = 1386620214941, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6346bf30, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 598}, redeliveryCounter = 1} 2013-12-09 21:16:56,024 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 350, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:115} 2013-12-09 21:16:56,027 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 605, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:601, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620193432, arrival = 0, brokerInTime = 1386620193434, brokerOutTime = 1386620214941, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@39b21b3b, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 599}, redeliveryCounter = 1} 2013-12-09 21:16:56,027 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:115 syncCount: 2 2013-12-09 21:16:56,030 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: MessageDispatch {commandId = 0, responseRequired = false, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, destination = queue://test_queue_z0, message = ActiveMQTextMessage {commandId = 606, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:602, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620193490, arrival = 0, brokerInTime = 1386620193492, brokerOutTime = 1386620214941, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5c19dc14, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, jmsXGroupFirstForConsumer = false, text = 600}, redeliveryCounter = 1} 2013-12-09 21:16:56,454 [ Scheduled Task] DEBUG LeaseDatabaseLocker - coreActiveMQBroker1, lease keepAlive Query is UPDATE ACTIVEMQ_LOCK SET BROKER_NAME=?, TIME=? WHERE BROKER_NAME=? AND ID = 1 2013-12-09 21:16:56,481 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 350} 2013-12-09 21:16:56,481 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 118, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:114, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620145775, arrival = 0, brokerInTime = 1386620145776, brokerOutTime = 1386620214872, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 112} 2013-12-09 21:16:56,484 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 112 2013-12-09 21:16:56,484 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 351, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:116} 2013-12-09 21:16:56,485 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:116 2013-12-09 21:16:56,485 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:116 2013-12-09 21:16:56,486 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 352, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:115, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:115, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:116, messageCount = 1, poisonCause = null} 2013-12-09 21:16:56,487 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:116 syncCount: 1 2013-12-09 21:16:56,487 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 353, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:116} 2013-12-09 21:16:56,487 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:116 syncCount: 2 2013-12-09 21:16:56,580 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 353} 2013-12-09 21:16:56,581 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 119, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:115, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620145833, arrival = 0, brokerInTime = 1386620145834, brokerOutTime = 1386620214872, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 113} 2013-12-09 21:16:56,582 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 113 2013-12-09 21:16:56,582 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 354, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:117} 2013-12-09 21:16:56,583 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:117 2013-12-09 21:16:56,583 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:117 2013-12-09 21:16:56,584 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 355, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:116, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:116, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:117, messageCount = 1, poisonCause = null} 2013-12-09 21:16:56,585 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:117 syncCount: 1 2013-12-09 21:16:56,585 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 356, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:117} 2013-12-09 21:16:56,586 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:117 syncCount: 2 2013-12-09 21:16:56,646 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 356} 2013-12-09 21:16:56,647 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 120, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:116, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620145891, arrival = 0, brokerInTime = 1386620145892, brokerOutTime = 1386620214872, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 114} 2013-12-09 21:16:56,648 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 114 2013-12-09 21:16:56,648 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 357, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:118} 2013-12-09 21:16:56,649 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:118 2013-12-09 21:16:56,649 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:118 2013-12-09 21:16:56,649 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 358, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:117, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:117, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:118, messageCount = 1, poisonCause = null} 2013-12-09 21:16:56,650 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:118 syncCount: 1 2013-12-09 21:16:56,650 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 359, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:118} 2013-12-09 21:16:56,651 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:118 syncCount: 2 2013-12-09 21:16:56,705 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 359} 2013-12-09 21:16:56,705 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 121, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:117, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620145949, arrival = 0, brokerInTime = 1386620145950, brokerOutTime = 1386620214872, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 115} 2013-12-09 21:16:56,706 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 115 2013-12-09 21:16:56,706 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 360, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:119} 2013-12-09 21:16:56,707 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:119 2013-12-09 21:16:56,707 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:119 2013-12-09 21:16:56,707 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 361, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:118, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:118, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:119, messageCount = 1, poisonCause = null} 2013-12-09 21:16:56,708 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:119 syncCount: 1 2013-12-09 21:16:56,708 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 362, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:119} 2013-12-09 21:16:56,709 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:119 syncCount: 2 2013-12-09 21:16:56,762 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 362} 2013-12-09 21:16:56,763 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 122, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:118, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146007, arrival = 0, brokerInTime = 1386620146008, brokerOutTime = 1386620214873, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 116} 2013-12-09 21:16:56,764 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 116 2013-12-09 21:16:56,765 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 363, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:120} 2013-12-09 21:16:56,765 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:120 2013-12-09 21:16:56,765 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:120 2013-12-09 21:16:56,766 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 364, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:119, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:119, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:120, messageCount = 1, poisonCause = null} 2013-12-09 21:16:56,767 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:120 syncCount: 1 2013-12-09 21:16:56,767 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 365, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:120} 2013-12-09 21:16:56,767 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:120 syncCount: 2 2013-12-09 21:16:56,820 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 365} 2013-12-09 21:16:56,821 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 123, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:119, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146065, arrival = 0, brokerInTime = 1386620146067, brokerOutTime = 1386620214873, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 117} 2013-12-09 21:16:56,823 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 117 2013-12-09 21:16:56,823 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 366, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:121} 2013-12-09 21:16:56,823 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:121 2013-12-09 21:16:56,823 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:121 2013-12-09 21:16:56,824 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 367, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:120, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:120, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:121, messageCount = 1, poisonCause = null} 2013-12-09 21:16:56,824 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:121 syncCount: 1 2013-12-09 21:16:56,825 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 368, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:121} 2013-12-09 21:16:56,825 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:121 syncCount: 2 2013-12-09 21:16:56,878 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 368} 2013-12-09 21:16:56,879 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 124, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:120, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146123, arrival = 0, brokerInTime = 1386620146124, brokerOutTime = 1386620214873, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 118} 2013-12-09 21:16:56,880 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 118 2013-12-09 21:16:56,880 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 369, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:122} 2013-12-09 21:16:56,881 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:122 2013-12-09 21:16:56,881 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:122 2013-12-09 21:16:56,881 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 370, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:121, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:121, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:122, messageCount = 1, poisonCause = null} 2013-12-09 21:16:56,882 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:122 syncCount: 1 2013-12-09 21:16:56,883 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 371, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:122} 2013-12-09 21:16:56,883 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:122 syncCount: 2 2013-12-09 21:16:56,936 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 371} 2013-12-09 21:16:56,937 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 125, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:121, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146181, arrival = 0, brokerInTime = 1386620146183, brokerOutTime = 1386620214874, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 119} 2013-12-09 21:16:56,938 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 119 2013-12-09 21:16:56,938 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 372, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:123} 2013-12-09 21:16:56,939 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:123 2013-12-09 21:16:56,939 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:123 2013-12-09 21:16:56,939 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 373, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:122, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:122, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:123, messageCount = 1, poisonCause = null} 2013-12-09 21:16:56,940 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:123 syncCount: 1 2013-12-09 21:16:56,940 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 374, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:123} 2013-12-09 21:16:56,941 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:123 syncCount: 2 2013-12-09 21:16:56,994 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 374} 2013-12-09 21:16:56,995 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 126, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:122, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146239, arrival = 0, brokerInTime = 1386620146240, brokerOutTime = 1386620214874, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 120} 2013-12-09 21:16:56,996 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 120 2013-12-09 21:16:56,996 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 375, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:124} 2013-12-09 21:16:56,997 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:124 2013-12-09 21:16:56,997 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:124 2013-12-09 21:16:56,997 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 376, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:123, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:123, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:124, messageCount = 1, poisonCause = null} 2013-12-09 21:16:56,998 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:124 syncCount: 1 2013-12-09 21:16:56,998 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 377, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:124} 2013-12-09 21:16:56,999 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:124 syncCount: 2 2013-12-09 21:16:57,052 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 377} 2013-12-09 21:16:57,053 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 127, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:123, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146297, arrival = 0, brokerInTime = 1386620146298, brokerOutTime = 1386620214874, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 121} 2013-12-09 21:16:57,054 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 121 2013-12-09 21:16:57,054 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 378, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:125} 2013-12-09 21:16:57,055 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:125 2013-12-09 21:16:57,055 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:125 2013-12-09 21:16:57,055 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 379, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:124, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:124, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:125, messageCount = 1, poisonCause = null} 2013-12-09 21:16:57,056 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:125 syncCount: 1 2013-12-09 21:16:57,056 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 380, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:125} 2013-12-09 21:16:57,057 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:125 syncCount: 2 2013-12-09 21:16:57,110 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 380} 2013-12-09 21:16:57,111 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 128, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:124, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146355, arrival = 0, brokerInTime = 1386620146356, brokerOutTime = 1386620214875, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 122} 2013-12-09 21:16:57,112 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 122 2013-12-09 21:16:57,112 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 381, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:126} 2013-12-09 21:16:57,113 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:126 2013-12-09 21:16:57,113 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:126 2013-12-09 21:16:57,113 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 382, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:125, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:125, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:126, messageCount = 1, poisonCause = null} 2013-12-09 21:16:57,114 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:126 syncCount: 1 2013-12-09 21:16:57,114 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 383, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:126} 2013-12-09 21:16:57,115 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:126 syncCount: 2 2013-12-09 21:16:57,178 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 383} 2013-12-09 21:16:57,179 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 129, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:125, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146413, arrival = 0, brokerInTime = 1386620146414, brokerOutTime = 1386620214875, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 123} 2013-12-09 21:16:57,181 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 123 2013-12-09 21:16:57,181 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 384, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:127} 2013-12-09 21:16:57,182 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:127 2013-12-09 21:16:57,182 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:127 2013-12-09 21:16:57,183 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 385, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:126, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:126, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:127, messageCount = 1, poisonCause = null} 2013-12-09 21:16:57,184 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:127 syncCount: 1 2013-12-09 21:16:57,185 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 386, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:127} 2013-12-09 21:16:57,186 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:127 syncCount: 2 2013-12-09 21:16:57,236 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 386} 2013-12-09 21:16:57,237 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 130, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:126, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146479, arrival = 0, brokerInTime = 1386620146481, brokerOutTime = 1386620214875, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 124} 2013-12-09 21:16:57,238 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 124 2013-12-09 21:16:57,238 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 387, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:128} 2013-12-09 21:16:57,239 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:128 2013-12-09 21:16:57,239 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:128 2013-12-09 21:16:57,240 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 388, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:127, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:127, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:128, messageCount = 1, poisonCause = null} 2013-12-09 21:16:57,241 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:128 syncCount: 1 2013-12-09 21:16:57,241 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 389, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:128} 2013-12-09 21:16:57,242 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:128 syncCount: 2 2013-12-09 21:16:57,303 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 389} 2013-12-09 21:16:57,303 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 131, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:127, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146587, arrival = 0, brokerInTime = 1386620146588, brokerOutTime = 1386620214875, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 125} 2013-12-09 21:16:57,305 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 125 2013-12-09 21:16:57,306 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 390, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:129} 2013-12-09 21:16:57,306 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:129 2013-12-09 21:16:57,306 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:129 2013-12-09 21:16:57,306 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 391, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:128, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:128, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:129, messageCount = 1, poisonCause = null} 2013-12-09 21:16:57,307 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:129 syncCount: 1 2013-12-09 21:16:57,308 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 392, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:129} 2013-12-09 21:16:57,308 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:129 syncCount: 2 2013-12-09 21:16:57,360 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 392} 2013-12-09 21:16:57,361 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 132, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:128, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146653, arrival = 0, brokerInTime = 1386620146654, brokerOutTime = 1386620214875, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 126} 2013-12-09 21:16:57,363 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 126 2013-12-09 21:16:57,364 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 393, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:130} 2013-12-09 21:16:57,365 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:130 2013-12-09 21:16:57,365 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:130 2013-12-09 21:16:57,365 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 394, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:129, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:129, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:130, messageCount = 1, poisonCause = null} 2013-12-09 21:16:57,367 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:130 syncCount: 1 2013-12-09 21:16:57,367 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 395, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:130} 2013-12-09 21:16:57,368 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:130 syncCount: 2 2013-12-09 21:16:57,418 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 395} 2013-12-09 21:16:57,419 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 133, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:129, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146761, arrival = 0, brokerInTime = 1386620146762, brokerOutTime = 1386620214875, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 127} 2013-12-09 21:16:57,420 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 127 2013-12-09 21:16:57,421 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 396, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:131} 2013-12-09 21:16:57,421 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:131 2013-12-09 21:16:57,421 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:131 2013-12-09 21:16:57,422 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 397, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:130, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:130, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:131, messageCount = 1, poisonCause = null} 2013-12-09 21:16:57,423 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:131 syncCount: 1 2013-12-09 21:16:57,423 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 398, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:131} 2013-12-09 21:16:57,424 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:131 syncCount: 2 2013-12-09 21:16:57,477 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 398} 2013-12-09 21:16:57,477 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 134, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:130, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146868, arrival = 0, brokerInTime = 1386620146870, brokerOutTime = 1386620214875, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 128} 2013-12-09 21:16:57,479 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 128 2013-12-09 21:16:57,479 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 399, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:132} 2013-12-09 21:16:57,480 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:132 2013-12-09 21:16:57,480 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:132 2013-12-09 21:16:57,481 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 400, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:131, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:131, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:132, messageCount = 1, poisonCause = null} 2013-12-09 21:16:57,482 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:132 syncCount: 1 2013-12-09 21:16:57,482 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 401, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:132} 2013-12-09 21:16:57,483 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:132 syncCount: 2 2013-12-09 21:16:57,543 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 401} 2013-12-09 21:16:57,543 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 135, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:131, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146926, arrival = 0, brokerInTime = 1386620146928, brokerOutTime = 1386620214875, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 129} 2013-12-09 21:16:57,545 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 129 2013-12-09 21:16:57,545 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 402, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:133} 2013-12-09 21:16:57,545 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:133 2013-12-09 21:16:57,546 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:133 2013-12-09 21:16:57,546 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 403, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:132, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:132, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:133, messageCount = 1, poisonCause = null} 2013-12-09 21:16:57,547 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:133 syncCount: 1 2013-12-09 21:16:57,547 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 404, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:133} 2013-12-09 21:16:57,548 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:133 syncCount: 2 2013-12-09 21:16:57,609 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 404} 2013-12-09 21:16:57,609 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 136, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:132, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620146985, arrival = 0, brokerInTime = 1386620146986, brokerOutTime = 1386620214876, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 130} 2013-12-09 21:16:57,611 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 130 2013-12-09 21:16:57,611 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 405, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:134} 2013-12-09 21:16:57,612 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:134 2013-12-09 21:16:57,612 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:134 2013-12-09 21:16:57,613 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 406, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:133, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:133, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:134, messageCount = 1, poisonCause = null} 2013-12-09 21:16:57,613 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:134 syncCount: 1 2013-12-09 21:16:57,614 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 407, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:134} 2013-12-09 21:16:57,615 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:134 syncCount: 2 2013-12-09 21:16:57,667 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 407} 2013-12-09 21:16:57,668 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 137, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:133, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147042, arrival = 0, brokerInTime = 1386620147043, brokerOutTime = 1386620214876, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 131} 2013-12-09 21:16:57,669 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 131 2013-12-09 21:16:57,669 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 408, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:135} 2013-12-09 21:16:57,670 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:135 2013-12-09 21:16:57,670 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:135 2013-12-09 21:16:57,670 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 409, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:134, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:134, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:135, messageCount = 1, poisonCause = null} 2013-12-09 21:16:57,671 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:135 syncCount: 1 2013-12-09 21:16:57,671 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 410, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:135} 2013-12-09 21:16:57,672 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:135 syncCount: 2 2013-12-09 21:16:57,733 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 410} 2013-12-09 21:16:57,734 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 138, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:134, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147101, arrival = 0, brokerInTime = 1386620147102, brokerOutTime = 1386620214876, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 132} 2013-12-09 21:16:57,735 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 132 2013-12-09 21:16:57,735 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 411, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:136} 2013-12-09 21:16:57,736 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:136 2013-12-09 21:16:57,736 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:136 2013-12-09 21:16:57,736 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 412, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:135, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:135, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:136, messageCount = 1, poisonCause = null} 2013-12-09 21:16:57,737 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:136 syncCount: 1 2013-12-09 21:16:57,738 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 413, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:136} 2013-12-09 21:16:57,738 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:136 syncCount: 2 2013-12-09 21:16:57,799 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 413} 2013-12-09 21:16:57,800 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 139, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:135, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147158, arrival = 0, brokerInTime = 1386620147159, brokerOutTime = 1386620214876, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 133} 2013-12-09 21:16:57,801 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 133 2013-12-09 21:16:57,802 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 414, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:137} 2013-12-09 21:16:57,802 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:137 2013-12-09 21:16:57,802 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:137 2013-12-09 21:16:57,803 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 415, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:136, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:136, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:137, messageCount = 1, poisonCause = null} 2013-12-09 21:16:57,804 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:137 syncCount: 1 2013-12-09 21:16:57,804 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 416, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:137} 2013-12-09 21:16:57,805 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:137 syncCount: 2 2013-12-09 21:16:57,866 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 416} 2013-12-09 21:16:57,866 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 140, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:136, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147216, arrival = 0, brokerInTime = 1386620147217, brokerOutTime = 1386620214876, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 134} 2013-12-09 21:16:57,868 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 134 2013-12-09 21:16:57,868 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 417, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:138} 2013-12-09 21:16:57,869 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:138 2013-12-09 21:16:57,869 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:138 2013-12-09 21:16:57,869 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 418, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:137, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:137, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:138, messageCount = 1, poisonCause = null} 2013-12-09 21:16:57,870 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:138 syncCount: 1 2013-12-09 21:16:57,870 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 419, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:138} 2013-12-09 21:16:57,871 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:138 syncCount: 2 2013-12-09 21:16:57,923 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 419} 2013-12-09 21:16:57,924 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 141, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:137, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147274, arrival = 0, brokerInTime = 1386620147275, brokerOutTime = 1386620214877, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 135} 2013-12-09 21:16:57,925 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 135 2013-12-09 21:16:57,926 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 420, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:139} 2013-12-09 21:16:57,926 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:139 2013-12-09 21:16:57,926 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:139 2013-12-09 21:16:57,927 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 421, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:138, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:138, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:139, messageCount = 1, poisonCause = null} 2013-12-09 21:16:57,927 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:139 syncCount: 1 2013-12-09 21:16:57,928 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 422, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:139} 2013-12-09 21:16:57,928 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:139 syncCount: 2 2013-12-09 21:16:57,981 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 422} 2013-12-09 21:16:57,982 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 142, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:138, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147332, arrival = 0, brokerInTime = 1386620147333, brokerOutTime = 1386620214877, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 136} 2013-12-09 21:16:57,983 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 136 2013-12-09 21:16:57,984 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 423, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:140} 2013-12-09 21:16:57,984 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:140 2013-12-09 21:16:57,985 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:140 2013-12-09 21:16:57,985 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 424, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:139, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:139, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:140, messageCount = 1, poisonCause = null} 2013-12-09 21:16:57,986 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:140 syncCount: 1 2013-12-09 21:16:57,986 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 425, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:140} 2013-12-09 21:16:57,987 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:140 syncCount: 2 2013-12-09 21:16:58,039 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 425} 2013-12-09 21:16:58,040 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 143, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:139, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147400, arrival = 0, brokerInTime = 1386620147401, brokerOutTime = 1386620214877, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 137} 2013-12-09 21:16:58,041 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 137 2013-12-09 21:16:58,041 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 426, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:141} 2013-12-09 21:16:58,042 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:141 2013-12-09 21:16:58,042 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:141 2013-12-09 21:16:58,042 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 427, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:140, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:140, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:141, messageCount = 1, poisonCause = null} 2013-12-09 21:16:58,043 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:141 syncCount: 1 2013-12-09 21:16:58,043 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 428, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:141} 2013-12-09 21:16:58,044 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:141 syncCount: 2 2013-12-09 21:16:58,098 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 428} 2013-12-09 21:16:58,098 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 144, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:140, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147458, arrival = 0, brokerInTime = 1386620147459, brokerOutTime = 1386620214877, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 138} 2013-12-09 21:16:58,100 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 138 2013-12-09 21:16:58,100 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 429, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:142} 2013-12-09 21:16:58,100 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:142 2013-12-09 21:16:58,101 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:142 2013-12-09 21:16:58,101 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 430, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:141, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:141, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:142, messageCount = 1, poisonCause = null} 2013-12-09 21:16:58,102 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:142 syncCount: 1 2013-12-09 21:16:58,102 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 431, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:142} 2013-12-09 21:16:58,103 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:142 syncCount: 2 2013-12-09 21:16:58,156 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 431} 2013-12-09 21:16:58,156 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 145, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:141, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147516, arrival = 0, brokerInTime = 1386620147517, brokerOutTime = 1386620214877, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 139} 2013-12-09 21:16:58,158 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 139 2013-12-09 21:16:58,159 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 432, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:143} 2013-12-09 21:16:58,159 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:143 2013-12-09 21:16:58,159 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:143 2013-12-09 21:16:58,160 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 433, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:142, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:142, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:143, messageCount = 1, poisonCause = null} 2013-12-09 21:16:58,160 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:143 syncCount: 1 2013-12-09 21:16:58,161 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 434, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:143} 2013-12-09 21:16:58,161 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:143 syncCount: 2 2013-12-09 21:16:58,214 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 434} 2013-12-09 21:16:58,214 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 146, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:142, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147574, arrival = 0, brokerInTime = 1386620147575, brokerOutTime = 1386620214877, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 140} 2013-12-09 21:16:58,215 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 140 2013-12-09 21:16:58,216 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 435, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:144} 2013-12-09 21:16:58,217 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:144 2013-12-09 21:16:58,217 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:144 2013-12-09 21:16:58,218 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 436, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:143, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:143, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:144, messageCount = 1, poisonCause = null} 2013-12-09 21:16:58,219 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:144 syncCount: 1 2013-12-09 21:16:58,220 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 437, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:144} 2013-12-09 21:16:58,220 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:144 syncCount: 2 2013-12-09 21:16:58,271 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 437} 2013-12-09 21:16:58,272 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 147, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:143, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147632, arrival = 0, brokerInTime = 1386620147633, brokerOutTime = 1386620214877, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 141} 2013-12-09 21:16:58,273 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 141 2013-12-09 21:16:58,274 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 438, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:145} 2013-12-09 21:16:58,274 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:145 2013-12-09 21:16:58,274 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:145 2013-12-09 21:16:58,275 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 439, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:144, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:144, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:145, messageCount = 1, poisonCause = null} 2013-12-09 21:16:58,276 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:145 syncCount: 1 2013-12-09 21:16:58,276 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 440, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:145} 2013-12-09 21:16:58,277 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:145 syncCount: 2 2013-12-09 21:16:58,330 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 440} 2013-12-09 21:16:58,330 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 148, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:144, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147690, arrival = 0, brokerInTime = 1386620147691, brokerOutTime = 1386620214878, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 142} 2013-12-09 21:16:58,332 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 142 2013-12-09 21:16:58,332 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 441, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:146} 2013-12-09 21:16:58,333 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:146 2013-12-09 21:16:58,333 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:146 2013-12-09 21:16:58,333 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 442, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:145, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:145, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:146, messageCount = 1, poisonCause = null} 2013-12-09 21:16:58,334 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:146 syncCount: 1 2013-12-09 21:16:58,334 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 443, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:146} 2013-12-09 21:16:58,335 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:146 syncCount: 2 2013-12-09 21:16:58,387 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 443} 2013-12-09 21:16:58,388 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 149, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:145, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147747, arrival = 0, brokerInTime = 1386620147749, brokerOutTime = 1386620214878, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 143} 2013-12-09 21:16:58,389 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 143 2013-12-09 21:16:58,389 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 444, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:147} 2013-12-09 21:16:58,390 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:147 2013-12-09 21:16:58,390 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:147 2013-12-09 21:16:58,390 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 445, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:146, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:146, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:147, messageCount = 1, poisonCause = null} 2013-12-09 21:16:58,391 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:147 syncCount: 1 2013-12-09 21:16:58,391 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 446, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:147} 2013-12-09 21:16:58,392 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:147 syncCount: 2 2013-12-09 21:16:58,445 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 446} 2013-12-09 21:16:58,446 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 150, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:146, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147805, arrival = 0, brokerInTime = 1386620147807, brokerOutTime = 1386620214878, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 144} 2013-12-09 21:16:58,448 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 144 2013-12-09 21:16:58,448 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 447, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:148} 2013-12-09 21:16:58,449 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:148 2013-12-09 21:16:58,449 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:148 2013-12-09 21:16:58,450 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 448, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:147, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:147, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:148, messageCount = 1, poisonCause = null} 2013-12-09 21:16:58,451 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:148 syncCount: 1 2013-12-09 21:16:58,451 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 449, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:148} 2013-12-09 21:16:58,452 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:148 syncCount: 2 2013-12-09 21:16:58,503 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 449} 2013-12-09 21:16:58,504 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 151, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:147, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147863, arrival = 0, brokerInTime = 1386620147865, brokerOutTime = 1386620214878, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 145} 2013-12-09 21:16:58,505 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 145 2013-12-09 21:16:58,506 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 450, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:149} 2013-12-09 21:16:58,506 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:149 2013-12-09 21:16:58,506 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:149 2013-12-09 21:16:58,507 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 451, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:148, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:148, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:149, messageCount = 1, poisonCause = null} 2013-12-09 21:16:58,507 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:149 syncCount: 1 2013-12-09 21:16:58,508 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 452, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:149} 2013-12-09 21:16:58,508 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:149 syncCount: 2 2013-12-09 21:16:58,561 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 452} 2013-12-09 21:16:58,562 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 152, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:148, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147921, arrival = 0, brokerInTime = 1386620147923, brokerOutTime = 1386620214878, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 146} 2013-12-09 21:16:58,564 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 146 2013-12-09 21:16:58,564 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 453, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:150} 2013-12-09 21:16:58,565 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:150 2013-12-09 21:16:58,565 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:150 2013-12-09 21:16:58,566 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 454, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:149, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:149, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:150, messageCount = 1, poisonCause = null} 2013-12-09 21:16:58,567 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:150 syncCount: 1 2013-12-09 21:16:58,568 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 455, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:150} 2013-12-09 21:16:58,569 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:150 syncCount: 2 2013-12-09 21:16:58,619 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 455} 2013-12-09 21:16:58,620 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 153, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:149, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620147980, arrival = 0, brokerInTime = 1386620147981, brokerOutTime = 1386620214878, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 147} 2013-12-09 21:16:58,623 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 147 2013-12-09 21:16:58,623 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 456, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:151} 2013-12-09 21:16:58,624 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:151 2013-12-09 21:16:58,624 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:151 2013-12-09 21:16:58,625 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 457, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:150, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:150, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:151, messageCount = 1, poisonCause = null} 2013-12-09 21:16:58,626 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:151 syncCount: 1 2013-12-09 21:16:58,626 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 458, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:151} 2013-12-09 21:16:58,627 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:151 syncCount: 2 2013-12-09 21:16:58,677 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 458} 2013-12-09 21:16:58,678 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 154, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:150, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148038, arrival = 0, brokerInTime = 1386620148039, brokerOutTime = 1386620214878, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 148} 2013-12-09 21:16:58,679 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 148 2013-12-09 21:16:58,679 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 459, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:152} 2013-12-09 21:16:58,680 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:152 2013-12-09 21:16:58,680 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:152 2013-12-09 21:16:58,680 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 460, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:151, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:151, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:152, messageCount = 1, poisonCause = null} 2013-12-09 21:16:58,681 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:152 syncCount: 1 2013-12-09 21:16:58,681 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 461, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:152} 2013-12-09 21:16:58,682 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:152 syncCount: 2 2013-12-09 21:16:58,735 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 461} 2013-12-09 21:16:58,736 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 155, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:151, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148096, arrival = 0, brokerInTime = 1386620148097, brokerOutTime = 1386620214879, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 149} 2013-12-09 21:16:58,737 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 149 2013-12-09 21:16:58,737 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 462, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:153} 2013-12-09 21:16:58,738 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:153 2013-12-09 21:16:58,738 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:153 2013-12-09 21:16:58,738 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 463, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:152, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:152, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:153, messageCount = 1, poisonCause = null} 2013-12-09 21:16:58,739 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:153 syncCount: 1 2013-12-09 21:16:58,739 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 464, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:153} 2013-12-09 21:16:58,739 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:153 syncCount: 2 2013-12-09 21:16:58,793 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 464} 2013-12-09 21:16:58,794 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 156, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:152, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148153, arrival = 0, brokerInTime = 1386620148155, brokerOutTime = 1386620214879, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 150} 2013-12-09 21:16:58,795 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 150 2013-12-09 21:16:58,795 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 465, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:154} 2013-12-09 21:16:58,795 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:154 2013-12-09 21:16:58,796 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:154 2013-12-09 21:16:58,796 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 466, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:153, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:153, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:154, messageCount = 1, poisonCause = null} 2013-12-09 21:16:58,797 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:154 syncCount: 1 2013-12-09 21:16:58,797 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 467, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:154} 2013-12-09 21:16:58,798 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:154 syncCount: 2 2013-12-09 21:16:58,851 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 467} 2013-12-09 21:16:58,852 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 157, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:153, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148211, arrival = 0, brokerInTime = 1386620148213, brokerOutTime = 1386620214879, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 151} 2013-12-09 21:16:58,853 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 151 2013-12-09 21:16:58,853 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 468, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:155} 2013-12-09 21:16:58,854 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:155 2013-12-09 21:16:58,854 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:155 2013-12-09 21:16:58,854 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 469, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:154, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:154, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:155, messageCount = 1, poisonCause = null} 2013-12-09 21:16:58,855 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:155 syncCount: 1 2013-12-09 21:16:58,856 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 470, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:155} 2013-12-09 21:16:58,856 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:155 syncCount: 2 2013-12-09 21:16:58,909 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 470} 2013-12-09 21:16:58,910 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 158, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:154, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148270, arrival = 0, brokerInTime = 1386620148272, brokerOutTime = 1386620214879, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 152} 2013-12-09 21:16:58,911 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 152 2013-12-09 21:16:58,911 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 471, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:156} 2013-12-09 21:16:58,912 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:156 2013-12-09 21:16:58,912 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:156 2013-12-09 21:16:58,912 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 472, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:155, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:155, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:156, messageCount = 1, poisonCause = null} 2013-12-09 21:16:58,913 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:156 syncCount: 1 2013-12-09 21:16:58,913 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 473, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:156} 2013-12-09 21:16:58,914 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:156 syncCount: 2 2013-12-09 21:16:58,967 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 473} 2013-12-09 21:16:58,968 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 159, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:155, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148336, arrival = 0, brokerInTime = 1386620148339, brokerOutTime = 1386620214879, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 153} 2013-12-09 21:16:58,969 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 153 2013-12-09 21:16:58,969 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 474, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:157} 2013-12-09 21:16:58,970 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:157 2013-12-09 21:16:58,970 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:157 2013-12-09 21:16:58,970 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 475, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:156, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:156, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:157, messageCount = 1, poisonCause = null} 2013-12-09 21:16:58,971 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:157 syncCount: 1 2013-12-09 21:16:58,971 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 476, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:157} 2013-12-09 21:16:58,972 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:157 syncCount: 2 2013-12-09 21:16:59,025 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 476} 2013-12-09 21:16:59,026 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 160, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:156, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148394, arrival = 0, brokerInTime = 1386620148395, brokerOutTime = 1386620214879, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 154} 2013-12-09 21:16:59,027 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 154 2013-12-09 21:16:59,027 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 477, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:158} 2013-12-09 21:16:59,028 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:158 2013-12-09 21:16:59,028 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:158 2013-12-09 21:16:59,028 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 478, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:157, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:157, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:158, messageCount = 1, poisonCause = null} 2013-12-09 21:16:59,029 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:158 syncCount: 1 2013-12-09 21:16:59,029 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 479, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:158} 2013-12-09 21:16:59,030 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:158 syncCount: 2 2013-12-09 21:16:59,083 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 479} 2013-12-09 21:16:59,084 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 161, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:157, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148452, arrival = 0, brokerInTime = 1386620148453, brokerOutTime = 1386620214879, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 155} 2013-12-09 21:16:59,085 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 155 2013-12-09 21:16:59,085 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 480, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:159} 2013-12-09 21:16:59,086 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:159 2013-12-09 21:16:59,086 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:159 2013-12-09 21:16:59,086 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 481, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:158, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:158, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:159, messageCount = 1, poisonCause = null} 2013-12-09 21:16:59,087 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:159 syncCount: 1 2013-12-09 21:16:59,087 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 482, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:159} 2013-12-09 21:16:59,088 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:159 syncCount: 2 2013-12-09 21:16:59,141 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 482} 2013-12-09 21:16:59,142 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 162, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:158, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148518, arrival = 0, brokerInTime = 1386620148520, brokerOutTime = 1386620214880, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 156} 2013-12-09 21:16:59,143 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 156 2013-12-09 21:16:59,143 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 483, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:160} 2013-12-09 21:16:59,144 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:160 2013-12-09 21:16:59,144 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:160 2013-12-09 21:16:59,144 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 484, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:159, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:159, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:160, messageCount = 1, poisonCause = null} 2013-12-09 21:16:59,145 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:160 syncCount: 1 2013-12-09 21:16:59,145 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 485, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:160} 2013-12-09 21:16:59,146 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:160 syncCount: 2 2013-12-09 21:16:59,209 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 485} 2013-12-09 21:16:59,209 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 163, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:159, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148576, arrival = 0, brokerInTime = 1386620148577, brokerOutTime = 1386620214880, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 157} 2013-12-09 21:16:59,211 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 157 2013-12-09 21:16:59,211 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 486, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:161} 2013-12-09 21:16:59,211 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:161 2013-12-09 21:16:59,212 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:161 2013-12-09 21:16:59,212 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 487, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:160, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:160, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:161, messageCount = 1, poisonCause = null} 2013-12-09 21:16:59,213 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:161 syncCount: 1 2013-12-09 21:16:59,213 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 488, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:161} 2013-12-09 21:16:59,213 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:161 syncCount: 2 2013-12-09 21:16:59,275 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 488} 2013-12-09 21:16:59,276 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 164, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:160, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148634, arrival = 0, brokerInTime = 1386620148635, brokerOutTime = 1386620214880, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 158} 2013-12-09 21:16:59,277 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 158 2013-12-09 21:16:59,277 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 489, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:162} 2013-12-09 21:16:59,278 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:162 2013-12-09 21:16:59,278 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:162 2013-12-09 21:16:59,278 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 490, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:161, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:161, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:162, messageCount = 1, poisonCause = null} 2013-12-09 21:16:59,279 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:162 syncCount: 1 2013-12-09 21:16:59,279 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 491, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:162} 2013-12-09 21:16:59,280 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:162 syncCount: 2 2013-12-09 21:16:59,341 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 491} 2013-12-09 21:16:59,342 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 165, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:161, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148692, arrival = 0, brokerInTime = 1386620148693, brokerOutTime = 1386620214880, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 159} 2013-12-09 21:16:59,343 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 159 2013-12-09 21:16:59,343 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 492, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:163} 2013-12-09 21:16:59,344 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:163 2013-12-09 21:16:59,344 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:163 2013-12-09 21:16:59,344 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 493, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:162, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:162, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:163, messageCount = 1, poisonCause = null} 2013-12-09 21:16:59,345 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:163 syncCount: 1 2013-12-09 21:16:59,346 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 494, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:163} 2013-12-09 21:16:59,346 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:163 syncCount: 2 2013-12-09 21:16:59,408 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 494} 2013-12-09 21:16:59,408 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 166, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:162, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148750, arrival = 0, brokerInTime = 1386620148752, brokerOutTime = 1386620214880, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 160} 2013-12-09 21:16:59,410 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 160 2013-12-09 21:16:59,410 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 495, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:164} 2013-12-09 21:16:59,410 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:164 2013-12-09 21:16:59,410 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:164 2013-12-09 21:16:59,411 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 496, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:163, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:163, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:164, messageCount = 1, poisonCause = null} 2013-12-09 21:16:59,412 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:164 syncCount: 1 2013-12-09 21:16:59,412 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 497, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:164} 2013-12-09 21:16:59,412 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:164 syncCount: 2 2013-12-09 21:16:59,466 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 497} 2013-12-09 21:16:59,466 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 167, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:163, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148808, arrival = 0, brokerInTime = 1386620148809, brokerOutTime = 1386620214880, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 161} 2013-12-09 21:16:59,468 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 161 2013-12-09 21:16:59,469 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 498, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:165} 2013-12-09 21:16:59,469 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:165 2013-12-09 21:16:59,470 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:165 2013-12-09 21:16:59,470 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 499, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:164, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:164, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:165, messageCount = 1, poisonCause = null} 2013-12-09 21:16:59,472 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:165 syncCount: 1 2013-12-09 21:16:59,472 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 500, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:165} 2013-12-09 21:16:59,472 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:165 syncCount: 2 2013-12-09 21:16:59,524 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 500} 2013-12-09 21:16:59,524 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 168, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:164, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148866, arrival = 0, brokerInTime = 1386620148867, brokerOutTime = 1386620214880, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 162} 2013-12-09 21:16:59,526 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 162 2013-12-09 21:16:59,526 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 501, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:166} 2013-12-09 21:16:59,526 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:166 2013-12-09 21:16:59,526 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:166 2013-12-09 21:16:59,527 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 502, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:165, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:165, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:166, messageCount = 1, poisonCause = null} 2013-12-09 21:16:59,527 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:166 syncCount: 1 2013-12-09 21:16:59,528 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 503, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:166} 2013-12-09 21:16:59,528 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:166 syncCount: 2 2013-12-09 21:16:59,582 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 503} 2013-12-09 21:16:59,582 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 169, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:165, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148924, arrival = 0, brokerInTime = 1386620148925, brokerOutTime = 1386620214880, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 163} 2013-12-09 21:16:59,584 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 163 2013-12-09 21:16:59,584 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 504, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:167} 2013-12-09 21:16:59,585 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:167 2013-12-09 21:16:59,586 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:167 2013-12-09 21:16:59,586 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 505, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:166, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:166, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:167, messageCount = 1, poisonCause = null} 2013-12-09 21:16:59,587 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:167 syncCount: 1 2013-12-09 21:16:59,588 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 506, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:167} 2013-12-09 21:16:59,588 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:167 syncCount: 2 2013-12-09 21:16:59,640 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 506} 2013-12-09 21:16:59,640 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 170, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:166, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620148982, arrival = 0, brokerInTime = 1386620148984, brokerOutTime = 1386620214880, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 164} 2013-12-09 21:16:59,641 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 164 2013-12-09 21:16:59,642 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 507, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:168} 2013-12-09 21:16:59,642 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:168 2013-12-09 21:16:59,642 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:168 2013-12-09 21:16:59,642 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 508, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:167, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:167, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:168, messageCount = 1, poisonCause = null} 2013-12-09 21:16:59,643 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:168 syncCount: 1 2013-12-09 21:16:59,643 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 509, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:168} 2013-12-09 21:16:59,644 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:168 syncCount: 2 2013-12-09 21:16:59,698 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 509} 2013-12-09 21:16:59,698 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 171, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:167, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620149040, arrival = 0, brokerInTime = 1386620149041, brokerOutTime = 1386620214880, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 165} 2013-12-09 21:16:59,699 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 165 2013-12-09 21:16:59,700 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 510, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:169} 2013-12-09 21:16:59,701 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:169 2013-12-09 21:16:59,701 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:169 2013-12-09 21:16:59,701 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 511, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:168, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:168, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:169, messageCount = 1, poisonCause = null} 2013-12-09 21:16:59,702 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:169 syncCount: 1 2013-12-09 21:16:59,702 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 512, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:169} 2013-12-09 21:16:59,703 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:169 syncCount: 2 2013-12-09 21:16:59,756 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 512} 2013-12-09 21:16:59,756 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 172, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:168, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620149098, arrival = 0, brokerInTime = 1386620149099, brokerOutTime = 1386620214881, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 166} 2013-12-09 21:16:59,757 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 166 2013-12-09 21:16:59,758 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 513, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:170} 2013-12-09 21:16:59,758 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:170 2013-12-09 21:16:59,758 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:170 2013-12-09 21:16:59,759 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 514, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:169, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:169, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:170, messageCount = 1, poisonCause = null} 2013-12-09 21:16:59,759 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:170 syncCount: 1 2013-12-09 21:16:59,759 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 515, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:170} 2013-12-09 21:16:59,760 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:170 syncCount: 2 2013-12-09 21:16:59,814 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 515} 2013-12-09 21:16:59,814 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 173, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:169, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620149386, arrival = 0, brokerInTime = 1386620149387, brokerOutTime = 1386620214881, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 167} 2013-12-09 21:16:59,815 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 167 2013-12-09 21:16:59,816 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 516, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:171} 2013-12-09 21:16:59,816 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:171 2013-12-09 21:16:59,816 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:171 2013-12-09 21:16:59,817 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 517, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:170, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:170, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:171, messageCount = 1, poisonCause = null} 2013-12-09 21:16:59,818 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:171 syncCount: 1 2013-12-09 21:16:59,818 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 518, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:171} 2013-12-09 21:16:59,819 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:171 syncCount: 2 2013-12-09 21:16:59,872 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 518} 2013-12-09 21:16:59,872 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 174, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:170, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620149619, arrival = 0, brokerInTime = 1386620149621, brokerOutTime = 1386620214881, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 168} 2013-12-09 21:16:59,874 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 168 2013-12-09 21:16:59,875 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 519, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:172} 2013-12-09 21:16:59,875 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:172 2013-12-09 21:16:59,875 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:172 2013-12-09 21:16:59,876 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 520, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:171, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:171, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:172, messageCount = 1, poisonCause = null} 2013-12-09 21:16:59,876 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:172 syncCount: 1 2013-12-09 21:16:59,877 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 521, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:172} 2013-12-09 21:16:59,877 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:172 syncCount: 2 2013-12-09 21:16:59,930 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 521} 2013-12-09 21:16:59,930 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 175, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:171, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620149769, arrival = 0, brokerInTime = 1386620149771, brokerOutTime = 1386620214881, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 169} 2013-12-09 21:16:59,931 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 169 2013-12-09 21:16:59,932 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 522, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:173} 2013-12-09 21:16:59,932 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:173 2013-12-09 21:16:59,933 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:173 2013-12-09 21:16:59,933 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 523, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:172, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:172, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:173, messageCount = 1, poisonCause = null} 2013-12-09 21:16:59,934 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:173 syncCount: 1 2013-12-09 21:16:59,934 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 524, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:173} 2013-12-09 21:16:59,935 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:173 syncCount: 2 2013-12-09 21:16:59,988 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 524} 2013-12-09 21:16:59,988 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 176, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:172, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620149875, arrival = 0, brokerInTime = 1386620149877, brokerOutTime = 1386620214881, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 170} 2013-12-09 21:16:59,989 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 170 2013-12-09 21:16:59,990 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 525, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:174} 2013-12-09 21:16:59,990 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:174 2013-12-09 21:16:59,991 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:174 2013-12-09 21:16:59,991 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 526, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:173, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:173, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:174, messageCount = 1, poisonCause = null} 2013-12-09 21:16:59,992 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:174 syncCount: 1 2013-12-09 21:16:59,992 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 527, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:174} 2013-12-09 21:16:59,993 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:174 syncCount: 2 2013-12-09 21:17:00,046 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 527} 2013-12-09 21:17:00,046 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 177, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:173, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620149927, arrival = 0, brokerInTime = 1386620149928, brokerOutTime = 1386620214881, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 171} 2013-12-09 21:17:00,047 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 171 2013-12-09 21:17:00,048 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 528, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:175} 2013-12-09 21:17:00,048 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:175 2013-12-09 21:17:00,048 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:175 2013-12-09 21:17:00,049 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 529, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:174, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:174, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:175, messageCount = 1, poisonCause = null} 2013-12-09 21:17:00,050 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:175 syncCount: 1 2013-12-09 21:17:00,050 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 530, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:175} 2013-12-09 21:17:00,051 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:175 syncCount: 2 2013-12-09 21:17:00,104 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 530} 2013-12-09 21:17:00,104 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 178, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:174, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620149985, arrival = 0, brokerInTime = 1386620149987, brokerOutTime = 1386620214881, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 172} 2013-12-09 21:17:00,106 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 172 2013-12-09 21:17:00,106 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 531, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:176} 2013-12-09 21:17:00,106 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:176 2013-12-09 21:17:00,107 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:176 2013-12-09 21:17:00,107 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 532, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:175, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:175, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:176, messageCount = 1, poisonCause = null} 2013-12-09 21:17:00,108 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:176 syncCount: 1 2013-12-09 21:17:00,108 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 533, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:176} 2013-12-09 21:17:00,109 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:176 syncCount: 2 2013-12-09 21:17:00,162 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 533} 2013-12-09 21:17:00,162 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 179, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:175, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150043, arrival = 0, brokerInTime = 1386620150044, brokerOutTime = 1386620214881, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 173} 2013-12-09 21:17:00,163 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 173 2013-12-09 21:17:00,164 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 534, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:177} 2013-12-09 21:17:00,164 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:177 2013-12-09 21:17:00,164 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:177 2013-12-09 21:17:00,165 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 535, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:176, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:176, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:177, messageCount = 1, poisonCause = null} 2013-12-09 21:17:00,165 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:177 syncCount: 1 2013-12-09 21:17:00,166 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 536, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:177} 2013-12-09 21:17:00,166 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:177 syncCount: 2 2013-12-09 21:17:00,220 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 536} 2013-12-09 21:17:00,220 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 180, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:176, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150101, arrival = 0, brokerInTime = 1386620150103, brokerOutTime = 1386620214881, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 174} 2013-12-09 21:17:00,222 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 174 2013-12-09 21:17:00,223 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 537, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:178} 2013-12-09 21:17:00,224 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:178 2013-12-09 21:17:00,224 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:178 2013-12-09 21:17:00,224 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 538, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:177, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:177, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:178, messageCount = 1, poisonCause = null} 2013-12-09 21:17:00,226 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:178 syncCount: 1 2013-12-09 21:17:00,226 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 539, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:178} 2013-12-09 21:17:00,226 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:178 syncCount: 2 2013-12-09 21:17:00,278 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 539} 2013-12-09 21:17:00,278 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 181, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:177, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150159, arrival = 0, brokerInTime = 1386620150161, brokerOutTime = 1386620214882, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 175} 2013-12-09 21:17:00,279 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 175 2013-12-09 21:17:00,280 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 540, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:179} 2013-12-09 21:17:00,280 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:179 2013-12-09 21:17:00,280 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:179 2013-12-09 21:17:00,281 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 541, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:178, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:178, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:179, messageCount = 1, poisonCause = null} 2013-12-09 21:17:00,281 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:179 syncCount: 1 2013-12-09 21:17:00,282 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 542, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:179} 2013-12-09 21:17:00,282 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:179 syncCount: 2 2013-12-09 21:17:00,336 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 542} 2013-12-09 21:17:00,336 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 182, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:178, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150216, arrival = 0, brokerInTime = 1386620150218, brokerOutTime = 1386620214882, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 176} 2013-12-09 21:17:00,337 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 176 2013-12-09 21:17:00,338 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 543, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:180} 2013-12-09 21:17:00,338 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:180 2013-12-09 21:17:00,338 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:180 2013-12-09 21:17:00,339 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 544, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:179, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:179, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:180, messageCount = 1, poisonCause = null} 2013-12-09 21:17:00,339 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:180 syncCount: 1 2013-12-09 21:17:00,340 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 545, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:180} 2013-12-09 21:17:00,340 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:180 syncCount: 2 2013-12-09 21:17:00,394 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 545} 2013-12-09 21:17:00,394 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 183, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:179, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150275, arrival = 0, brokerInTime = 1386620150276, brokerOutTime = 1386620214882, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 177} 2013-12-09 21:17:00,395 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 177 2013-12-09 21:17:00,396 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 546, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:181} 2013-12-09 21:17:00,396 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:181 2013-12-09 21:17:00,396 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:181 2013-12-09 21:17:00,397 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 547, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:180, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:180, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:181, messageCount = 1, poisonCause = null} 2013-12-09 21:17:00,397 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:181 syncCount: 1 2013-12-09 21:17:00,398 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 548, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:181} 2013-12-09 21:17:00,398 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:181 syncCount: 2 2013-12-09 21:17:00,451 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 548} 2013-12-09 21:17:00,452 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 184, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:180, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150341, arrival = 0, brokerInTime = 1386620150342, brokerOutTime = 1386620214882, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 178} 2013-12-09 21:17:00,453 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 178 2013-12-09 21:17:00,453 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 549, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:182} 2013-12-09 21:17:00,454 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:182 2013-12-09 21:17:00,454 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:182 2013-12-09 21:17:00,454 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 550, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:181, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:181, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:182, messageCount = 1, poisonCause = null} 2013-12-09 21:17:00,455 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:182 syncCount: 1 2013-12-09 21:17:00,456 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 551, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:182} 2013-12-09 21:17:00,456 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:182 syncCount: 2 2013-12-09 21:17:00,510 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 551} 2013-12-09 21:17:00,510 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 185, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:181, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150399, arrival = 0, brokerInTime = 1386620150400, brokerOutTime = 1386620214882, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 179} 2013-12-09 21:17:00,511 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 179 2013-12-09 21:17:00,512 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 552, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:183} 2013-12-09 21:17:00,512 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:183 2013-12-09 21:17:00,513 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:183 2013-12-09 21:17:00,513 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 553, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:182, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:182, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:183, messageCount = 1, poisonCause = null} 2013-12-09 21:17:00,514 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:183 syncCount: 1 2013-12-09 21:17:00,514 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 554, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:183} 2013-12-09 21:17:00,515 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:183 syncCount: 2 2013-12-09 21:17:00,568 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 554} 2013-12-09 21:17:00,568 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 186, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:182, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150457, arrival = 0, brokerInTime = 1386620150458, brokerOutTime = 1386620214882, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 180} 2013-12-09 21:17:00,569 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 180 2013-12-09 21:17:00,569 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 555, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:184} 2013-12-09 21:17:00,570 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:184 2013-12-09 21:17:00,570 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:184 2013-12-09 21:17:00,570 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 556, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:183, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:183, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:184, messageCount = 1, poisonCause = null} 2013-12-09 21:17:00,571 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:184 syncCount: 1 2013-12-09 21:17:00,571 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 557, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:184} 2013-12-09 21:17:00,572 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:184 syncCount: 2 2013-12-09 21:17:00,626 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 557} 2013-12-09 21:17:00,626 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 187, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:183, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150523, arrival = 0, brokerInTime = 1386620150524, brokerOutTime = 1386620214882, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 181} 2013-12-09 21:17:00,627 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 181 2013-12-09 21:17:00,628 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 558, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:185} 2013-12-09 21:17:00,628 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:185 2013-12-09 21:17:00,628 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:185 2013-12-09 21:17:00,629 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 559, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:184, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:184, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:185, messageCount = 1, poisonCause = null} 2013-12-09 21:17:00,629 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:185 syncCount: 1 2013-12-09 21:17:00,630 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 560, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:185} 2013-12-09 21:17:00,630 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:185 syncCount: 2 2013-12-09 21:17:00,684 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 560} 2013-12-09 21:17:00,684 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 188, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:184, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150589, arrival = 0, brokerInTime = 1386620150590, brokerOutTime = 1386620214882, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 182} 2013-12-09 21:17:00,685 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 182 2013-12-09 21:17:00,686 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 561, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:186} 2013-12-09 21:17:00,686 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:186 2013-12-09 21:17:00,686 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:186 2013-12-09 21:17:00,687 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 562, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:185, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:185, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:186, messageCount = 1, poisonCause = null} 2013-12-09 21:17:00,688 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:186 syncCount: 1 2013-12-09 21:17:00,688 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 563, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:186} 2013-12-09 21:17:00,688 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:186 syncCount: 2 2013-12-09 21:17:00,742 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 563} 2013-12-09 21:17:00,742 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 189, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:185, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150647, arrival = 0, brokerInTime = 1386620150649, brokerOutTime = 1386620214883, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 183} 2013-12-09 21:17:00,743 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 183 2013-12-09 21:17:00,744 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 564, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:187} 2013-12-09 21:17:00,744 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:187 2013-12-09 21:17:00,744 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:187 2013-12-09 21:17:00,744 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 565, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:186, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:186, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:187, messageCount = 1, poisonCause = null} 2013-12-09 21:17:00,745 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:187 syncCount: 1 2013-12-09 21:17:00,745 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 566, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:187} 2013-12-09 21:17:00,746 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:187 syncCount: 2 2013-12-09 21:17:00,799 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 566} 2013-12-09 21:17:00,800 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 190, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:186, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150705, arrival = 0, brokerInTime = 1386620150707, brokerOutTime = 1386620214883, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 184} 2013-12-09 21:17:00,801 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 184 2013-12-09 21:17:00,801 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 567, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:188} 2013-12-09 21:17:00,802 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:188 2013-12-09 21:17:00,802 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:188 2013-12-09 21:17:00,802 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 568, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:187, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:187, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:188, messageCount = 1, poisonCause = null} 2013-12-09 21:17:00,803 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:188 syncCount: 1 2013-12-09 21:17:00,803 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 569, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:188} 2013-12-09 21:17:00,804 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:188 syncCount: 2 2013-12-09 21:17:00,858 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 569} 2013-12-09 21:17:00,858 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 191, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:187, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150763, arrival = 0, brokerInTime = 1386620150764, brokerOutTime = 1386620214883, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 185} 2013-12-09 21:17:00,860 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 185 2013-12-09 21:17:00,860 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 570, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:189} 2013-12-09 21:17:00,861 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:189 2013-12-09 21:17:00,861 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:189 2013-12-09 21:17:00,861 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 571, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:188, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:188, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:189, messageCount = 1, poisonCause = null} 2013-12-09 21:17:00,862 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:189 syncCount: 1 2013-12-09 21:17:00,862 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 572, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:189} 2013-12-09 21:17:00,863 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:189 syncCount: 2 2013-12-09 21:17:00,916 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 572} 2013-12-09 21:17:00,916 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 192, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:188, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150821, arrival = 0, brokerInTime = 1386620150823, brokerOutTime = 1386620214883, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 186} 2013-12-09 21:17:00,918 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 186 2013-12-09 21:17:00,919 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 573, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:190} 2013-12-09 21:17:00,919 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:190 2013-12-09 21:17:00,919 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:190 2013-12-09 21:17:00,920 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 574, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:189, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:189, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:190, messageCount = 1, poisonCause = null} 2013-12-09 21:17:00,921 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:190 syncCount: 1 2013-12-09 21:17:00,921 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 575, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:190} 2013-12-09 21:17:00,922 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:190 syncCount: 2 2013-12-09 21:17:00,974 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 575} 2013-12-09 21:17:00,974 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 193, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:189, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150879, arrival = 0, brokerInTime = 1386620150880, brokerOutTime = 1386620214883, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 187} 2013-12-09 21:17:00,975 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 187 2013-12-09 21:17:00,976 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 576, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:191} 2013-12-09 21:17:00,976 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:191 2013-12-09 21:17:00,976 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:191 2013-12-09 21:17:00,977 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 577, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:190, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:190, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:191, messageCount = 1, poisonCause = null} 2013-12-09 21:17:00,977 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:191 syncCount: 1 2013-12-09 21:17:00,978 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 578, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:191} 2013-12-09 21:17:00,978 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:191 syncCount: 2 2013-12-09 21:17:01,032 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 578} 2013-12-09 21:17:01,032 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 194, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:190, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150937, arrival = 0, brokerInTime = 1386620150938, brokerOutTime = 1386620214883, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 188} 2013-12-09 21:17:01,034 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 188 2013-12-09 21:17:01,034 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 579, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:192} 2013-12-09 21:17:01,035 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:192 2013-12-09 21:17:01,035 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:192 2013-12-09 21:17:01,035 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 580, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:191, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:191, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:192, messageCount = 1, poisonCause = null} 2013-12-09 21:17:01,036 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:192 syncCount: 1 2013-12-09 21:17:01,036 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 581, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:192} 2013-12-09 21:17:01,037 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:192 syncCount: 2 2013-12-09 21:17:01,089 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 581} 2013-12-09 21:17:01,090 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 195, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:191, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620150995, arrival = 0, brokerInTime = 1386620150996, brokerOutTime = 1386620214883, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 189} 2013-12-09 21:17:01,091 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 189 2013-12-09 21:17:01,091 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 582, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:193} 2013-12-09 21:17:01,092 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:193 2013-12-09 21:17:01,092 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:193 2013-12-09 21:17:01,092 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 583, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:192, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:192, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:193, messageCount = 1, poisonCause = null} 2013-12-09 21:17:01,093 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:193 syncCount: 1 2013-12-09 21:17:01,093 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 584, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:193} 2013-12-09 21:17:01,094 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:193 syncCount: 2 2013-12-09 21:17:01,147 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 584} 2013-12-09 21:17:01,148 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 196, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:192, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151053, arrival = 0, brokerInTime = 1386620151054, brokerOutTime = 1386620214883, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 190} 2013-12-09 21:17:01,149 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 190 2013-12-09 21:17:01,150 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 585, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:194} 2013-12-09 21:17:01,150 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:194 2013-12-09 21:17:01,150 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:194 2013-12-09 21:17:01,151 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 586, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:193, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:193, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:194, messageCount = 1, poisonCause = null} 2013-12-09 21:17:01,151 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:194 syncCount: 1 2013-12-09 21:17:01,151 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 587, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:194} 2013-12-09 21:17:01,152 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:194 syncCount: 2 2013-12-09 21:17:01,205 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 587} 2013-12-09 21:17:01,206 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 197, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:193, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151111, arrival = 0, brokerInTime = 1386620151113, brokerOutTime = 1386620214883, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 191} 2013-12-09 21:17:01,207 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 191 2013-12-09 21:17:01,208 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 588, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:195} 2013-12-09 21:17:01,208 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:195 2013-12-09 21:17:01,208 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:195 2013-12-09 21:17:01,209 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 589, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:194, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:194, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:195, messageCount = 1, poisonCause = null} 2013-12-09 21:17:01,209 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:195 syncCount: 1 2013-12-09 21:17:01,210 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 590, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:195} 2013-12-09 21:17:01,210 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:195 syncCount: 2 2013-12-09 21:17:01,273 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 590} 2013-12-09 21:17:01,274 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 198, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:194, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151169, arrival = 0, brokerInTime = 1386620151170, brokerOutTime = 1386620214883, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 192} 2013-12-09 21:17:01,276 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 192 2013-12-09 21:17:01,276 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 591, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:196} 2013-12-09 21:17:01,277 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:196 2013-12-09 21:17:01,277 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:196 2013-12-09 21:17:01,278 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 592, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:195, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:195, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:196, messageCount = 1, poisonCause = null} 2013-12-09 21:17:01,278 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:196 syncCount: 1 2013-12-09 21:17:01,279 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 593, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:196} 2013-12-09 21:17:01,279 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:196 syncCount: 2 2013-12-09 21:17:01,331 [.0.1:58068@1666] DEBUG Usage - default:memory:queue://test_queue_z0:memory: usage change from: 4% of available memory, to: 3% of available memory 2013-12-09 21:17:01,332 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 593} 2013-12-09 21:17:01,333 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 199, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:195, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151227, arrival = 0, brokerInTime = 1386620151228, brokerOutTime = 1386620214883, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 193} 2013-12-09 21:17:01,334 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 193 2013-12-09 21:17:01,335 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 594, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:197} 2013-12-09 21:17:01,335 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:197 2013-12-09 21:17:01,336 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:197 2013-12-09 21:17:01,336 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 595, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:196, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:196, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:197, messageCount = 1, poisonCause = null} 2013-12-09 21:17:01,338 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:197 syncCount: 1 2013-12-09 21:17:01,339 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 596, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:197} 2013-12-09 21:17:01,339 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:197 syncCount: 2 2013-12-09 21:17:01,397 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 596} 2013-12-09 21:17:01,398 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 200, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:196, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151285, arrival = 0, brokerInTime = 1386620151286, brokerOutTime = 1386620214884, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 194} 2013-12-09 21:17:01,399 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 194 2013-12-09 21:17:01,400 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 597, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:198} 2013-12-09 21:17:01,400 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:198 2013-12-09 21:17:01,400 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:198 2013-12-09 21:17:01,401 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 598, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:197, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:197, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:198, messageCount = 1, poisonCause = null} 2013-12-09 21:17:01,401 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:198 syncCount: 1 2013-12-09 21:17:01,402 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 599, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:198} 2013-12-09 21:17:01,402 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:198 syncCount: 2 2013-12-09 21:17:01,454 [ Scheduled Task] DEBUG LeaseDatabaseLocker - coreActiveMQBroker1, lease keepAlive Query is UPDATE ACTIVEMQ_LOCK SET BROKER_NAME=?, TIME=? WHERE BROKER_NAME=? AND ID = 1 2013-12-09 21:17:01,455 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 599} 2013-12-09 21:17:01,456 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 201, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:197, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151343, arrival = 0, brokerInTime = 1386620151344, brokerOutTime = 1386620214884, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 195} 2013-12-09 21:17:01,457 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 195 2013-12-09 21:17:01,457 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 600, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:199} 2013-12-09 21:17:01,458 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:199 2013-12-09 21:17:01,458 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:199 2013-12-09 21:17:01,458 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 601, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:198, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:198, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:199, messageCount = 1, poisonCause = null} 2013-12-09 21:17:01,459 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:199 syncCount: 1 2013-12-09 21:17:01,459 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 602, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:199} 2013-12-09 21:17:01,460 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:199 syncCount: 2 2013-12-09 21:17:01,555 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 602} 2013-12-09 21:17:01,555 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 202, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:198, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151401, arrival = 0, brokerInTime = 1386620151402, brokerOutTime = 1386620214884, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 196} 2013-12-09 21:17:01,557 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 196 2013-12-09 21:17:01,557 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 603, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:200} 2013-12-09 21:17:01,558 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:200 2013-12-09 21:17:01,558 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:200 2013-12-09 21:17:01,558 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 604, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:199, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:199, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:200, messageCount = 1, poisonCause = null} 2013-12-09 21:17:01,559 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:200 syncCount: 1 2013-12-09 21:17:01,559 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 605, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:200} 2013-12-09 21:17:01,560 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:200 syncCount: 2 2013-12-09 21:17:01,613 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 605} 2013-12-09 21:17:01,613 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 203, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:199, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151459, arrival = 0, brokerInTime = 1386620151460, brokerOutTime = 1386620214884, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 197} 2013-12-09 21:17:01,615 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 197 2013-12-09 21:17:01,615 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 606, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:201} 2013-12-09 21:17:01,615 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:201 2013-12-09 21:17:01,616 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:201 2013-12-09 21:17:01,616 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 607, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:200, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:200, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:201, messageCount = 1, poisonCause = null} 2013-12-09 21:17:01,617 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:201 syncCount: 1 2013-12-09 21:17:01,617 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 608, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:201} 2013-12-09 21:17:01,618 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:201 syncCount: 2 2013-12-09 21:17:01,671 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 608} 2013-12-09 21:17:01,671 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 204, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:200, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151559, arrival = 0, brokerInTime = 1386620151560, brokerOutTime = 1386620214884, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 198} 2013-12-09 21:17:01,673 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 198 2013-12-09 21:17:01,673 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 609, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:202} 2013-12-09 21:17:01,673 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:202 2013-12-09 21:17:01,673 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:202 2013-12-09 21:17:01,674 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 610, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:201, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:201, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:202, messageCount = 1, poisonCause = null} 2013-12-09 21:17:01,674 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:202 syncCount: 1 2013-12-09 21:17:01,675 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 611, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:202} 2013-12-09 21:17:01,675 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:202 syncCount: 2 2013-12-09 21:17:01,729 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 611} 2013-12-09 21:17:01,729 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 205, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:201, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151616, arrival = 0, brokerInTime = 1386620151618, brokerOutTime = 1386620214884, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 199} 2013-12-09 21:17:01,731 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 199 2013-12-09 21:17:01,731 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 612, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:203} 2013-12-09 21:17:01,731 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:203 2013-12-09 21:17:01,731 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:203 2013-12-09 21:17:01,732 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 613, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:202, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:202, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:203, messageCount = 1, poisonCause = null} 2013-12-09 21:17:01,732 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:203 syncCount: 1 2013-12-09 21:17:01,733 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 614, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:203} 2013-12-09 21:17:01,733 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:203 syncCount: 2 2013-12-09 21:17:01,787 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 614} 2013-12-09 21:17:01,787 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 206, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:202, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151675, arrival = 0, brokerInTime = 1386620151676, brokerOutTime = 1386620214884, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 200} 2013-12-09 21:17:01,788 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 200 2013-12-09 21:17:01,789 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 615, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:204} 2013-12-09 21:17:01,789 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:204 2013-12-09 21:17:01,789 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:204 2013-12-09 21:17:01,790 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 616, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:203, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:203, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:204, messageCount = 1, poisonCause = null} 2013-12-09 21:17:01,790 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:204 syncCount: 1 2013-12-09 21:17:01,791 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 617, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:204} 2013-12-09 21:17:01,791 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:204 syncCount: 2 2013-12-09 21:17:01,845 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 617} 2013-12-09 21:17:01,845 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 207, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:203, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151733, arrival = 0, brokerInTime = 1386620151734, brokerOutTime = 1386620214884, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 201} 2013-12-09 21:17:01,846 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 201 2013-12-09 21:17:01,847 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 618, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:205} 2013-12-09 21:17:01,847 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:205 2013-12-09 21:17:01,847 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:205 2013-12-09 21:17:01,847 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 619, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:204, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:204, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:205, messageCount = 1, poisonCause = null} 2013-12-09 21:17:01,848 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:205 syncCount: 1 2013-12-09 21:17:01,848 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 620, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:205} 2013-12-09 21:17:01,849 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:205 syncCount: 2 2013-12-09 21:17:01,903 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 620} 2013-12-09 21:17:01,903 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 208, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:204, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151800, arrival = 0, brokerInTime = 1386620151802, brokerOutTime = 1386620214884, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 202} 2013-12-09 21:17:01,904 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 202 2013-12-09 21:17:01,905 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 621, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:206} 2013-12-09 21:17:01,906 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:206 2013-12-09 21:17:01,906 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:206 2013-12-09 21:17:01,906 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 622, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:205, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:205, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:206, messageCount = 1, poisonCause = null} 2013-12-09 21:17:01,907 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:206 syncCount: 1 2013-12-09 21:17:01,908 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 623, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:206} 2013-12-09 21:17:01,908 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:206 syncCount: 2 2013-12-09 21:17:01,961 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 623} 2013-12-09 21:17:01,961 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 209, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:205, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151858, arrival = 0, brokerInTime = 1386620151860, brokerOutTime = 1386620214884, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 203} 2013-12-09 21:17:01,962 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 203 2013-12-09 21:17:01,963 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 624, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:207} 2013-12-09 21:17:01,963 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:207 2013-12-09 21:17:01,963 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:207 2013-12-09 21:17:01,963 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 625, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:206, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:206, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:207, messageCount = 1, poisonCause = null} 2013-12-09 21:17:01,964 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:207 syncCount: 1 2013-12-09 21:17:01,964 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 626, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:207} 2013-12-09 21:17:01,965 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:207 syncCount: 2 2013-12-09 21:17:02,019 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 626} 2013-12-09 21:17:02,020 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 210, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:206, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151916, arrival = 0, brokerInTime = 1386620151918, brokerOutTime = 1386620214885, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 204} 2013-12-09 21:17:02,021 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 204 2013-12-09 21:17:02,022 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 627, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:208} 2013-12-09 21:17:02,022 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:208 2013-12-09 21:17:02,023 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:208 2013-12-09 21:17:02,023 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 628, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:207, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:207, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:208, messageCount = 1, poisonCause = null} 2013-12-09 21:17:02,024 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:208 syncCount: 1 2013-12-09 21:17:02,024 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 629, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:208} 2013-12-09 21:17:02,024 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:208 syncCount: 2 2013-12-09 21:17:02,077 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 629} 2013-12-09 21:17:02,077 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 211, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:207, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620151974, arrival = 0, brokerInTime = 1386620151976, brokerOutTime = 1386620214885, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 205} 2013-12-09 21:17:02,079 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 205 2013-12-09 21:17:02,079 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 630, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:209} 2013-12-09 21:17:02,079 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:209 2013-12-09 21:17:02,080 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:209 2013-12-09 21:17:02,080 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 631, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:208, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:208, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:209, messageCount = 1, poisonCause = null} 2013-12-09 21:17:02,081 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:209 syncCount: 1 2013-12-09 21:17:02,082 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 632, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:209} 2013-12-09 21:17:02,082 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:209 syncCount: 2 2013-12-09 21:17:02,135 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 632} 2013-12-09 21:17:02,135 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 212, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:208, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152040, arrival = 0, brokerInTime = 1386620152042, brokerOutTime = 1386620214885, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 206} 2013-12-09 21:17:02,137 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 206 2013-12-09 21:17:02,137 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 633, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:210} 2013-12-09 21:17:02,137 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:210 2013-12-09 21:17:02,138 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:210 2013-12-09 21:17:02,138 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 634, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:209, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:209, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:210, messageCount = 1, poisonCause = null} 2013-12-09 21:17:02,139 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:210 syncCount: 1 2013-12-09 21:17:02,139 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 635, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:210} 2013-12-09 21:17:02,140 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:210 syncCount: 2 2013-12-09 21:17:02,193 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 635} 2013-12-09 21:17:02,194 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 213, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:209, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152107, arrival = 0, brokerInTime = 1386620152108, brokerOutTime = 1386620214885, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 207} 2013-12-09 21:17:02,196 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 207 2013-12-09 21:17:02,196 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 636, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:211} 2013-12-09 21:17:02,197 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:211 2013-12-09 21:17:02,197 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:211 2013-12-09 21:17:02,198 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 637, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:210, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:210, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:211, messageCount = 1, poisonCause = null} 2013-12-09 21:17:02,199 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:211 syncCount: 1 2013-12-09 21:17:02,199 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 638, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:211} 2013-12-09 21:17:02,200 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:211 syncCount: 2 2013-12-09 21:17:02,251 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 638} 2013-12-09 21:17:02,251 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 214, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:210, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152214, arrival = 0, brokerInTime = 1386620152216, brokerOutTime = 1386620214885, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 208} 2013-12-09 21:17:02,254 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 208 2013-12-09 21:17:02,254 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 639, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:212} 2013-12-09 21:17:02,255 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:212 2013-12-09 21:17:02,256 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:212 2013-12-09 21:17:02,256 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 640, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:211, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:211, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:212, messageCount = 1, poisonCause = null} 2013-12-09 21:17:02,257 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:212 syncCount: 1 2013-12-09 21:17:02,257 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 641, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:212} 2013-12-09 21:17:02,258 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:212 syncCount: 2 2013-12-09 21:17:02,309 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 641} 2013-12-09 21:17:02,310 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 215, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:211, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152272, arrival = 0, brokerInTime = 1386620152273, brokerOutTime = 1386620214885, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 209} 2013-12-09 21:17:02,312 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 209 2013-12-09 21:17:02,313 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 642, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:213} 2013-12-09 21:17:02,313 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:213 2013-12-09 21:17:02,314 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:213 2013-12-09 21:17:02,314 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 643, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:212, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:212, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:213, messageCount = 1, poisonCause = null} 2013-12-09 21:17:02,316 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:213 syncCount: 1 2013-12-09 21:17:02,316 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 644, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:213} 2013-12-09 21:17:02,317 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:213 syncCount: 2 2013-12-09 21:17:02,400 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 644} 2013-12-09 21:17:02,401 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 216, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:212, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152380, arrival = 0, brokerInTime = 1386620152381, brokerOutTime = 1386620214885, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 210} 2013-12-09 21:17:02,402 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 210 2013-12-09 21:17:02,403 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 645, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:214} 2013-12-09 21:17:02,403 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:214 2013-12-09 21:17:02,403 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:214 2013-12-09 21:17:02,404 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 646, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:213, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:213, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:214, messageCount = 1, poisonCause = null} 2013-12-09 21:17:02,405 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:214 syncCount: 1 2013-12-09 21:17:02,405 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 647, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:214} 2013-12-09 21:17:02,406 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:214 syncCount: 2 2013-12-09 21:17:02,466 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 647} 2013-12-09 21:17:02,467 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 217, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:213, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152437, arrival = 0, brokerInTime = 1386620152439, brokerOutTime = 1386620214885, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 211} 2013-12-09 21:17:02,470 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 211 2013-12-09 21:17:02,470 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 648, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:215} 2013-12-09 21:17:02,471 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:215 2013-12-09 21:17:02,471 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:215 2013-12-09 21:17:02,471 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 649, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:214, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:214, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:215, messageCount = 1, poisonCause = null} 2013-12-09 21:17:02,472 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:215 syncCount: 1 2013-12-09 21:17:02,473 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 650, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:215} 2013-12-09 21:17:02,473 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:215 syncCount: 2 2013-12-09 21:17:02,524 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 650} 2013-12-09 21:17:02,525 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 218, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:214, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152495, arrival = 0, brokerInTime = 1386620152497, brokerOutTime = 1386620214885, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 212} 2013-12-09 21:17:02,527 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 212 2013-12-09 21:17:02,527 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 651, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:216} 2013-12-09 21:17:02,527 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:216 2013-12-09 21:17:02,528 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:216 2013-12-09 21:17:02,528 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 652, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:215, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:215, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:216, messageCount = 1, poisonCause = null} 2013-12-09 21:17:02,529 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:216 syncCount: 1 2013-12-09 21:17:02,529 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 653, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:216} 2013-12-09 21:17:02,530 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:216 syncCount: 2 2013-12-09 21:17:02,582 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 653} 2013-12-09 21:17:02,583 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 219, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:215, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152553, arrival = 0, brokerInTime = 1386620152555, brokerOutTime = 1386620214886, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 213} 2013-12-09 21:17:02,584 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 213 2013-12-09 21:17:02,585 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 654, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:217} 2013-12-09 21:17:02,585 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:217 2013-12-09 21:17:02,586 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:217 2013-12-09 21:17:02,586 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 655, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:216, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:216, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:217, messageCount = 1, poisonCause = null} 2013-12-09 21:17:02,587 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:217 syncCount: 1 2013-12-09 21:17:02,587 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 656, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:217} 2013-12-09 21:17:02,588 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:217 syncCount: 2 2013-12-09 21:17:02,649 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 656} 2013-12-09 21:17:02,649 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 220, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:216, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152612, arrival = 0, brokerInTime = 1386620152613, brokerOutTime = 1386620214886, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 214} 2013-12-09 21:17:02,650 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 214 2013-12-09 21:17:02,651 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 657, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:218} 2013-12-09 21:17:02,651 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:218 2013-12-09 21:17:02,651 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:218 2013-12-09 21:17:02,652 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 658, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:217, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:217, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:218, messageCount = 1, poisonCause = null} 2013-12-09 21:17:02,653 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:218 syncCount: 1 2013-12-09 21:17:02,653 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 659, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:218} 2013-12-09 21:17:02,653 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:218 syncCount: 2 2013-12-09 21:17:02,707 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 659} 2013-12-09 21:17:02,707 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 221, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:217, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152670, arrival = 0, brokerInTime = 1386620152671, brokerOutTime = 1386620214886, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 215} 2013-12-09 21:17:02,708 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 215 2013-12-09 21:17:02,709 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 660, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:219} 2013-12-09 21:17:02,709 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:219 2013-12-09 21:17:02,709 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:219 2013-12-09 21:17:02,710 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 661, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:218, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:218, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:219, messageCount = 1, poisonCause = null} 2013-12-09 21:17:02,710 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:219 syncCount: 1 2013-12-09 21:17:02,711 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 662, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:219} 2013-12-09 21:17:02,711 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:219 syncCount: 2 2013-12-09 21:17:02,765 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 662} 2013-12-09 21:17:02,765 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 222, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:218, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152728, arrival = 0, brokerInTime = 1386620152729, brokerOutTime = 1386620214886, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 216} 2013-12-09 21:17:02,766 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 216 2013-12-09 21:17:02,767 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 663, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:220} 2013-12-09 21:17:02,767 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:220 2013-12-09 21:17:02,767 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:220 2013-12-09 21:17:02,768 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 664, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:219, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:219, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:220, messageCount = 1, poisonCause = null} 2013-12-09 21:17:02,769 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:220 syncCount: 1 2013-12-09 21:17:02,769 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 665, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:220} 2013-12-09 21:17:02,770 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:220 syncCount: 2 2013-12-09 21:17:02,823 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 665} 2013-12-09 21:17:02,823 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 223, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:219, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152786, arrival = 0, brokerInTime = 1386620152787, brokerOutTime = 1386620214886, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 217} 2013-12-09 21:17:02,825 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 217 2013-12-09 21:17:02,825 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 666, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:221} 2013-12-09 21:17:02,825 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:221 2013-12-09 21:17:02,826 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:221 2013-12-09 21:17:02,826 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 667, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:220, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:220, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:221, messageCount = 1, poisonCause = null} 2013-12-09 21:17:02,827 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:221 syncCount: 1 2013-12-09 21:17:02,827 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 668, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:221} 2013-12-09 21:17:02,827 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:221 syncCount: 2 2013-12-09 21:17:02,881 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 668} 2013-12-09 21:17:02,881 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 224, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:220, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152844, arrival = 0, brokerInTime = 1386620152845, brokerOutTime = 1386620214886, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 218} 2013-12-09 21:17:02,884 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 218 2013-12-09 21:17:02,884 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 669, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:222} 2013-12-09 21:17:02,885 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:222 2013-12-09 21:17:02,885 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:222 2013-12-09 21:17:02,885 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 670, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:221, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:221, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:222, messageCount = 1, poisonCause = null} 2013-12-09 21:17:02,886 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:222 syncCount: 1 2013-12-09 21:17:02,887 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 671, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:222} 2013-12-09 21:17:02,887 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:222 syncCount: 2 2013-12-09 21:17:02,947 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 671} 2013-12-09 21:17:02,947 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 225, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:221, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152902, arrival = 0, brokerInTime = 1386620152904, brokerOutTime = 1386620214886, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 219} 2013-12-09 21:17:02,949 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 219 2013-12-09 21:17:02,949 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 672, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:223} 2013-12-09 21:17:02,950 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:223 2013-12-09 21:17:02,950 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:223 2013-12-09 21:17:02,951 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 673, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:222, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:222, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:223, messageCount = 1, poisonCause = null} 2013-12-09 21:17:02,951 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:223 syncCount: 1 2013-12-09 21:17:02,952 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 674, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:223} 2013-12-09 21:17:02,952 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:223 syncCount: 2 2013-12-09 21:17:03,013 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 674} 2013-12-09 21:17:03,013 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 226, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:222, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620152960, arrival = 0, brokerInTime = 1386620152961, brokerOutTime = 1386620214886, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 220} 2013-12-09 21:17:03,015 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 220 2013-12-09 21:17:03,015 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 675, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:224} 2013-12-09 21:17:03,016 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:224 2013-12-09 21:17:03,016 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:224 2013-12-09 21:17:03,017 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 676, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:223, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:223, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:224, messageCount = 1, poisonCause = null} 2013-12-09 21:17:03,018 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:224 syncCount: 1 2013-12-09 21:17:03,019 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 677, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:224} 2013-12-09 21:17:03,019 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:224 syncCount: 2 2013-12-09 21:17:03,079 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 677} 2013-12-09 21:17:03,080 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 227, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:223, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153018, arrival = 0, brokerInTime = 1386620153020, brokerOutTime = 1386620214886, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 221} 2013-12-09 21:17:03,081 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 221 2013-12-09 21:17:03,082 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 678, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:225} 2013-12-09 21:17:03,082 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:225 2013-12-09 21:17:03,082 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:225 2013-12-09 21:17:03,083 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 679, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:224, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:224, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:225, messageCount = 1, poisonCause = null} 2013-12-09 21:17:03,084 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:225 syncCount: 1 2013-12-09 21:17:03,085 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 680, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:225} 2013-12-09 21:17:03,085 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:225 syncCount: 2 2013-12-09 21:17:03,137 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 680} 2013-12-09 21:17:03,138 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 228, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:224, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153075, arrival = 0, brokerInTime = 1386620153077, brokerOutTime = 1386620214886, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 222} 2013-12-09 21:17:03,140 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 222 2013-12-09 21:17:03,140 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 681, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:226} 2013-12-09 21:17:03,140 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:226 2013-12-09 21:17:03,140 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:226 2013-12-09 21:17:03,141 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 682, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:225, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:225, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:226, messageCount = 1, poisonCause = null} 2013-12-09 21:17:03,141 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:226 syncCount: 1 2013-12-09 21:17:03,142 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 683, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:226} 2013-12-09 21:17:03,142 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:226 syncCount: 2 2013-12-09 21:17:03,195 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 683} 2013-12-09 21:17:03,196 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 229, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:225, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153133, arrival = 0, brokerInTime = 1386620153135, brokerOutTime = 1386620214887, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 223} 2013-12-09 21:17:03,198 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 223 2013-12-09 21:17:03,198 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 684, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:227} 2013-12-09 21:17:03,199 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:227 2013-12-09 21:17:03,199 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:227 2013-12-09 21:17:03,200 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 685, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:226, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:226, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:227, messageCount = 1, poisonCause = null} 2013-12-09 21:17:03,201 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:227 syncCount: 1 2013-12-09 21:17:03,201 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 686, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:227} 2013-12-09 21:17:03,201 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:227 syncCount: 2 2013-12-09 21:17:03,303 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 686} 2013-12-09 21:17:03,303 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 230, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:226, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153191, arrival = 0, brokerInTime = 1386620153193, brokerOutTime = 1386620214887, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 224} 2013-12-09 21:17:03,305 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 224 2013-12-09 21:17:03,305 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 687, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:228} 2013-12-09 21:17:03,306 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:228 2013-12-09 21:17:03,306 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:228 2013-12-09 21:17:03,306 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 688, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:227, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:227, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:228, messageCount = 1, poisonCause = null} 2013-12-09 21:17:03,307 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:228 syncCount: 1 2013-12-09 21:17:03,307 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 689, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:228} 2013-12-09 21:17:03,307 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:228 syncCount: 2 2013-12-09 21:17:03,371 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 689} 2013-12-09 21:17:03,371 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 231, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:227, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153249, arrival = 0, brokerInTime = 1386620153251, brokerOutTime = 1386620214887, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 225} 2013-12-09 21:17:03,372 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 225 2013-12-09 21:17:03,373 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 690, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:229} 2013-12-09 21:17:03,373 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:229 2013-12-09 21:17:03,373 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:229 2013-12-09 21:17:03,374 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 691, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:228, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:228, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:229, messageCount = 1, poisonCause = null} 2013-12-09 21:17:03,375 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:229 syncCount: 1 2013-12-09 21:17:03,375 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 692, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:229} 2013-12-09 21:17:03,376 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:229 syncCount: 2 2013-12-09 21:17:03,428 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 692} 2013-12-09 21:17:03,429 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 232, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:228, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153307, arrival = 0, brokerInTime = 1386620153309, brokerOutTime = 1386620214887, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 226} 2013-12-09 21:17:03,430 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 226 2013-12-09 21:17:03,430 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 693, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:230} 2013-12-09 21:17:03,431 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:230 2013-12-09 21:17:03,431 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:230 2013-12-09 21:17:03,431 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 694, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:229, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:229, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:230, messageCount = 1, poisonCause = null} 2013-12-09 21:17:03,432 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:230 syncCount: 1 2013-12-09 21:17:03,432 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 695, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:230} 2013-12-09 21:17:03,433 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:230 syncCount: 2 2013-12-09 21:17:03,486 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 695} 2013-12-09 21:17:03,487 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 233, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:229, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153366, arrival = 0, brokerInTime = 1386620153367, brokerOutTime = 1386620214887, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 227} 2013-12-09 21:17:03,488 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 227 2013-12-09 21:17:03,488 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 696, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:231} 2013-12-09 21:17:03,489 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:231 2013-12-09 21:17:03,489 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:231 2013-12-09 21:17:03,489 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 697, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:230, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:230, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:231, messageCount = 1, poisonCause = null} 2013-12-09 21:17:03,490 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:231 syncCount: 1 2013-12-09 21:17:03,490 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 698, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:231} 2013-12-09 21:17:03,491 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:231 syncCount: 2 2013-12-09 21:17:03,544 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 698} 2013-12-09 21:17:03,545 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 234, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:230, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153424, arrival = 0, brokerInTime = 1386620153425, brokerOutTime = 1386620214887, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 228} 2013-12-09 21:17:03,546 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 228 2013-12-09 21:17:03,546 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 699, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:232} 2013-12-09 21:17:03,547 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:232 2013-12-09 21:17:03,547 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:232 2013-12-09 21:17:03,547 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 700, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:231, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:231, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:232, messageCount = 1, poisonCause = null} 2013-12-09 21:17:03,548 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:232 syncCount: 1 2013-12-09 21:17:03,549 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 701, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:232} 2013-12-09 21:17:03,549 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:232 syncCount: 2 2013-12-09 21:17:03,603 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 701} 2013-12-09 21:17:03,603 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 235, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:231, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153481, arrival = 0, brokerInTime = 1386620153483, brokerOutTime = 1386620214887, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 229} 2013-12-09 21:17:03,604 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 229 2013-12-09 21:17:03,605 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 702, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:233} 2013-12-09 21:17:03,605 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:233 2013-12-09 21:17:03,605 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:233 2013-12-09 21:17:03,606 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 703, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:232, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:232, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:233, messageCount = 1, poisonCause = null} 2013-12-09 21:17:03,606 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:233 syncCount: 1 2013-12-09 21:17:03,607 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 704, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:233} 2013-12-09 21:17:03,607 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:233 syncCount: 2 2013-12-09 21:17:03,678 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 704} 2013-12-09 21:17:03,679 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 236, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:232, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153540, arrival = 0, brokerInTime = 1386620153541, brokerOutTime = 1386620214887, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 230} 2013-12-09 21:17:03,680 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 230 2013-12-09 21:17:03,680 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 705, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:234} 2013-12-09 21:17:03,680 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:234 2013-12-09 21:17:03,681 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:234 2013-12-09 21:17:03,681 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 706, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:233, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:233, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:234, messageCount = 1, poisonCause = null} 2013-12-09 21:17:03,682 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:234 syncCount: 1 2013-12-09 21:17:03,682 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 707, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:234} 2013-12-09 21:17:03,683 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:234 syncCount: 2 2013-12-09 21:17:03,761 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 707} 2013-12-09 21:17:03,762 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 237, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:233, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153598, arrival = 0, brokerInTime = 1386620153599, brokerOutTime = 1386620214887, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 231} 2013-12-09 21:17:03,763 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 231 2013-12-09 21:17:03,763 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 708, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:235} 2013-12-09 21:17:03,764 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:235 2013-12-09 21:17:03,764 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:235 2013-12-09 21:17:03,764 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 709, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:234, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:234, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:235, messageCount = 1, poisonCause = null} 2013-12-09 21:17:03,765 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:235 syncCount: 1 2013-12-09 21:17:03,765 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 710, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:235} 2013-12-09 21:17:03,766 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:235 syncCount: 2 2013-12-09 21:17:03,858 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 710} 2013-12-09 21:17:03,859 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 238, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:234, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153655, arrival = 0, brokerInTime = 1386620153657, brokerOutTime = 1386620214888, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 232} 2013-12-09 21:17:03,860 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 232 2013-12-09 21:17:03,860 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 711, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:236} 2013-12-09 21:17:03,861 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:236 2013-12-09 21:17:03,861 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:236 2013-12-09 21:17:03,861 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 712, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:235, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:235, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:236, messageCount = 1, poisonCause = null} 2013-12-09 21:17:03,862 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:236 syncCount: 1 2013-12-09 21:17:03,862 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 713, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:236} 2013-12-09 21:17:03,863 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:236 syncCount: 2 2013-12-09 21:17:04,191 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 713} 2013-12-09 21:17:04,191 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 239, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:235, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153713, arrival = 0, brokerInTime = 1386620153714, brokerOutTime = 1386620214888, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 233} 2013-12-09 21:17:04,193 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 233 2013-12-09 21:17:04,193 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 714, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:237} 2013-12-09 21:17:04,193 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:237 2013-12-09 21:17:04,194 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:237 2013-12-09 21:17:04,194 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 715, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:236, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:236, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:237, messageCount = 1, poisonCause = null} 2013-12-09 21:17:04,195 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:237 syncCount: 1 2013-12-09 21:17:04,195 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 716, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:237} 2013-12-09 21:17:04,195 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:237 syncCount: 2 2013-12-09 21:17:04,519 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 716} 2013-12-09 21:17:04,520 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 240, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:236, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153763, arrival = 0, brokerInTime = 1386620153764, brokerOutTime = 1386620214888, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 234} 2013-12-09 21:17:04,521 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 234 2013-12-09 21:17:04,522 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 717, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:238} 2013-12-09 21:17:04,522 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:238 2013-12-09 21:17:04,522 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:238 2013-12-09 21:17:04,523 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 718, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:237, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:237, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:238, messageCount = 1, poisonCause = null} 2013-12-09 21:17:04,523 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:238 syncCount: 1 2013-12-09 21:17:04,524 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 719, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:238} 2013-12-09 21:17:04,524 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:238 syncCount: 2 2013-12-09 21:17:04,882 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 719} 2013-12-09 21:17:04,883 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 241, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:237, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153821, arrival = 0, brokerInTime = 1386620153823, brokerOutTime = 1386620214888, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 235} 2013-12-09 21:17:04,884 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 235 2013-12-09 21:17:04,885 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 720, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:239} 2013-12-09 21:17:04,885 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:239 2013-12-09 21:17:04,885 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:239 2013-12-09 21:17:04,886 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 721, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:238, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:238, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:239, messageCount = 1, poisonCause = null} 2013-12-09 21:17:04,886 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:239 syncCount: 1 2013-12-09 21:17:04,887 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 722, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:239} 2013-12-09 21:17:04,887 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:239 syncCount: 2 2013-12-09 21:17:05,052 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 722} 2013-12-09 21:17:05,052 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 242, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:238, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153879, arrival = 0, brokerInTime = 1386620153880, brokerOutTime = 1386620214888, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 236} 2013-12-09 21:17:05,054 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 236 2013-12-09 21:17:05,054 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 723, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:240} 2013-12-09 21:17:05,054 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:240 2013-12-09 21:17:05,054 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:240 2013-12-09 21:17:05,055 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 724, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:239, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:239, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:240, messageCount = 1, poisonCause = null} 2013-12-09 21:17:05,055 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:240 syncCount: 1 2013-12-09 21:17:05,056 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 725, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:240} 2013-12-09 21:17:05,056 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:240 syncCount: 2 2013-12-09 21:17:05,140 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 725} 2013-12-09 21:17:05,141 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 243, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:239, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620153980, arrival = 0, brokerInTime = 1386620153981, brokerOutTime = 1386620214888, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 237} 2013-12-09 21:17:05,142 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 237 2013-12-09 21:17:05,142 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 726, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:241} 2013-12-09 21:17:05,142 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:241 2013-12-09 21:17:05,143 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:241 2013-12-09 21:17:05,143 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 727, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:240, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:240, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:241, messageCount = 1, poisonCause = null} 2013-12-09 21:17:05,144 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:241 syncCount: 1 2013-12-09 21:17:05,144 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 728, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:241} 2013-12-09 21:17:05,144 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:241 syncCount: 2 2013-12-09 21:17:05,230 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 728} 2013-12-09 21:17:05,230 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 244, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:240, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154087, arrival = 0, brokerInTime = 1386620154089, brokerOutTime = 1386620214888, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 238} 2013-12-09 21:17:05,232 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 238 2013-12-09 21:17:05,232 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 729, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:242} 2013-12-09 21:17:05,232 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:242 2013-12-09 21:17:05,233 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:242 2013-12-09 21:17:05,233 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 730, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:241, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:241, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:242, messageCount = 1, poisonCause = null} 2013-12-09 21:17:05,234 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:242 syncCount: 1 2013-12-09 21:17:05,235 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 731, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:242} 2013-12-09 21:17:05,235 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:242 syncCount: 2 2013-12-09 21:17:05,322 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 731} 2013-12-09 21:17:05,322 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 245, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:241, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154154, arrival = 0, brokerInTime = 1386620154155, brokerOutTime = 1386620214888, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 239} 2013-12-09 21:17:05,323 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 239 2013-12-09 21:17:05,324 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 732, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:243} 2013-12-09 21:17:05,324 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:243 2013-12-09 21:17:05,324 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:243 2013-12-09 21:17:05,324 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 733, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:242, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:242, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:243, messageCount = 1, poisonCause = null} 2013-12-09 21:17:05,325 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:243 syncCount: 1 2013-12-09 21:17:05,325 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 734, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:243} 2013-12-09 21:17:05,326 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:243 syncCount: 2 2013-12-09 21:17:05,412 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 734} 2013-12-09 21:17:05,413 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 246, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:242, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154212, arrival = 0, brokerInTime = 1386620154213, brokerOutTime = 1386620214888, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 240} 2013-12-09 21:17:05,414 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 240 2013-12-09 21:17:05,414 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 735, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:244} 2013-12-09 21:17:05,415 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:244 2013-12-09 21:17:05,415 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:244 2013-12-09 21:17:05,415 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 736, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:243, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:243, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:244, messageCount = 1, poisonCause = null} 2013-12-09 21:17:05,417 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:244 syncCount: 1 2013-12-09 21:17:05,417 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 737, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:244} 2013-12-09 21:17:05,418 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:244 syncCount: 2 2013-12-09 21:17:05,512 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 737} 2013-12-09 21:17:05,512 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 247, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:243, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154269, arrival = 0, brokerInTime = 1386620154271, brokerOutTime = 1386620214888, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 241} 2013-12-09 21:17:05,514 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 241 2013-12-09 21:17:05,514 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 738, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:245} 2013-12-09 21:17:05,515 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:245 2013-12-09 21:17:05,515 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:245 2013-12-09 21:17:05,515 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 739, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:244, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:244, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:245, messageCount = 1, poisonCause = null} 2013-12-09 21:17:05,516 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:245 syncCount: 1 2013-12-09 21:17:05,517 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 740, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:245} 2013-12-09 21:17:05,517 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:245 syncCount: 2 2013-12-09 21:17:05,609 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 740} 2013-12-09 21:17:05,610 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 248, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:244, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154327, arrival = 0, brokerInTime = 1386620154329, brokerOutTime = 1386620214889, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 242} 2013-12-09 21:17:05,611 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 242 2013-12-09 21:17:05,611 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 741, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:246} 2013-12-09 21:17:05,612 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:246 2013-12-09 21:17:05,612 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:246 2013-12-09 21:17:05,612 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 742, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:245, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:245, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:246, messageCount = 1, poisonCause = null} 2013-12-09 21:17:05,613 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:246 syncCount: 1 2013-12-09 21:17:05,613 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 743, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:246} 2013-12-09 21:17:05,614 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:246 syncCount: 2 2013-12-09 21:17:05,695 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 743} 2013-12-09 21:17:05,695 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 249, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:245, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154386, arrival = 0, brokerInTime = 1386620154387, brokerOutTime = 1386620214889, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 243} 2013-12-09 21:17:05,696 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 243 2013-12-09 21:17:05,697 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 744, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:247} 2013-12-09 21:17:05,697 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:247 2013-12-09 21:17:05,697 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:247 2013-12-09 21:17:05,697 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 745, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:246, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:246, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:247, messageCount = 1, poisonCause = null} 2013-12-09 21:17:05,699 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:247 syncCount: 1 2013-12-09 21:17:05,699 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 746, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:247} 2013-12-09 21:17:05,700 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:247 syncCount: 2 2013-12-09 21:17:05,794 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 746} 2013-12-09 21:17:05,795 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 250, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:246, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154443, arrival = 0, brokerInTime = 1386620154445, brokerOutTime = 1386620214889, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 244} 2013-12-09 21:17:05,796 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 244 2013-12-09 21:17:05,796 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 747, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:248} 2013-12-09 21:17:05,797 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:248 2013-12-09 21:17:05,797 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:248 2013-12-09 21:17:05,797 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 748, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:247, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:247, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:248, messageCount = 1, poisonCause = null} 2013-12-09 21:17:05,798 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:248 syncCount: 1 2013-12-09 21:17:05,798 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 749, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:248} 2013-12-09 21:17:05,799 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:248 syncCount: 2 2013-12-09 21:17:05,886 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 749} 2013-12-09 21:17:05,886 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 251, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:247, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154502, arrival = 0, brokerInTime = 1386620154503, brokerOutTime = 1386620214889, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 245} 2013-12-09 21:17:05,888 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 245 2013-12-09 21:17:05,888 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 750, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:249} 2013-12-09 21:17:05,892 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:249 2013-12-09 21:17:05,892 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:249 2013-12-09 21:17:05,892 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 751, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:248, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:248, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:249, messageCount = 1, poisonCause = null} 2013-12-09 21:17:05,893 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:249 syncCount: 1 2013-12-09 21:17:05,893 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 752, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:249} 2013-12-09 21:17:05,894 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:249 syncCount: 2 2013-12-09 21:17:05,985 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 752} 2013-12-09 21:17:05,986 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 252, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:248, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154559, arrival = 0, brokerInTime = 1386620154561, brokerOutTime = 1386620214889, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 246} 2013-12-09 21:17:05,988 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 246 2013-12-09 21:17:05,988 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 753, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:250} 2013-12-09 21:17:05,988 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:250 2013-12-09 21:17:05,988 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:250 2013-12-09 21:17:05,989 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 754, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:249, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:249, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:250, messageCount = 1, poisonCause = null} 2013-12-09 21:17:05,989 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:250 syncCount: 1 2013-12-09 21:17:05,990 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 755, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:250} 2013-12-09 21:17:05,990 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:250 syncCount: 2 2013-12-09 21:17:06,085 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 755} 2013-12-09 21:17:06,085 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 253, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:249, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154618, arrival = 0, brokerInTime = 1386620154619, brokerOutTime = 1386620214889, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 247} 2013-12-09 21:17:06,086 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 247 2013-12-09 21:17:06,087 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 756, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:251} 2013-12-09 21:17:06,087 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:251 2013-12-09 21:17:06,087 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:251 2013-12-09 21:17:06,088 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 757, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:250, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:250, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:251, messageCount = 1, poisonCause = null} 2013-12-09 21:17:06,089 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:251 syncCount: 1 2013-12-09 21:17:06,089 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 758, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:251} 2013-12-09 21:17:06,089 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:251 syncCount: 2 2013-12-09 21:17:06,193 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 758} 2013-12-09 21:17:06,193 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 254, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:250, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154675, arrival = 0, brokerInTime = 1386620154677, brokerOutTime = 1386620214889, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 248} 2013-12-09 21:17:06,194 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 248 2013-12-09 21:17:06,195 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 759, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:252} 2013-12-09 21:17:06,195 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:252 2013-12-09 21:17:06,195 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:252 2013-12-09 21:17:06,196 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 760, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:251, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:251, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:252, messageCount = 1, poisonCause = null} 2013-12-09 21:17:06,196 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:252 syncCount: 1 2013-12-09 21:17:06,197 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 761, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:252} 2013-12-09 21:17:06,197 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:252 syncCount: 2 2013-12-09 21:17:06,286 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 761} 2013-12-09 21:17:06,287 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 255, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:251, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154734, arrival = 0, brokerInTime = 1386620154735, brokerOutTime = 1386620214890, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 249} 2013-12-09 21:17:06,288 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 249 2013-12-09 21:17:06,288 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 762, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:253} 2013-12-09 21:17:06,289 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:253 2013-12-09 21:17:06,289 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:253 2013-12-09 21:17:06,289 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 763, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:252, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:252, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:253, messageCount = 1, poisonCause = null} 2013-12-09 21:17:06,290 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:253 syncCount: 1 2013-12-09 21:17:06,290 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 764, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:253} 2013-12-09 21:17:06,291 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:253 syncCount: 2 2013-12-09 21:17:06,385 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 764} 2013-12-09 21:17:06,386 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 256, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:252, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154792, arrival = 0, brokerInTime = 1386620154793, brokerOutTime = 1386620214890, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 250} 2013-12-09 21:17:06,387 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 250 2013-12-09 21:17:06,387 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 765, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:254} 2013-12-09 21:17:06,388 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:254 2013-12-09 21:17:06,388 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:254 2013-12-09 21:17:06,388 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 766, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:253, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:253, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:254, messageCount = 1, poisonCause = null} 2013-12-09 21:17:06,389 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:254 syncCount: 1 2013-12-09 21:17:06,389 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 767, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:254} 2013-12-09 21:17:06,390 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:254 syncCount: 2 2013-12-09 21:17:06,454 [ Scheduled Task] DEBUG LeaseDatabaseLocker - coreActiveMQBroker1, lease keepAlive Query is UPDATE ACTIVEMQ_LOCK SET BROKER_NAME=?, TIME=? WHERE BROKER_NAME=? AND ID = 1 2013-12-09 21:17:06,485 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 767} 2013-12-09 21:17:06,485 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 257, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:253, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154850, arrival = 0, brokerInTime = 1386620154851, brokerOutTime = 1386620214890, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 251} 2013-12-09 21:17:06,486 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 251 2013-12-09 21:17:06,486 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 768, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:255} 2013-12-09 21:17:06,487 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:255 2013-12-09 21:17:06,487 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:255 2013-12-09 21:17:06,487 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 769, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:254, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:254, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:255, messageCount = 1, poisonCause = null} 2013-12-09 21:17:06,488 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:255 syncCount: 1 2013-12-09 21:17:06,488 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 770, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:255} 2013-12-09 21:17:06,489 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:255 syncCount: 2 2013-12-09 21:17:06,667 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 770} 2013-12-09 21:17:06,668 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 258, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:254, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154907, arrival = 0, brokerInTime = 1386620154909, brokerOutTime = 1386620214890, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 252} 2013-12-09 21:17:06,670 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 252 2013-12-09 21:17:06,670 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 771, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:256} 2013-12-09 21:17:06,670 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:256 2013-12-09 21:17:06,670 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:256 2013-12-09 21:17:06,671 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 772, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:255, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:255, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:256, messageCount = 1, poisonCause = null} 2013-12-09 21:17:06,672 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:256 syncCount: 1 2013-12-09 21:17:06,672 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 773, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:256} 2013-12-09 21:17:06,672 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:256 syncCount: 2 2013-12-09 21:17:06,759 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 773} 2013-12-09 21:17:06,759 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 259, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:255, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620154965, arrival = 0, brokerInTime = 1386620154967, brokerOutTime = 1386620214890, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 253} 2013-12-09 21:17:06,760 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 253 2013-12-09 21:17:06,761 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 774, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:257} 2013-12-09 21:17:06,761 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:257 2013-12-09 21:17:06,761 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:257 2013-12-09 21:17:06,762 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 775, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:256, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:256, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:257, messageCount = 1, poisonCause = null} 2013-12-09 21:17:06,762 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:257 syncCount: 1 2013-12-09 21:17:06,763 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 776, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:257} 2013-12-09 21:17:06,763 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:257 syncCount: 2 2013-12-09 21:17:06,858 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 776} 2013-12-09 21:17:06,859 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 260, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:256, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155024, arrival = 0, brokerInTime = 1386620155025, brokerOutTime = 1386620214890, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 254} 2013-12-09 21:17:06,860 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 254 2013-12-09 21:17:06,860 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 777, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:258} 2013-12-09 21:17:06,861 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:258 2013-12-09 21:17:06,861 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:258 2013-12-09 21:17:06,861 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 778, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:257, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:257, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:258, messageCount = 1, poisonCause = null} 2013-12-09 21:17:06,862 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:258 syncCount: 1 2013-12-09 21:17:06,862 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 779, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:258} 2013-12-09 21:17:06,863 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:258 syncCount: 2 2013-12-09 21:17:06,946 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 779} 2013-12-09 21:17:06,947 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 261, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:257, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155081, arrival = 0, brokerInTime = 1386620155083, brokerOutTime = 1386620214891, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 255} 2013-12-09 21:17:06,949 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 255 2013-12-09 21:17:06,949 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 780, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:259} 2013-12-09 21:17:06,949 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:259 2013-12-09 21:17:06,950 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:259 2013-12-09 21:17:06,950 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 781, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:258, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:258, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:259, messageCount = 1, poisonCause = null} 2013-12-09 21:17:06,951 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:259 syncCount: 1 2013-12-09 21:17:06,952 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 782, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:259} 2013-12-09 21:17:06,952 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:259 syncCount: 2 2013-12-09 21:17:07,033 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 782} 2013-12-09 21:17:07,033 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 262, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:258, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155140, arrival = 0, brokerInTime = 1386620155141, brokerOutTime = 1386620214891, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 256} 2013-12-09 21:17:07,036 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 256 2013-12-09 21:17:07,036 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 783, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:260} 2013-12-09 21:17:07,037 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:260 2013-12-09 21:17:07,037 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:260 2013-12-09 21:17:07,038 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 784, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:259, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:259, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:260, messageCount = 1, poisonCause = null} 2013-12-09 21:17:07,039 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:260 syncCount: 1 2013-12-09 21:17:07,039 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 785, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:260} 2013-12-09 21:17:07,040 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:260 syncCount: 2 2013-12-09 21:17:07,124 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 785} 2013-12-09 21:17:07,125 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 263, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:259, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155197, arrival = 0, brokerInTime = 1386620155198, brokerOutTime = 1386620214891, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 257} 2013-12-09 21:17:07,126 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 257 2013-12-09 21:17:07,127 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 786, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:261} 2013-12-09 21:17:07,128 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:261 2013-12-09 21:17:07,128 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:261 2013-12-09 21:17:07,128 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 787, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:260, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:260, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:261, messageCount = 1, poisonCause = null} 2013-12-09 21:17:07,130 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:261 syncCount: 1 2013-12-09 21:17:07,130 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 788, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:261} 2013-12-09 21:17:07,131 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:261 syncCount: 2 2013-12-09 21:17:07,224 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 788} 2013-12-09 21:17:07,224 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 264, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:260, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155255, arrival = 0, brokerInTime = 1386620155256, brokerOutTime = 1386620214891, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 258} 2013-12-09 21:17:07,226 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 258 2013-12-09 21:17:07,226 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 789, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:262} 2013-12-09 21:17:07,227 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:262 2013-12-09 21:17:07,227 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:262 2013-12-09 21:17:07,227 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 790, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:261, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:261, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:262, messageCount = 1, poisonCause = null} 2013-12-09 21:17:07,228 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:262 syncCount: 1 2013-12-09 21:17:07,228 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 791, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:262} 2013-12-09 21:17:07,229 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:262 syncCount: 2 2013-12-09 21:17:07,317 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 791} 2013-12-09 21:17:07,318 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 265, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:261, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155313, arrival = 0, brokerInTime = 1386620155314, brokerOutTime = 1386620214892, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 259} 2013-12-09 21:17:07,319 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 259 2013-12-09 21:17:07,320 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 792, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:263} 2013-12-09 21:17:07,320 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:263 2013-12-09 21:17:07,320 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:263 2013-12-09 21:17:07,321 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 793, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:262, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:262, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:263, messageCount = 1, poisonCause = null} 2013-12-09 21:17:07,321 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:263 syncCount: 1 2013-12-09 21:17:07,322 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 794, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:263} 2013-12-09 21:17:07,322 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:263 syncCount: 2 2013-12-09 21:17:07,400 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 794} 2013-12-09 21:17:07,400 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 266, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:262, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155371, arrival = 0, brokerInTime = 1386620155372, brokerOutTime = 1386620214892, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 260} 2013-12-09 21:17:07,402 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 260 2013-12-09 21:17:07,402 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 795, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:264} 2013-12-09 21:17:07,403 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:264 2013-12-09 21:17:07,403 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:264 2013-12-09 21:17:07,403 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 796, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:263, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:263, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:264, messageCount = 1, poisonCause = null} 2013-12-09 21:17:07,404 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:264 syncCount: 1 2013-12-09 21:17:07,404 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 797, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:264} 2013-12-09 21:17:07,405 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:264 syncCount: 2 2013-12-09 21:17:07,491 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 797} 2013-12-09 21:17:07,491 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 267, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:263, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155429, arrival = 0, brokerInTime = 1386620155430, brokerOutTime = 1386620214892, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 261} 2013-12-09 21:17:07,492 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 261 2013-12-09 21:17:07,493 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 798, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:265} 2013-12-09 21:17:07,493 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:265 2013-12-09 21:17:07,493 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:265 2013-12-09 21:17:07,494 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 799, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:264, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:264, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:265, messageCount = 1, poisonCause = null} 2013-12-09 21:17:07,495 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:265 syncCount: 1 2013-12-09 21:17:07,495 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 800, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:265} 2013-12-09 21:17:07,495 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:265 syncCount: 2 2013-12-09 21:17:07,581 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 800} 2013-12-09 21:17:07,582 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 268, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:264, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155487, arrival = 0, brokerInTime = 1386620155489, brokerOutTime = 1386620214892, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 262} 2013-12-09 21:17:07,584 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 262 2013-12-09 21:17:07,585 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 801, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:266} 2013-12-09 21:17:07,585 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:266 2013-12-09 21:17:07,586 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:266 2013-12-09 21:17:07,586 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 802, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:265, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:265, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:266, messageCount = 1, poisonCause = null} 2013-12-09 21:17:07,587 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:266 syncCount: 1 2013-12-09 21:17:07,587 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 803, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:266} 2013-12-09 21:17:07,588 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:266 syncCount: 2 2013-12-09 21:17:07,666 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 803} 2013-12-09 21:17:07,666 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 269, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:265, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155545, arrival = 0, brokerInTime = 1386620155546, brokerOutTime = 1386620214892, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 263} 2013-12-09 21:17:07,668 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 263 2013-12-09 21:17:07,669 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 804, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:267} 2013-12-09 21:17:07,670 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:267 2013-12-09 21:17:07,670 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:267 2013-12-09 21:17:07,670 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 805, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:266, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:266, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:267, messageCount = 1, poisonCause = null} 2013-12-09 21:17:07,671 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:267 syncCount: 1 2013-12-09 21:17:07,672 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 806, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:267} 2013-12-09 21:17:07,672 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:267 syncCount: 2 2013-12-09 21:17:07,757 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 806} 2013-12-09 21:17:07,757 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 270, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:266, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155595, arrival = 0, brokerInTime = 1386620155596, brokerOutTime = 1386620214893, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 264} 2013-12-09 21:17:07,758 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 264 2013-12-09 21:17:07,759 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 807, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:268} 2013-12-09 21:17:07,759 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:268 2013-12-09 21:17:07,759 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:268 2013-12-09 21:17:07,760 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 808, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:267, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:267, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:268, messageCount = 1, poisonCause = null} 2013-12-09 21:17:07,761 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:268 syncCount: 1 2013-12-09 21:17:07,761 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 809, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:268} 2013-12-09 21:17:07,761 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:268 syncCount: 2 2013-12-09 21:17:07,848 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 809} 2013-12-09 21:17:07,849 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 271, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:267, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155653, arrival = 0, brokerInTime = 1386620155654, brokerOutTime = 1386620214893, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 265} 2013-12-09 21:17:07,850 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 265 2013-12-09 21:17:07,850 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 810, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:269} 2013-12-09 21:17:07,851 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:269 2013-12-09 21:17:07,851 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:269 2013-12-09 21:17:07,852 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 811, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:268, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:268, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:269, messageCount = 1, poisonCause = null} 2013-12-09 21:17:07,852 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:269 syncCount: 1 2013-12-09 21:17:07,853 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 812, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:269} 2013-12-09 21:17:07,853 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:269 syncCount: 2 2013-12-09 21:17:07,939 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 812} 2013-12-09 21:17:07,940 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 272, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:268, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155703, arrival = 0, brokerInTime = 1386620155705, brokerOutTime = 1386620214893, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 266} 2013-12-09 21:17:07,941 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 266 2013-12-09 21:17:07,941 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 813, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:270} 2013-12-09 21:17:07,942 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:270 2013-12-09 21:17:07,942 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:270 2013-12-09 21:17:07,943 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 814, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:269, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:269, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:270, messageCount = 1, poisonCause = null} 2013-12-09 21:17:07,944 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:270 syncCount: 1 2013-12-09 21:17:07,944 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 815, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:270} 2013-12-09 21:17:07,945 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:270 syncCount: 2 2013-12-09 21:17:08,031 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 815} 2013-12-09 21:17:08,031 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 273, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:269, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155761, arrival = 0, brokerInTime = 1386620155762, brokerOutTime = 1386620214893, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 267} 2013-12-09 21:17:08,032 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 267 2013-12-09 21:17:08,033 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 816, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:271} 2013-12-09 21:17:08,033 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:271 2013-12-09 21:17:08,034 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:271 2013-12-09 21:17:08,034 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 817, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:270, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:270, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:271, messageCount = 1, poisonCause = null} 2013-12-09 21:17:08,035 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:271 syncCount: 1 2013-12-09 21:17:08,035 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 818, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:271} 2013-12-09 21:17:08,035 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:271 syncCount: 2 2013-12-09 21:17:08,130 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 818} 2013-12-09 21:17:08,131 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 274, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:270, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155819, arrival = 0, brokerInTime = 1386620155820, brokerOutTime = 1386620214893, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 268} 2013-12-09 21:17:08,132 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 268 2013-12-09 21:17:08,132 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 819, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:272} 2013-12-09 21:17:08,133 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:272 2013-12-09 21:17:08,133 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:272 2013-12-09 21:17:08,133 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 820, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:271, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:271, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:272, messageCount = 1, poisonCause = null} 2013-12-09 21:17:08,134 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:272 syncCount: 1 2013-12-09 21:17:08,134 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 821, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:272} 2013-12-09 21:17:08,135 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:272 syncCount: 2 2013-12-09 21:17:08,230 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 821} 2013-12-09 21:17:08,230 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 275, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:271, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155877, arrival = 0, brokerInTime = 1386620155878, brokerOutTime = 1386620214893, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 269} 2013-12-09 21:17:08,232 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 269 2013-12-09 21:17:08,233 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 822, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:273} 2013-12-09 21:17:08,234 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:273 2013-12-09 21:17:08,234 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:273 2013-12-09 21:17:08,235 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 823, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:272, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:272, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:273, messageCount = 1, poisonCause = null} 2013-12-09 21:17:08,236 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:273 syncCount: 1 2013-12-09 21:17:08,236 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 824, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:273} 2013-12-09 21:17:08,237 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:273 syncCount: 2 2013-12-09 21:17:08,329 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 824} 2013-12-09 21:17:08,330 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 276, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:272, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620155935, arrival = 0, brokerInTime = 1386620155936, brokerOutTime = 1386620214894, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 270} 2013-12-09 21:17:08,331 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 270 2013-12-09 21:17:08,331 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 825, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:274} 2013-12-09 21:17:08,332 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:274 2013-12-09 21:17:08,332 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:274 2013-12-09 21:17:08,332 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 826, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:273, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:273, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:274, messageCount = 1, poisonCause = null} 2013-12-09 21:17:08,333 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:274 syncCount: 1 2013-12-09 21:17:08,333 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 827, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:274} 2013-12-09 21:17:08,334 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:274 syncCount: 2 2013-12-09 21:17:08,423 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 827} 2013-12-09 21:17:08,423 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 277, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:273, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156001, arrival = 0, brokerInTime = 1386620156003, brokerOutTime = 1386620214894, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 271} 2013-12-09 21:17:08,425 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 271 2013-12-09 21:17:08,425 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 828, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:275} 2013-12-09 21:17:08,425 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:275 2013-12-09 21:17:08,425 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:275 2013-12-09 21:17:08,426 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 829, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:274, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:274, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:275, messageCount = 1, poisonCause = null} 2013-12-09 21:17:08,426 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:275 syncCount: 1 2013-12-09 21:17:08,427 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 830, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:275} 2013-12-09 21:17:08,427 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:275 syncCount: 2 2013-12-09 21:17:08,505 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 830} 2013-12-09 21:17:08,506 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 278, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:274, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156069, arrival = 0, brokerInTime = 1386620156070, brokerOutTime = 1386620214894, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 272} 2013-12-09 21:17:08,508 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 272 2013-12-09 21:17:08,508 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 831, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:276} 2013-12-09 21:17:08,509 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:276 2013-12-09 21:17:08,509 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:276 2013-12-09 21:17:08,509 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 832, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:275, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:275, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:276, messageCount = 1, poisonCause = null} 2013-12-09 21:17:08,510 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:276 syncCount: 1 2013-12-09 21:17:08,510 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 833, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:276} 2013-12-09 21:17:08,511 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:276 syncCount: 2 2013-12-09 21:17:08,777 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 833} 2013-12-09 21:17:08,777 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 279, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:275, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156127, arrival = 0, brokerInTime = 1386620156128, brokerOutTime = 1386620214894, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 273} 2013-12-09 21:17:08,779 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 273 2013-12-09 21:17:08,779 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 834, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:277} 2013-12-09 21:17:08,779 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:277 2013-12-09 21:17:08,780 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:277 2013-12-09 21:17:08,780 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 835, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:276, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:276, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:277, messageCount = 1, poisonCause = null} 2013-12-09 21:17:08,781 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:277 syncCount: 1 2013-12-09 21:17:08,781 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 836, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:277} 2013-12-09 21:17:08,782 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:277 syncCount: 2 2013-12-09 21:17:09,273 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 836} 2013-12-09 21:17:09,273 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 280, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:276, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156185, arrival = 0, brokerInTime = 1386620156186, brokerOutTime = 1386620214894, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 274} 2013-12-09 21:17:09,274 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 274 2013-12-09 21:17:09,275 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 837, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:278} 2013-12-09 21:17:09,275 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:278 2013-12-09 21:17:09,275 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:278 2013-12-09 21:17:09,275 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 838, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:277, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:277, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:278, messageCount = 1, poisonCause = null} 2013-12-09 21:17:09,276 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:278 syncCount: 1 2013-12-09 21:17:09,276 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 839, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:278} 2013-12-09 21:17:09,277 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:278 syncCount: 2 2013-12-09 21:17:09,372 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 839} 2013-12-09 21:17:09,372 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 281, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:277, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156243, arrival = 0, brokerInTime = 1386620156244, brokerOutTime = 1386620214894, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 275} 2013-12-09 21:17:09,373 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 275 2013-12-09 21:17:09,373 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 840, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:279} 2013-12-09 21:17:09,374 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:279 2013-12-09 21:17:09,374 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:279 2013-12-09 21:17:09,374 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 841, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:278, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:278, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:279, messageCount = 1, poisonCause = null} 2013-12-09 21:17:09,375 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:279 syncCount: 1 2013-12-09 21:17:09,375 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 842, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:279} 2013-12-09 21:17:09,376 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:279 syncCount: 2 2013-12-09 21:17:09,462 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 842} 2013-12-09 21:17:09,463 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 282, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:278, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156301, arrival = 0, brokerInTime = 1386620156303, brokerOutTime = 1386620214895, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 276} 2013-12-09 21:17:09,464 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 276 2013-12-09 21:17:09,464 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 843, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:280} 2013-12-09 21:17:09,464 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:280 2013-12-09 21:17:09,465 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:280 2013-12-09 21:17:09,465 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 844, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:279, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:279, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:280, messageCount = 1, poisonCause = null} 2013-12-09 21:17:09,466 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:280 syncCount: 1 2013-12-09 21:17:09,466 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 845, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:280} 2013-12-09 21:17:09,467 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:280 syncCount: 2 2013-12-09 21:17:09,564 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 845} 2013-12-09 21:17:09,565 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 283, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:279, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156358, arrival = 0, brokerInTime = 1386620156360, brokerOutTime = 1386620214895, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 277} 2013-12-09 21:17:09,567 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 277 2013-12-09 21:17:09,567 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 846, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:281} 2013-12-09 21:17:09,568 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:281 2013-12-09 21:17:09,568 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:281 2013-12-09 21:17:09,568 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 847, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:280, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:280, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:281, messageCount = 1, poisonCause = null} 2013-12-09 21:17:09,569 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:281 syncCount: 1 2013-12-09 21:17:09,569 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 848, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:281} 2013-12-09 21:17:09,570 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:281 syncCount: 2 2013-12-09 21:17:09,664 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 848} 2013-12-09 21:17:09,666 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 284, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:280, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156408, arrival = 0, brokerInTime = 1386620156409, brokerOutTime = 1386620214895, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 278} 2013-12-09 21:17:09,668 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 278 2013-12-09 21:17:09,668 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 849, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:282} 2013-12-09 21:17:09,669 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:282 2013-12-09 21:17:09,669 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:282 2013-12-09 21:17:09,670 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 850, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:281, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:281, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:282, messageCount = 1, poisonCause = null} 2013-12-09 21:17:09,670 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:282 syncCount: 1 2013-12-09 21:17:09,671 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 851, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:282} 2013-12-09 21:17:09,671 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:282 syncCount: 2 2013-12-09 21:17:09,755 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 851} 2013-12-09 21:17:09,756 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 285, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:281, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156458, arrival = 0, brokerInTime = 1386620156459, brokerOutTime = 1386620214895, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 279} 2013-12-09 21:17:09,757 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 279 2013-12-09 21:17:09,757 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 852, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:283} 2013-12-09 21:17:09,758 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:283 2013-12-09 21:17:09,758 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:283 2013-12-09 21:17:09,758 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 853, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:282, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:282, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:283, messageCount = 1, poisonCause = null} 2013-12-09 21:17:09,759 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:283 syncCount: 1 2013-12-09 21:17:09,759 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 854, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:283} 2013-12-09 21:17:09,760 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:283 syncCount: 2 2013-12-09 21:17:09,855 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 854} 2013-12-09 21:17:09,856 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 286, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:282, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156557, arrival = 0, brokerInTime = 1386620156559, brokerOutTime = 1386620214895, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 280} 2013-12-09 21:17:09,857 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 280 2013-12-09 21:17:09,857 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 855, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:284} 2013-12-09 21:17:09,858 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:284 2013-12-09 21:17:09,858 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:284 2013-12-09 21:17:09,859 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 856, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:283, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:283, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:284, messageCount = 1, poisonCause = null} 2013-12-09 21:17:09,860 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:284 syncCount: 1 2013-12-09 21:17:09,860 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 857, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:284} 2013-12-09 21:17:09,861 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:284 syncCount: 2 2013-12-09 21:17:09,955 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 857} 2013-12-09 21:17:09,956 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 287, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:283, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156615, arrival = 0, brokerInTime = 1386620156616, brokerOutTime = 1386620214895, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 281} 2013-12-09 21:17:09,958 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 281 2013-12-09 21:17:09,959 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 858, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:285} 2013-12-09 21:17:09,959 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:285 2013-12-09 21:17:09,960 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:285 2013-12-09 21:17:09,960 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 859, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:284, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:284, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:285, messageCount = 1, poisonCause = null} 2013-12-09 21:17:09,962 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:285 syncCount: 1 2013-12-09 21:17:09,962 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 860, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:285} 2013-12-09 21:17:09,963 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:285 syncCount: 2 2013-12-09 21:17:10,049 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 860} 2013-12-09 21:17:10,050 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 288, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:284, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156673, arrival = 0, brokerInTime = 1386620156675, brokerOutTime = 1386620214896, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 282} 2013-12-09 21:17:10,052 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 282 2013-12-09 21:17:10,052 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 861, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:286} 2013-12-09 21:17:10,053 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:286 2013-12-09 21:17:10,053 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:286 2013-12-09 21:17:10,054 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 862, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:285, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:285, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:286, messageCount = 1, poisonCause = null} 2013-12-09 21:17:10,054 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:286 syncCount: 1 2013-12-09 21:17:10,055 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 863, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:286} 2013-12-09 21:17:10,055 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:286 syncCount: 2 2013-12-09 21:17:10,138 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 863} 2013-12-09 21:17:10,139 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 289, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:285, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156723, arrival = 0, brokerInTime = 1386620156725, brokerOutTime = 1386620214896, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 283} 2013-12-09 21:17:10,140 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 283 2013-12-09 21:17:10,141 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 864, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:287} 2013-12-09 21:17:10,141 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:287 2013-12-09 21:17:10,141 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:287 2013-12-09 21:17:10,142 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 865, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:286, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:286, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:287, messageCount = 1, poisonCause = null} 2013-12-09 21:17:10,143 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:287 syncCount: 1 2013-12-09 21:17:10,143 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 866, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:287} 2013-12-09 21:17:10,144 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:287 syncCount: 2 2013-12-09 21:17:10,231 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 866} 2013-12-09 21:17:10,231 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 290, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:286, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156781, arrival = 0, brokerInTime = 1386620156782, brokerOutTime = 1386620214896, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 284} 2013-12-09 21:17:10,232 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 284 2013-12-09 21:17:10,233 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 867, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:288} 2013-12-09 21:17:10,233 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:288 2013-12-09 21:17:10,233 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:288 2013-12-09 21:17:10,234 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 868, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:287, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:287, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:288, messageCount = 1, poisonCause = null} 2013-12-09 21:17:10,234 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:288 syncCount: 1 2013-12-09 21:17:10,235 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 869, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:288} 2013-12-09 21:17:10,235 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:288 syncCount: 2 2013-12-09 21:17:10,320 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 869} 2013-12-09 21:17:10,321 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 291, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:287, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156839, arrival = 0, brokerInTime = 1386620156840, brokerOutTime = 1386620214896, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 285} 2013-12-09 21:17:10,322 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 285 2013-12-09 21:17:10,323 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 870, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:289} 2013-12-09 21:17:10,323 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:289 2013-12-09 21:17:10,323 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:289 2013-12-09 21:17:10,324 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 871, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:288, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:288, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:289, messageCount = 1, poisonCause = null} 2013-12-09 21:17:10,324 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:289 syncCount: 1 2013-12-09 21:17:10,325 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 872, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:289} 2013-12-09 21:17:10,325 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:289 syncCount: 2 2013-12-09 21:17:10,411 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 872} 2013-12-09 21:17:10,412 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 292, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:288, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156897, arrival = 0, brokerInTime = 1386620156899, brokerOutTime = 1386620214896, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 286} 2013-12-09 21:17:10,413 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 286 2013-12-09 21:17:10,413 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 873, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:290} 2013-12-09 21:17:10,414 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:290 2013-12-09 21:17:10,414 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:290 2013-12-09 21:17:10,414 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 874, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:289, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:289, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:290, messageCount = 1, poisonCause = null} 2013-12-09 21:17:10,415 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:290 syncCount: 1 2013-12-09 21:17:10,416 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 875, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:290} 2013-12-09 21:17:10,416 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:290 syncCount: 2 2013-12-09 21:17:10,511 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 875} 2013-12-09 21:17:10,511 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 293, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:289, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620156955, arrival = 0, brokerInTime = 1386620156958, brokerOutTime = 1386620214896, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 287} 2013-12-09 21:17:10,513 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 287 2013-12-09 21:17:10,513 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 876, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:291} 2013-12-09 21:17:10,513 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:291 2013-12-09 21:17:10,514 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:291 2013-12-09 21:17:10,514 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 877, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:290, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:290, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:291, messageCount = 1, poisonCause = null} 2013-12-09 21:17:10,515 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:291 syncCount: 1 2013-12-09 21:17:10,515 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 878, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:291} 2013-12-09 21:17:10,516 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:291 syncCount: 2 2013-12-09 21:17:10,611 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 878} 2013-12-09 21:17:10,611 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 294, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:290, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157013, arrival = 0, brokerInTime = 1386620157014, brokerOutTime = 1386620214897, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 288} 2013-12-09 21:17:10,612 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 288 2013-12-09 21:17:10,613 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 879, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:292} 2013-12-09 21:17:10,613 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:292 2013-12-09 21:17:10,613 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:292 2013-12-09 21:17:10,614 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 880, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:291, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:291, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:292, messageCount = 1, poisonCause = null} 2013-12-09 21:17:10,614 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:292 syncCount: 1 2013-12-09 21:17:10,615 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 881, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:292} 2013-12-09 21:17:10,615 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:292 syncCount: 2 2013-12-09 21:17:10,710 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 881} 2013-12-09 21:17:10,711 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 295, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:291, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157071, arrival = 0, brokerInTime = 1386620157072, brokerOutTime = 1386620214897, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 289} 2013-12-09 21:17:10,712 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 289 2013-12-09 21:17:10,712 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 882, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:293} 2013-12-09 21:17:10,712 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:293 2013-12-09 21:17:10,713 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:293 2013-12-09 21:17:10,713 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 883, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:292, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:292, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:293, messageCount = 1, poisonCause = null} 2013-12-09 21:17:10,714 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:293 syncCount: 1 2013-12-09 21:17:10,714 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 884, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:293} 2013-12-09 21:17:10,714 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:293 syncCount: 2 2013-12-09 21:17:10,800 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 884} 2013-12-09 21:17:10,800 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 296, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:292, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157129, arrival = 0, brokerInTime = 1386620157130, brokerOutTime = 1386620214897, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 290} 2013-12-09 21:17:10,802 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 290 2013-12-09 21:17:10,802 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 885, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:294} 2013-12-09 21:17:10,802 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:294 2013-12-09 21:17:10,803 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:294 2013-12-09 21:17:10,803 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 886, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:293, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:293, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:294, messageCount = 1, poisonCause = null} 2013-12-09 21:17:10,804 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:294 syncCount: 1 2013-12-09 21:17:10,804 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 887, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:294} 2013-12-09 21:17:10,804 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:294 syncCount: 2 2013-12-09 21:17:10,903 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 887} 2013-12-09 21:17:10,903 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 297, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:293, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157187, arrival = 0, brokerInTime = 1386620157189, brokerOutTime = 1386620214897, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 291} 2013-12-09 21:17:10,905 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 291 2013-12-09 21:17:10,905 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 888, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:295} 2013-12-09 21:17:10,905 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:295 2013-12-09 21:17:10,905 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:295 2013-12-09 21:17:10,906 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 889, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:294, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:294, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:295, messageCount = 1, poisonCause = null} 2013-12-09 21:17:10,906 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:295 syncCount: 1 2013-12-09 21:17:10,907 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 890, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:295} 2013-12-09 21:17:10,907 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:295 syncCount: 2 2013-12-09 21:17:10,994 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 890} 2013-12-09 21:17:10,994 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 298, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:294, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157245, arrival = 0, brokerInTime = 1386620157246, brokerOutTime = 1386620214897, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 292} 2013-12-09 21:17:10,996 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 292 2013-12-09 21:17:10,996 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 891, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:296} 2013-12-09 21:17:10,997 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:296 2013-12-09 21:17:10,997 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:296 2013-12-09 21:17:10,997 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 892, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:295, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:295, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:296, messageCount = 1, poisonCause = null} 2013-12-09 21:17:10,998 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:296 syncCount: 1 2013-12-09 21:17:10,998 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 893, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:296} 2013-12-09 21:17:10,999 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:296 syncCount: 2 2013-12-09 21:17:11,102 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 893} 2013-12-09 21:17:11,102 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 299, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:295, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157303, arrival = 0, brokerInTime = 1386620157304, brokerOutTime = 1386620214897, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 293} 2013-12-09 21:17:11,103 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 293 2013-12-09 21:17:11,104 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 894, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:297} 2013-12-09 21:17:11,104 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:297 2013-12-09 21:17:11,104 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:297 2013-12-09 21:17:11,105 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 895, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:296, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:296, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:297, messageCount = 1, poisonCause = null} 2013-12-09 21:17:11,105 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:297 syncCount: 1 2013-12-09 21:17:11,106 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 896, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:297} 2013-12-09 21:17:11,106 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:297 syncCount: 2 2013-12-09 21:17:11,196 [.0.1:58068@1666] DEBUG Usage - default:memory:queue://test_queue_z0:memory: usage change from: 3% of available memory, to: 2% of available memory 2013-12-09 21:17:11,196 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 896} 2013-12-09 21:17:11,197 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 300, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:296, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157361, arrival = 0, brokerInTime = 1386620157363, brokerOutTime = 1386620214898, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 294} 2013-12-09 21:17:11,198 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 294 2013-12-09 21:17:11,198 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 897, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:298} 2013-12-09 21:17:11,199 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:298 2013-12-09 21:17:11,199 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:298 2013-12-09 21:17:11,199 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 898, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:297, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:297, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:298, messageCount = 1, poisonCause = null} 2013-12-09 21:17:11,200 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:298 syncCount: 1 2013-12-09 21:17:11,200 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 899, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:298} 2013-12-09 21:17:11,200 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:298 syncCount: 2 2013-12-09 21:17:11,286 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 899} 2013-12-09 21:17:11,286 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 301, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:297, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157420, arrival = 0, brokerInTime = 1386620157421, brokerOutTime = 1386620214898, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 295} 2013-12-09 21:17:11,287 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 295 2013-12-09 21:17:11,288 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 900, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:299} 2013-12-09 21:17:11,288 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:299 2013-12-09 21:17:11,289 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:299 2013-12-09 21:17:11,289 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 901, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:298, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:298, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:299, messageCount = 1, poisonCause = null} 2013-12-09 21:17:11,289 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:299 syncCount: 1 2013-12-09 21:17:11,290 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 902, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:299} 2013-12-09 21:17:11,290 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:299 syncCount: 2 2013-12-09 21:17:11,377 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 902} 2013-12-09 21:17:11,377 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 302, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:298, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157477, arrival = 0, brokerInTime = 1386620157478, brokerOutTime = 1386620214898, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 296} 2013-12-09 21:17:11,378 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 296 2013-12-09 21:17:11,378 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 903, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:300} 2013-12-09 21:17:11,379 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:300 2013-12-09 21:17:11,379 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:300 2013-12-09 21:17:11,380 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 904, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:299, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:299, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:300, messageCount = 1, poisonCause = null} 2013-12-09 21:17:11,381 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:300 syncCount: 1 2013-12-09 21:17:11,381 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 905, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:300} 2013-12-09 21:17:11,382 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:300 syncCount: 2 2013-12-09 21:17:11,454 [ Scheduled Task] DEBUG LeaseDatabaseLocker - coreActiveMQBroker1, lease keepAlive Query is UPDATE ACTIVEMQ_LOCK SET BROKER_NAME=?, TIME=? WHERE BROKER_NAME=? AND ID = 1 2013-12-09 21:17:11,467 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 905} 2013-12-09 21:17:11,468 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 303, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:299, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157535, arrival = 0, brokerInTime = 1386620157537, brokerOutTime = 1386620214898, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 297} 2013-12-09 21:17:11,470 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 297 2013-12-09 21:17:11,470 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 906, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:301} 2013-12-09 21:17:11,470 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:301 2013-12-09 21:17:11,471 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:301 2013-12-09 21:17:11,471 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 907, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:300, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:300, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:301, messageCount = 1, poisonCause = null} 2013-12-09 21:17:11,472 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:301 syncCount: 1 2013-12-09 21:17:11,472 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 908, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:301} 2013-12-09 21:17:11,472 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:301 syncCount: 2 2013-12-09 21:17:11,632 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 908} 2013-12-09 21:17:11,633 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 304, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:300, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157593, arrival = 0, brokerInTime = 1386620157594, brokerOutTime = 1386620214898, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 298} 2013-12-09 21:17:11,635 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 298 2013-12-09 21:17:11,635 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 909, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:302} 2013-12-09 21:17:11,636 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:302 2013-12-09 21:17:11,636 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:302 2013-12-09 21:17:11,637 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 910, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:301, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:301, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:302, messageCount = 1, poisonCause = null} 2013-12-09 21:17:11,638 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:302 syncCount: 1 2013-12-09 21:17:11,638 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 911, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:302} 2013-12-09 21:17:11,639 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:302 syncCount: 2 2013-12-09 21:17:11,733 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 911} 2013-12-09 21:17:11,733 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 305, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:301, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157651, arrival = 0, brokerInTime = 1386620157652, brokerOutTime = 1386620214899, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 299} 2013-12-09 21:17:11,736 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 299 2013-12-09 21:17:11,736 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 912, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:303} 2013-12-09 21:17:11,737 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:303 2013-12-09 21:17:11,737 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:303 2013-12-09 21:17:11,738 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 913, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:302, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:302, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:303, messageCount = 1, poisonCause = null} 2013-12-09 21:17:11,739 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:303 syncCount: 1 2013-12-09 21:17:11,739 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 914, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:303} 2013-12-09 21:17:11,739 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:303 syncCount: 2 2013-12-09 21:17:11,832 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 914} 2013-12-09 21:17:11,833 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 306, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:302, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157717, arrival = 0, brokerInTime = 1386620157718, brokerOutTime = 1386620214899, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 300} 2013-12-09 21:17:11,834 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 300 2013-12-09 21:17:11,834 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 915, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:304} 2013-12-09 21:17:11,835 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:304 2013-12-09 21:17:11,835 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:304 2013-12-09 21:17:11,835 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 916, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:303, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:303, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:304, messageCount = 1, poisonCause = null} 2013-12-09 21:17:11,836 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:304 syncCount: 1 2013-12-09 21:17:11,836 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 917, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:304} 2013-12-09 21:17:11,837 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:304 syncCount: 2 2013-12-09 21:17:11,924 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 917} 2013-12-09 21:17:11,925 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 307, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:303, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157784, arrival = 0, brokerInTime = 1386620157786, brokerOutTime = 1386620214899, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 301} 2013-12-09 21:17:11,926 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 301 2013-12-09 21:17:11,926 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 918, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:305} 2013-12-09 21:17:11,927 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:305 2013-12-09 21:17:11,927 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:305 2013-12-09 21:17:11,927 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 919, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:304, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:304, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:305, messageCount = 1, poisonCause = null} 2013-12-09 21:17:11,928 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:305 syncCount: 1 2013-12-09 21:17:11,928 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 920, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:305} 2013-12-09 21:17:11,929 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:305 syncCount: 2 2013-12-09 21:17:12,024 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 920} 2013-12-09 21:17:12,024 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 308, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:304, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157850, arrival = 0, brokerInTime = 1386620157851, brokerOutTime = 1386620214900, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 302} 2013-12-09 21:17:12,026 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 302 2013-12-09 21:17:12,026 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 921, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:306} 2013-12-09 21:17:12,027 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:306 2013-12-09 21:17:12,028 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:306 2013-12-09 21:17:12,028 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 922, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:305, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:305, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:306, messageCount = 1, poisonCause = null} 2013-12-09 21:17:12,029 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:306 syncCount: 1 2013-12-09 21:17:12,030 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 923, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:306} 2013-12-09 21:17:12,031 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:306 syncCount: 2 2013-12-09 21:17:12,115 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 923} 2013-12-09 21:17:12,115 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 309, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:305, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157916, arrival = 0, brokerInTime = 1386620157918, brokerOutTime = 1386620214900, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 303} 2013-12-09 21:17:12,117 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 303 2013-12-09 21:17:12,117 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 924, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:307} 2013-12-09 21:17:12,118 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:307 2013-12-09 21:17:12,119 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:307 2013-12-09 21:17:12,119 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 925, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:306, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:306, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:307, messageCount = 1, poisonCause = null} 2013-12-09 21:17:12,120 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:307 syncCount: 1 2013-12-09 21:17:12,120 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 926, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:307} 2013-12-09 21:17:12,120 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:307 syncCount: 2 2013-12-09 21:17:12,218 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 926} 2013-12-09 21:17:12,219 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 310, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:306, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620157982, arrival = 0, brokerInTime = 1386620157984, brokerOutTime = 1386620214900, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 304} 2013-12-09 21:17:12,220 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 304 2013-12-09 21:17:12,220 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 927, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:308} 2013-12-09 21:17:12,221 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:308 2013-12-09 21:17:12,221 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:308 2013-12-09 21:17:12,221 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 928, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:307, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:307, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:308, messageCount = 1, poisonCause = null} 2013-12-09 21:17:12,222 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:308 syncCount: 1 2013-12-09 21:17:12,222 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 929, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:308} 2013-12-09 21:17:12,223 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:308 syncCount: 2 2013-12-09 21:17:12,302 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 929} 2013-12-09 21:17:12,302 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 311, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:307, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158040, arrival = 0, brokerInTime = 1386620158042, brokerOutTime = 1386620214900, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 305} 2013-12-09 21:17:12,303 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 305 2013-12-09 21:17:12,304 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 930, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:309} 2013-12-09 21:17:12,304 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:309 2013-12-09 21:17:12,304 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:309 2013-12-09 21:17:12,305 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 931, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:308, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:308, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:309, messageCount = 1, poisonCause = null} 2013-12-09 21:17:12,306 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:309 syncCount: 1 2013-12-09 21:17:12,306 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 932, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:309} 2013-12-09 21:17:12,306 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:309 syncCount: 2 2013-12-09 21:17:12,391 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 932} 2013-12-09 21:17:12,392 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 312, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:308, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158098, arrival = 0, brokerInTime = 1386620158099, brokerOutTime = 1386620214901, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 306} 2013-12-09 21:17:12,393 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 306 2013-12-09 21:17:12,393 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 933, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:310} 2013-12-09 21:17:12,394 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:310 2013-12-09 21:17:12,394 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:310 2013-12-09 21:17:12,394 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 934, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:309, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:309, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:310, messageCount = 1, poisonCause = null} 2013-12-09 21:17:12,395 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:310 syncCount: 1 2013-12-09 21:17:12,395 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 935, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:310} 2013-12-09 21:17:12,396 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:310 syncCount: 2 2013-12-09 21:17:12,475 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 935} 2013-12-09 21:17:12,475 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 313, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:309, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158166, arrival = 0, brokerInTime = 1386620158167, brokerOutTime = 1386620214901, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 307} 2013-12-09 21:17:12,476 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 307 2013-12-09 21:17:12,477 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 936, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:311} 2013-12-09 21:17:12,477 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:311 2013-12-09 21:17:12,477 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:311 2013-12-09 21:17:12,478 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 937, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:310, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:310, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:311, messageCount = 1, poisonCause = null} 2013-12-09 21:17:12,478 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:311 syncCount: 1 2013-12-09 21:17:12,479 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 938, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:311} 2013-12-09 21:17:12,479 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:311 syncCount: 2 2013-12-09 21:17:12,573 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 938} 2013-12-09 21:17:12,573 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 314, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:310, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158224, arrival = 0, brokerInTime = 1386620158226, brokerOutTime = 1386620214901, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 308} 2013-12-09 21:17:12,575 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 308 2013-12-09 21:17:12,575 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 939, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:312} 2013-12-09 21:17:12,575 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:312 2013-12-09 21:17:12,576 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:312 2013-12-09 21:17:12,576 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 940, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:311, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:311, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:312, messageCount = 1, poisonCause = null} 2013-12-09 21:17:12,577 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:312 syncCount: 1 2013-12-09 21:17:12,577 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 941, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:312} 2013-12-09 21:17:12,578 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:312 syncCount: 2 2013-12-09 21:17:12,673 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 941} 2013-12-09 21:17:12,673 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 315, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:311, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158282, arrival = 0, brokerInTime = 1386620158283, brokerOutTime = 1386620214901, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 309} 2013-12-09 21:17:12,675 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 309 2013-12-09 21:17:12,675 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 942, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:313} 2013-12-09 21:17:12,675 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:313 2013-12-09 21:17:12,676 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:313 2013-12-09 21:17:12,676 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 943, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:312, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:312, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:313, messageCount = 1, poisonCause = null} 2013-12-09 21:17:12,677 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:313 syncCount: 1 2013-12-09 21:17:12,677 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 944, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:313} 2013-12-09 21:17:12,677 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:313 syncCount: 2 2013-12-09 21:17:12,764 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 944} 2013-12-09 21:17:12,764 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 316, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:312, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158340, arrival = 0, brokerInTime = 1386620158341, brokerOutTime = 1386620214901, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 310} 2013-12-09 21:17:12,766 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 310 2013-12-09 21:17:12,766 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 945, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:314} 2013-12-09 21:17:12,766 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:314 2013-12-09 21:17:12,766 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:314 2013-12-09 21:17:12,767 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 946, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:313, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:313, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:314, messageCount = 1, poisonCause = null} 2013-12-09 21:17:12,767 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:314 syncCount: 1 2013-12-09 21:17:12,768 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 947, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:314} 2013-12-09 21:17:12,768 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:314 syncCount: 2 2013-12-09 21:17:12,854 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 947} 2013-12-09 21:17:12,855 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 317, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:313, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158398, arrival = 0, brokerInTime = 1386620158399, brokerOutTime = 1386620214901, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 311} 2013-12-09 21:17:12,856 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 311 2013-12-09 21:17:12,856 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 948, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:315} 2013-12-09 21:17:12,857 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:315 2013-12-09 21:17:12,857 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:315 2013-12-09 21:17:12,857 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 949, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:314, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:314, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:315, messageCount = 1, poisonCause = null} 2013-12-09 21:17:12,858 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:315 syncCount: 1 2013-12-09 21:17:12,858 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 950, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:315} 2013-12-09 21:17:12,859 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:315 syncCount: 2 2013-12-09 21:17:12,947 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 950} 2013-12-09 21:17:12,947 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 318, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:314, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158456, arrival = 0, brokerInTime = 1386620158457, brokerOutTime = 1386620214901, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 312} 2013-12-09 21:17:12,949 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 312 2013-12-09 21:17:12,949 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 951, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:316} 2013-12-09 21:17:12,950 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:316 2013-12-09 21:17:12,950 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:316 2013-12-09 21:17:12,950 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 952, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:315, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:315, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:316, messageCount = 1, poisonCause = null} 2013-12-09 21:17:12,951 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:316 syncCount: 1 2013-12-09 21:17:12,951 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 953, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:316} 2013-12-09 21:17:12,952 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:316 syncCount: 2 2013-12-09 21:17:13,038 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 953} 2013-12-09 21:17:13,038 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 319, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:315, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158514, arrival = 0, brokerInTime = 1386620158515, brokerOutTime = 1386620214902, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 313} 2013-12-09 21:17:13,040 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 313 2013-12-09 21:17:13,040 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 954, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:317} 2013-12-09 21:17:13,040 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:317 2013-12-09 21:17:13,041 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:317 2013-12-09 21:17:13,041 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 955, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:316, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:316, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:317, messageCount = 1, poisonCause = null} 2013-12-09 21:17:13,042 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:317 syncCount: 1 2013-12-09 21:17:13,042 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 956, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:317} 2013-12-09 21:17:13,042 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:317 syncCount: 2 2013-12-09 21:17:13,146 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 956} 2013-12-09 21:17:13,146 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 320, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:316, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158613, arrival = 0, brokerInTime = 1386620158615, brokerOutTime = 1386620214902, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 314} 2013-12-09 21:17:13,148 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 314 2013-12-09 21:17:13,148 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 957, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:318} 2013-12-09 21:17:13,148 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:318 2013-12-09 21:17:13,149 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:318 2013-12-09 21:17:13,149 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 958, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:317, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:317, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:318, messageCount = 1, poisonCause = null} 2013-12-09 21:17:13,151 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:318 syncCount: 1 2013-12-09 21:17:13,151 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 959, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:318} 2013-12-09 21:17:13,152 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:318 syncCount: 2 2013-12-09 21:17:13,237 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 959} 2013-12-09 21:17:13,238 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 321, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:317, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158696, arrival = 0, brokerInTime = 1386620158697, brokerOutTime = 1386620214902, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 315} 2013-12-09 21:17:13,239 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 315 2013-12-09 21:17:13,239 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 960, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:319} 2013-12-09 21:17:13,240 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:319 2013-12-09 21:17:13,240 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:319 2013-12-09 21:17:13,240 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 961, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:318, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:318, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:319, messageCount = 1, poisonCause = null} 2013-12-09 21:17:13,241 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:319 syncCount: 1 2013-12-09 21:17:13,241 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 962, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:319} 2013-12-09 21:17:13,242 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:319 syncCount: 2 2013-12-09 21:17:13,345 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 962} 2013-12-09 21:17:13,345 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 322, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:318, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158779, arrival = 0, brokerInTime = 1386620158780, brokerOutTime = 1386620214902, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 316} 2013-12-09 21:17:13,347 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 316 2013-12-09 21:17:13,347 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 963, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:320} 2013-12-09 21:17:13,348 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:320 2013-12-09 21:17:13,348 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:320 2013-12-09 21:17:13,348 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 964, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:319, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:319, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:320, messageCount = 1, poisonCause = null} 2013-12-09 21:17:13,349 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:320 syncCount: 1 2013-12-09 21:17:13,350 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 965, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:320} 2013-12-09 21:17:13,350 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:320 syncCount: 2 2013-12-09 21:17:13,436 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 965} 2013-12-09 21:17:13,437 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 323, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:319, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158837, arrival = 0, brokerInTime = 1386620158838, brokerOutTime = 1386620214902, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 317} 2013-12-09 21:17:13,438 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 317 2013-12-09 21:17:13,439 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 966, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:321} 2013-12-09 21:17:13,439 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:321 2013-12-09 21:17:13,439 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:321 2013-12-09 21:17:13,440 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 967, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:320, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:320, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:321, messageCount = 1, poisonCause = null} 2013-12-09 21:17:13,440 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:321 syncCount: 1 2013-12-09 21:17:13,441 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 968, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:321} 2013-12-09 21:17:13,442 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:321 syncCount: 2 2013-12-09 21:17:13,539 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 968} 2013-12-09 21:17:13,539 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 324, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:320, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158895, arrival = 0, brokerInTime = 1386620158896, brokerOutTime = 1386620214902, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 318} 2013-12-09 21:17:13,540 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 318 2013-12-09 21:17:13,541 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 969, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:322} 2013-12-09 21:17:13,541 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:322 2013-12-09 21:17:13,541 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:322 2013-12-09 21:17:13,542 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 970, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:321, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:321, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:322, messageCount = 1, poisonCause = null} 2013-12-09 21:17:13,542 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:322 syncCount: 1 2013-12-09 21:17:13,543 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 971, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:322} 2013-12-09 21:17:13,543 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:322 syncCount: 2 2013-12-09 21:17:13,786 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 971} 2013-12-09 21:17:13,786 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 325, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:321, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620158953, arrival = 0, brokerInTime = 1386620158954, brokerOutTime = 1386620214903, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 319} 2013-12-09 21:17:13,788 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 319 2013-12-09 21:17:13,789 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 972, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:323} 2013-12-09 21:17:13,789 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:323 2013-12-09 21:17:13,790 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:323 2013-12-09 21:17:13,790 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 973, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:322, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:322, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:323, messageCount = 1, poisonCause = null} 2013-12-09 21:17:13,791 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:323 syncCount: 1 2013-12-09 21:17:13,791 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 974, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:323} 2013-12-09 21:17:13,792 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:323 syncCount: 2 2013-12-09 21:17:13,885 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 974} 2013-12-09 21:17:13,886 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 326, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:322, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159011, arrival = 0, brokerInTime = 1386620159012, brokerOutTime = 1386620214903, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 320} 2013-12-09 21:17:13,887 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 320 2013-12-09 21:17:13,887 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 975, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:324} 2013-12-09 21:17:13,888 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:324 2013-12-09 21:17:13,888 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:324 2013-12-09 21:17:13,888 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 976, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:323, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:323, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:324, messageCount = 1, poisonCause = null} 2013-12-09 21:17:13,889 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:324 syncCount: 1 2013-12-09 21:17:13,889 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 977, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:324} 2013-12-09 21:17:13,890 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:324 syncCount: 2 2013-12-09 21:17:13,985 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 977} 2013-12-09 21:17:13,985 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 327, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:323, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159069, arrival = 0, brokerInTime = 1386620159070, brokerOutTime = 1386620214903, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 321} 2013-12-09 21:17:13,987 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 321 2013-12-09 21:17:13,987 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 978, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:325} 2013-12-09 21:17:13,987 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:325 2013-12-09 21:17:13,988 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:325 2013-12-09 21:17:13,988 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 979, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:324, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:324, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:325, messageCount = 1, poisonCause = null} 2013-12-09 21:17:13,989 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:325 syncCount: 1 2013-12-09 21:17:13,989 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 980, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:325} 2013-12-09 21:17:13,989 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:325 syncCount: 2 2013-12-09 21:17:14,084 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 980} 2013-12-09 21:17:14,085 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 328, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:324, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159127, arrival = 0, brokerInTime = 1386620159128, brokerOutTime = 1386620214903, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 322} 2013-12-09 21:17:14,086 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 322 2013-12-09 21:17:14,086 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 981, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:326} 2013-12-09 21:17:14,087 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:326 2013-12-09 21:17:14,087 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:326 2013-12-09 21:17:14,087 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 982, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:325, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:325, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:326, messageCount = 1, poisonCause = null} 2013-12-09 21:17:14,088 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:326 syncCount: 1 2013-12-09 21:17:14,088 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 983, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:326} 2013-12-09 21:17:14,089 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:326 syncCount: 2 2013-12-09 21:17:14,176 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 983} 2013-12-09 21:17:14,176 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 329, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:325, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159185, arrival = 0, brokerInTime = 1386620159187, brokerOutTime = 1386620214903, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 323} 2013-12-09 21:17:14,178 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 323 2013-12-09 21:17:14,178 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 984, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:327} 2013-12-09 21:17:14,178 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:327 2013-12-09 21:17:14,179 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:327 2013-12-09 21:17:14,179 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 985, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:326, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:326, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:327, messageCount = 1, poisonCause = null} 2013-12-09 21:17:14,180 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:327 syncCount: 1 2013-12-09 21:17:14,180 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 986, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:327} 2013-12-09 21:17:14,181 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:327 syncCount: 2 2013-12-09 21:17:14,275 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 986} 2013-12-09 21:17:14,276 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 330, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:326, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159243, arrival = 0, brokerInTime = 1386620159244, brokerOutTime = 1386620214903, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 324} 2013-12-09 21:17:14,277 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 324 2013-12-09 21:17:14,278 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 987, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:328} 2013-12-09 21:17:14,278 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:328 2013-12-09 21:17:14,278 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:328 2013-12-09 21:17:14,279 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 988, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:327, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:327, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:328, messageCount = 1, poisonCause = null} 2013-12-09 21:17:14,279 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:328 syncCount: 1 2013-12-09 21:17:14,280 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 989, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:328} 2013-12-09 21:17:14,280 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:328 syncCount: 2 2013-12-09 21:17:14,367 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 989} 2013-12-09 21:17:14,367 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 331, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:327, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159301, arrival = 0, brokerInTime = 1386620159302, brokerOutTime = 1386620214903, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 325} 2013-12-09 21:17:14,369 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 325 2013-12-09 21:17:14,369 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 990, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:329} 2013-12-09 21:17:14,369 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:329 2013-12-09 21:17:14,369 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:329 2013-12-09 21:17:14,370 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 991, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:328, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:328, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:329, messageCount = 1, poisonCause = null} 2013-12-09 21:17:14,370 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:329 syncCount: 1 2013-12-09 21:17:14,371 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 992, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:329} 2013-12-09 21:17:14,371 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:329 syncCount: 2 2013-12-09 21:17:14,475 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 992} 2013-12-09 21:17:14,475 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 332, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:328, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159359, arrival = 0, brokerInTime = 1386620159360, brokerOutTime = 1386620214904, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 326} 2013-12-09 21:17:14,476 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 326 2013-12-09 21:17:14,476 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 993, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:330} 2013-12-09 21:17:14,477 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:330 2013-12-09 21:17:14,477 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:330 2013-12-09 21:17:14,477 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 994, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:329, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:329, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:330, messageCount = 1, poisonCause = null} 2013-12-09 21:17:14,478 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:330 syncCount: 1 2013-12-09 21:17:14,478 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 995, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:330} 2013-12-09 21:17:14,479 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:330 syncCount: 2 2013-12-09 21:17:14,554 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 995} 2013-12-09 21:17:14,554 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 333, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:329, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159417, arrival = 0, brokerInTime = 1386620159418, brokerOutTime = 1386620214904, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 327} 2013-12-09 21:17:14,556 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 327 2013-12-09 21:17:14,556 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 996, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:331} 2013-12-09 21:17:14,557 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:331 2013-12-09 21:17:14,557 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:331 2013-12-09 21:17:14,558 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 997, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:330, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:330, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:331, messageCount = 1, poisonCause = null} 2013-12-09 21:17:14,559 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:331 syncCount: 1 2013-12-09 21:17:14,559 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 998, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:331} 2013-12-09 21:17:14,560 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:331 syncCount: 2 2013-12-09 21:17:14,649 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 998} 2013-12-09 21:17:14,650 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 334, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:330, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159483, arrival = 0, brokerInTime = 1386620159484, brokerOutTime = 1386620214904, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 328} 2013-12-09 21:17:14,651 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 328 2013-12-09 21:17:14,651 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 999, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:332} 2013-12-09 21:17:14,652 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:332 2013-12-09 21:17:14,652 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:332 2013-12-09 21:17:14,652 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 1000, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:331, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:331, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:332, messageCount = 1, poisonCause = null} 2013-12-09 21:17:14,653 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:332 syncCount: 1 2013-12-09 21:17:14,653 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1001, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:332} 2013-12-09 21:17:14,654 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:332 syncCount: 2 2013-12-09 21:17:14,741 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 1001} 2013-12-09 21:17:14,741 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 335, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:331, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159549, arrival = 0, brokerInTime = 1386620159551, brokerOutTime = 1386620214904, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 329} 2013-12-09 21:17:14,743 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 329 2013-12-09 21:17:14,743 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1002, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:333} 2013-12-09 21:17:14,743 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:333 2013-12-09 21:17:14,744 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:333 2013-12-09 21:17:14,744 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 1003, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:332, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:332, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:333, messageCount = 1, poisonCause = null} 2013-12-09 21:17:14,745 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:333 syncCount: 1 2013-12-09 21:17:14,746 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1004, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:333} 2013-12-09 21:17:14,746 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:333 syncCount: 2 2013-12-09 21:17:14,841 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 1004} 2013-12-09 21:17:14,841 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 336, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:332, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159607, arrival = 0, brokerInTime = 1386620159608, brokerOutTime = 1386620214904, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 330} 2013-12-09 21:17:14,844 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 330 2013-12-09 21:17:14,844 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1005, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:334} 2013-12-09 21:17:14,845 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:334 2013-12-09 21:17:14,845 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:334 2013-12-09 21:17:14,845 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 1006, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:333, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:333, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:334, messageCount = 1, poisonCause = null} 2013-12-09 21:17:14,847 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:334 syncCount: 1 2013-12-09 21:17:14,847 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1007, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:334} 2013-12-09 21:17:14,848 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:334 syncCount: 2 2013-12-09 21:17:14,856 [WriteCheckTimer] DEBUG AbstractInactivityMonitor - WriteChecker: 10001ms elapsed since last write check. 2013-12-09 21:17:14,858 [WriteCheckTimer] DEBUG AbstractInactivityMonitor - WriteChecker: 10000ms elapsed since last write check. 2013-12-09 21:17:14,933 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 1007} 2013-12-09 21:17:14,934 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 337, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:333, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159673, arrival = 0, brokerInTime = 1386620159674, brokerOutTime = 1386620214904, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 331} 2013-12-09 21:17:14,936 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 331 2013-12-09 21:17:14,936 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1008, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:335} 2013-12-09 21:17:14,937 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:335 2013-12-09 21:17:14,937 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:335 2013-12-09 21:17:14,938 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 1009, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:334, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:334, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:335, messageCount = 1, poisonCause = null} 2013-12-09 21:17:14,938 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:335 syncCount: 1 2013-12-09 21:17:14,939 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1010, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:335} 2013-12-09 21:17:14,939 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:335 syncCount: 2 2013-12-09 21:17:15,032 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 1010} 2013-12-09 21:17:15,033 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 338, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:334, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159739, arrival = 0, brokerInTime = 1386620159741, brokerOutTime = 1386620214904, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 332} 2013-12-09 21:17:15,034 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 332 2013-12-09 21:17:15,035 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1011, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:336} 2013-12-09 21:17:15,035 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:336 2013-12-09 21:17:15,035 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:336 2013-12-09 21:17:15,036 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 1012, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:335, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:335, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:336, messageCount = 1, poisonCause = null} 2013-12-09 21:17:15,036 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:336 syncCount: 1 2013-12-09 21:17:15,037 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1013, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:336} 2013-12-09 21:17:15,037 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:336 syncCount: 2 2013-12-09 21:17:15,139 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 1013} 2013-12-09 21:17:15,139 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 339, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:335, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159798, arrival = 0, brokerInTime = 1386620159800, brokerOutTime = 1386620214904, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 333} 2013-12-09 21:17:15,141 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 333 2013-12-09 21:17:15,141 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1014, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:337} 2013-12-09 21:17:15,142 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:337 2013-12-09 21:17:15,142 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:337 2013-12-09 21:17:15,142 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 1015, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:336, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:336, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:337, messageCount = 1, poisonCause = null} 2013-12-09 21:17:15,143 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:337 syncCount: 1 2013-12-09 21:17:15,143 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1016, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:337} 2013-12-09 21:17:15,144 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:337 syncCount: 2 2013-12-09 21:17:15,396 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 1016} 2013-12-09 21:17:15,396 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 340, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:336, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159856, arrival = 0, brokerInTime = 1386620159857, brokerOutTime = 1386620214905, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 334} 2013-12-09 21:17:15,397 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 334 2013-12-09 21:17:15,398 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1017, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:338} 2013-12-09 21:17:15,398 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:338 2013-12-09 21:17:15,398 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:338 2013-12-09 21:17:15,399 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 1018, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:337, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:337, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:338, messageCount = 1, poisonCause = null} 2013-12-09 21:17:15,399 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:338 syncCount: 1 2013-12-09 21:17:15,400 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1019, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:338} 2013-12-09 21:17:15,400 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:338 syncCount: 2 2013-12-09 21:17:15,538 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 1019} 2013-12-09 21:17:15,538 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 341, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:337, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620159920, arrival = 0, brokerInTime = 1386620159922, brokerOutTime = 1386620214905, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 335} 2013-12-09 21:17:15,540 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 335 2013-12-09 21:17:15,540 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1020, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:339} 2013-12-09 21:17:15,540 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:339 2013-12-09 21:17:15,541 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:339 2013-12-09 21:17:15,541 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 1021, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:338, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:338, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:339, messageCount = 1, poisonCause = null} 2013-12-09 21:17:15,542 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:339 syncCount: 1 2013-12-09 21:17:15,542 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1022, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:339} 2013-12-09 21:17:15,542 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:339 syncCount: 2 2013-12-09 21:17:15,825 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 1022} 2013-12-09 21:17:15,825 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 342, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:338, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620160137, arrival = 0, brokerInTime = 1386620160139, brokerOutTime = 1386620214905, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 336} 2013-12-09 21:17:15,827 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 336 2013-12-09 21:17:15,827 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1023, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:340} 2013-12-09 21:17:15,828 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:340 2013-12-09 21:17:15,828 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:340 2013-12-09 21:17:15,828 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 1024, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:339, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:339, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:340, messageCount = 1, poisonCause = null} 2013-12-09 21:17:15,829 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:340 syncCount: 1 2013-12-09 21:17:15,829 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1025, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:340} 2013-12-09 21:17:15,830 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:340 syncCount: 2 2013-12-09 21:17:16,210 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 1025} 2013-12-09 21:17:16,210 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 343, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:339, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620160261, arrival = 0, brokerInTime = 1386620160262, brokerOutTime = 1386620214905, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 337} 2013-12-09 21:17:16,212 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 337 2013-12-09 21:17:16,212 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1026, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:341} 2013-12-09 21:17:16,212 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:341 2013-12-09 21:17:16,213 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:341 2013-12-09 21:17:16,213 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 1027, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:340, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:340, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:341, messageCount = 1, poisonCause = null} 2013-12-09 21:17:16,213 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:341 syncCount: 1 2013-12-09 21:17:16,214 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1028, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:341} 2013-12-09 21:17:16,214 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:341 syncCount: 2 2013-12-09 21:17:16,400 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 1028} 2013-12-09 21:17:16,401 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 344, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:340, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620160435, arrival = 0, brokerInTime = 1386620160436, brokerOutTime = 1386620214905, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 338} 2013-12-09 21:17:16,402 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 338 2013-12-09 21:17:16,402 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1029, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:342} 2013-12-09 21:17:16,402 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:342 2013-12-09 21:17:16,403 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:342 2013-12-09 21:17:16,403 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 1030, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:341, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:341, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:342, messageCount = 1, poisonCause = null} 2013-12-09 21:17:16,404 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:342 syncCount: 1 2013-12-09 21:17:16,404 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1031, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:342} 2013-12-09 21:17:16,404 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:342 syncCount: 2 2013-12-09 21:17:16,454 [ Scheduled Task] DEBUG LeaseDatabaseLocker - coreActiveMQBroker1, lease keepAlive Query is UPDATE ACTIVEMQ_LOCK SET BROKER_NAME=?, TIME=? WHERE BROKER_NAME=? AND ID = 1 2013-12-09 21:17:16,476 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 1031} 2013-12-09 21:17:16,477 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 345, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:341, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620160568, arrival = 0, brokerInTime = 1386620160570, brokerOutTime = 1386620214905, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 339} 2013-12-09 21:17:16,478 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 339 2013-12-09 21:17:16,478 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1032, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:343} 2013-12-09 21:17:16,479 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:343 2013-12-09 21:17:16,479 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:343 2013-12-09 21:17:16,479 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 1033, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:342, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:342, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:343, messageCount = 1, poisonCause = null} 2013-12-09 21:17:16,480 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:343 syncCount: 1 2013-12-09 21:17:16,480 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1034, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:343} 2013-12-09 21:17:16,481 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:343 syncCount: 2 2013-12-09 21:17:16,635 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 1034} 2013-12-09 21:17:16,636 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 346, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:342, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620160674, arrival = 0, brokerInTime = 1386620160675, brokerOutTime = 1386620214905, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 340} 2013-12-09 21:17:16,637 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 340 2013-12-09 21:17:16,637 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1035, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:344} 2013-12-09 21:17:16,638 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:344 2013-12-09 21:17:16,638 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:344 2013-12-09 21:17:16,638 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 1036, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:343, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:343, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:344, messageCount = 1, poisonCause = null} 2013-12-09 21:17:16,639 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:344 syncCount: 1 2013-12-09 21:17:16,639 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1037, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:344} 2013-12-09 21:17:16,640 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:344 syncCount: 2 2013-12-09 21:17:16,743 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 1037} 2013-12-09 21:17:16,743 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 347, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:343, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620160726, arrival = 0, brokerInTime = 1386620160727, brokerOutTime = 1386620214905, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 341} 2013-12-09 21:17:16,745 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 341 2013-12-09 21:17:16,745 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1038, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:345} 2013-12-09 21:17:16,746 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:345 2013-12-09 21:17:16,746 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:345 2013-12-09 21:17:16,746 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 1039, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:344, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:344, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:345, messageCount = 1, poisonCause = null} 2013-12-09 21:17:16,747 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:345 syncCount: 1 2013-12-09 21:17:16,747 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1040, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:345} 2013-12-09 21:17:16,748 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:345 syncCount: 2 2013-12-09 21:17:16,834 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 1040} 2013-12-09 21:17:16,835 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 348, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:344, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620160784, arrival = 0, brokerInTime = 1386620160786, brokerOutTime = 1386620214906, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 342} 2013-12-09 21:17:16,836 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 342 2013-12-09 21:17:16,836 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1041, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:346} 2013-12-09 21:17:16,837 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:346 2013-12-09 21:17:16,837 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:346 2013-12-09 21:17:16,837 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 1042, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:345, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:345, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:346, messageCount = 1, poisonCause = null} 2013-12-09 21:17:16,838 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:346 syncCount: 1 2013-12-09 21:17:16,838 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1043, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:346} 2013-12-09 21:17:16,839 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:346 syncCount: 2 2013-12-09 21:17:16,942 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 1043} 2013-12-09 21:17:16,943 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 349, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:345, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620160842, arrival = 0, brokerInTime = 1386620160843, brokerOutTime = 1386620214906, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 343} 2013-12-09 21:17:16,944 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 343 2013-12-09 21:17:16,944 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1044, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:347} 2013-12-09 21:17:16,944 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:347 2013-12-09 21:17:16,945 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:347 2013-12-09 21:17:16,945 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 1045, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:346, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:346, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:347, messageCount = 1, poisonCause = null} 2013-12-09 21:17:16,946 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:347 syncCount: 1 2013-12-09 21:17:16,946 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1046, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:347} 2013-12-09 21:17:16,946 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:347 syncCount: 2 2013-12-09 21:17:17,034 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 1046} 2013-12-09 21:17:17,034 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 350, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:346, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620160900, arrival = 0, brokerInTime = 1386620160902, brokerOutTime = 1386620214906, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 344} 2013-12-09 21:17:17,035 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 344 2013-12-09 21:17:17,036 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1047, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:348} 2013-12-09 21:17:17,036 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:348 2013-12-09 21:17:17,036 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:348 2013-12-09 21:17:17,036 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 1048, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:347, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:347, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:348, messageCount = 1, poisonCause = null} 2013-12-09 21:17:17,037 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:348 syncCount: 1 2013-12-09 21:17:17,037 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1049, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:348} 2013-12-09 21:17:17,038 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:348 syncCount: 2 2013-12-09 21:17:17,141 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 1049} 2013-12-09 21:17:17,142 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 351, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:347, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620160958, arrival = 0, brokerInTime = 1386620160959, brokerOutTime = 1386620214906, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 345} 2013-12-09 21:17:17,143 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 345 2013-12-09 21:17:17,143 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1050, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:349} 2013-12-09 21:17:17,144 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:349 2013-12-09 21:17:17,144 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:349 2013-12-09 21:17:17,144 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 1051, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:348, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:348, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:349, messageCount = 1, poisonCause = null} 2013-12-09 21:17:17,145 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:349 syncCount: 1 2013-12-09 21:17:17,145 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1052, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:349} 2013-12-09 21:17:17,146 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:349 syncCount: 2 2013-12-09 21:17:17,227 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 1052} 2013-12-09 21:17:17,227 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 352, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:348, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620161016, arrival = 0, brokerInTime = 1386620161017, brokerOutTime = 1386620214906, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 346} 2013-12-09 21:17:17,229 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 346 2013-12-09 21:17:17,229 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1053, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:350} 2013-12-09 21:17:17,229 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:350 2013-12-09 21:17:17,230 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:350 2013-12-09 21:17:17,230 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 1054, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:349, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:349, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:350, messageCount = 1, poisonCause = null} 2013-12-09 21:17:17,231 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:350 syncCount: 1 2013-12-09 21:17:17,231 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1055, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:350} 2013-12-09 21:17:17,232 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:350 syncCount: 2 2013-12-09 21:17:17,317 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 1055} 2013-12-09 21:17:17,317 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 353, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:349, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620161074, arrival = 0, brokerInTime = 1386620161075, brokerOutTime = 1386620214906, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 347} 2013-12-09 21:17:17,319 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 347 2013-12-09 21:17:17,319 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1056, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:351} 2013-12-09 21:17:17,320 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:351 2013-12-09 21:17:17,320 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:351 2013-12-09 21:17:17,320 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 1057, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:350, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:350, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:351, messageCount = 1, poisonCause = null} 2013-12-09 21:17:17,321 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:351 syncCount: 1 2013-12-09 21:17:17,322 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1058, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:351} 2013-12-09 21:17:17,322 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:351 syncCount: 2 2013-12-09 21:17:17,408 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 1058} 2013-12-09 21:17:17,408 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 354, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:350, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620161140, arrival = 0, brokerInTime = 1386620161141, brokerOutTime = 1386620214906, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 348} 2013-12-09 21:17:17,410 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 348 2013-12-09 21:17:17,411 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1059, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:352} 2013-12-09 21:17:17,411 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:352 2013-12-09 21:17:17,412 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:352 2013-12-09 21:17:17,412 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 1060, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:351, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:351, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:352, messageCount = 1, poisonCause = null} 2013-12-09 21:17:17,413 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:352 syncCount: 1 2013-12-09 21:17:17,413 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1061, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:352} 2013-12-09 21:17:17,414 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:352 syncCount: 2 2013-12-09 21:17:17,507 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 1061} 2013-12-09 21:17:17,507 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 355, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:351, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620161198, arrival = 0, brokerInTime = 1386620161199, brokerOutTime = 1386620214907, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 349} 2013-12-09 21:17:17,509 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 349 2013-12-09 21:17:17,509 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1062, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:353} 2013-12-09 21:17:17,510 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:353 2013-12-09 21:17:17,511 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:353 2013-12-09 21:17:17,511 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 1063, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:352, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:352, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:353, messageCount = 1, poisonCause = null} 2013-12-09 21:17:17,512 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:353 syncCount: 1 2013-12-09 21:17:17,512 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1064, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:353} 2013-12-09 21:17:17,513 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:353 syncCount: 2 2013-12-09 21:17:17,615 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 1064} 2013-12-09 21:17:17,615 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 356, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:352, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620161256, arrival = 0, brokerInTime = 1386620161258, brokerOutTime = 1386620214907, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 350} 2013-12-09 21:17:17,617 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 350 2013-12-09 21:17:17,617 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1065, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:354} 2013-12-09 21:17:17,618 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:354 2013-12-09 21:17:17,618 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:354 2013-12-09 21:17:17,619 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 1066, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:353, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:353, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:354, messageCount = 1, poisonCause = null} 2013-12-09 21:17:17,620 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:354 syncCount: 1 2013-12-09 21:17:17,622 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1067, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:354} 2013-12-09 21:17:17,624 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:354 syncCount: 2 2013-12-09 21:17:17,714 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 1067} 2013-12-09 21:17:17,715 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 357, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:353, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620161314, arrival = 0, brokerInTime = 1386620161315, brokerOutTime = 1386620214907, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 351} 2013-12-09 21:17:17,717 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 351 2013-12-09 21:17:17,718 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1068, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:355} 2013-12-09 21:17:17,718 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:355 2013-12-09 21:17:17,719 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:355 2013-12-09 21:17:17,719 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 1069, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:354, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:354, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:355, messageCount = 1, poisonCause = null} 2013-12-09 21:17:17,720 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:355 syncCount: 1 2013-12-09 21:17:17,721 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1070, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:355} 2013-12-09 21:17:17,721 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:355 syncCount: 2 2013-12-09 21:17:17,814 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 1070} 2013-12-09 21:17:17,814 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 358, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:354, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620161372, arrival = 0, brokerInTime = 1386620161373, brokerOutTime = 1386620214907, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 352} 2013-12-09 21:17:17,816 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 352 2013-12-09 21:17:17,817 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1071, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:356} 2013-12-09 21:17:17,817 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:356 2013-12-09 21:17:17,818 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:356 2013-12-09 21:17:17,818 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 1072, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:355, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:355, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:356, messageCount = 1, poisonCause = null} 2013-12-09 21:17:17,819 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:356 syncCount: 1 2013-12-09 21:17:17,819 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1073, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:356} 2013-12-09 21:17:17,820 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:356 syncCount: 2 2013-12-09 21:17:17,923 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 1073} 2013-12-09 21:17:17,924 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 359, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:355, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620161438, arrival = 0, brokerInTime = 1386620161439, brokerOutTime = 1386620214907, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 353} 2013-12-09 21:17:17,925 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 353 2013-12-09 21:17:17,926 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1074, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:357} 2013-12-09 21:17:17,926 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:357 2013-12-09 21:17:17,927 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:357 2013-12-09 21:17:17,927 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 1075, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:356, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:356, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:357, messageCount = 1, poisonCause = null} 2013-12-09 21:17:17,928 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:357 syncCount: 1 2013-12-09 21:17:17,929 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1076, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:357} 2013-12-09 21:17:17,930 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:357 syncCount: 2 2013-12-09 21:17:18,023 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 1076} 2013-12-09 21:17:18,023 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 360, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:356, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620161505, arrival = 0, brokerInTime = 1386620161506, brokerOutTime = 1386620214907, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 354} 2013-12-09 21:17:18,025 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 354 2013-12-09 21:17:18,025 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1077, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:358} 2013-12-09 21:17:18,025 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:358 2013-12-09 21:17:18,026 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:358 2013-12-09 21:17:18,026 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 1078, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:357, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:357, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:358, messageCount = 1, poisonCause = null} 2013-12-09 21:17:18,027 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:358 syncCount: 1 2013-12-09 21:17:18,027 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1079, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:358} 2013-12-09 21:17:18,028 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:358 syncCount: 2 2013-12-09 21:17:18,122 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 1079} 2013-12-09 21:17:18,123 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 361, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:357, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620161621, arrival = 0, brokerInTime = 1386620161622, brokerOutTime = 1386620214907, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 355} 2013-12-09 21:17:18,124 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 355 2013-12-09 21:17:18,124 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1080, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:359} 2013-12-09 21:17:18,125 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:359 2013-12-09 21:17:18,125 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:359 2013-12-09 21:17:18,125 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 1081, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:358, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:358, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:359, messageCount = 1, poisonCause = null} 2013-12-09 21:17:18,126 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:359 syncCount: 1 2013-12-09 21:17:18,127 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1082, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:359} 2013-12-09 21:17:18,127 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:359 syncCount: 2 2013-12-09 21:17:18,222 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 1082} 2013-12-09 21:17:18,223 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 362, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:358, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620161687, arrival = 0, brokerInTime = 1386620161688, brokerOutTime = 1386620214907, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 356} 2013-12-09 21:17:18,224 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 356 2013-12-09 21:17:18,224 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1083, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:360} 2013-12-09 21:17:18,225 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:360 2013-12-09 21:17:18,225 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:360 2013-12-09 21:17:18,225 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 1084, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:359, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:359, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:360, messageCount = 1, poisonCause = null} 2013-12-09 21:17:18,226 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:360 syncCount: 1 2013-12-09 21:17:18,227 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1085, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:360} 2013-12-09 21:17:18,227 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:360 syncCount: 2 2013-12-09 21:17:18,338 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 1085} 2013-12-09 21:17:18,339 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 363, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:359, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620161753, arrival = 0, brokerInTime = 1386620161754, brokerOutTime = 1386620214908, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 357} 2013-12-09 21:17:18,340 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 357 2013-12-09 21:17:18,340 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1086, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:361} 2013-12-09 21:17:18,341 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:361 2013-12-09 21:17:18,341 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:361 2013-12-09 21:17:18,341 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 1087, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:360, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:360, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:361, messageCount = 1, poisonCause = null} 2013-12-09 21:17:18,342 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:361 syncCount: 1 2013-12-09 21:17:18,343 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1088, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:361} 2013-12-09 21:17:18,343 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:361 syncCount: 2 2013-12-09 21:17:18,432 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 1088} 2013-12-09 21:17:18,432 [pool-3-thread-1] INFO MyConsumer - ===========>>>>>>>>>>>test_queue_z0 message consumed : ActiveMQTextMessage {commandId = 364, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:360, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620161811, arrival = 0, brokerInTime = 1386620161812, brokerOutTime = 1386620214908, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 358} 2013-12-09 21:17:18,434 [pool-3-thread-1] INFO MyConsumer - test_queue_z0 numberConsumedMessage : 358 2013-12-09 21:17:18,434 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1089, responseRequired = false, type = 0, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:362} 2013-12-09 21:17:18,435 [pool-3-thread-1] DEBUG TransactionContext - Begin:TX:ID:sideshow.home-57960-1386620121463-5:1:362 2013-12-09 21:17:18,435 [pool-3-thread-1] DEBUG ActiveMQSession - ID:sideshow.home-57960-1386620121463-5:1:1 Transaction Commit :TX:ID:sideshow.home-57960-1386620121463-5:1:362 2013-12-09 21:17:18,435 [pool-3-thread-1] DEBUG Connection:32 - SENDING: MessageAck {commandId = 1090, responseRequired = false, ackType = 2, consumerId = ID:sideshow.home-57960-1386620121463-5:1:1:1, firstMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:362, lastMessageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:362, destination = queue://test_queue_z0, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:362, messageCount = 1, poisonCause = null} 2013-12-09 21:17:18,436 [pool-3-thread-1] DEBUG TransactionContext - Commit: TX:ID:sideshow.home-57960-1386620121463-5:1:362 syncCount: 1 2013-12-09 21:17:18,436 [pool-3-thread-1] DEBUG Connection:32 - SENDING: TransactionInfo {commandId = 1091, responseRequired = true, type = 2, connectionId = ID:sideshow.home-57960-1386620121463-5:1, transactionId = TX:ID:sideshow.home-57960-1386620121463-5:1:362} 2013-12-09 21:17:18,437 [.0.1:58068@1666] DEBUG LocalTransaction - commit: TX:ID:sideshow.home-57960-1386620121463-5:1:362 syncCount: 2 2013-12-09 21:17:18,522 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED: Response {commandId = 0, responseRequired = false, correlationId = 1091} 2013-12-09 21:17:18,523 [pool-3-thread-1] INFO MyConsumer - *******************test_queue_z0 message consumed not the expected message ActiveMQTextMessage {commandId = 366, responseRequired = true, messageId = ID:sideshow.home-57960-1386620121463-3:1:1:1:362, originalDestination = null, originalTransactionId = null, producerId = ID:sideshow.home-57960-1386620121463-3:1:1:1, destination = queue://test_queue_z0, transactionId = null, expiration = 0, timestamp = 1386620178373, arrival = 0, brokerInTime = 1386620178374, brokerOutTime = 1386620214908, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 1, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 360} 2013-12-09 21:17:18,524 [pool-3-thread-1] INFO MyConsumer - *******************test_queue_z0 expected message content 359but got message360 2013-12-09 21:17:18,525 [main ] INFO ConsumerProducerDBFailoverTest - 0 Consumer received 358 messages. 2013-12-09 21:17:18,525 [main ] INFO ConsumerProducerDBFailoverTest - Total Messages sent :600 2013-12-09 21:17:18,525 [main ] INFO ConsumerProducerDBFailoverTest - Total Messages received :358 2013-12-09 21:17:18,525 [main ] INFO ConsumerProducerDBFailoverTest - Number of Proxy Stops3 2013-12-09 21:17:18,525 [main ] INFO ConsumerProducerDBFailoverTest - test_queue_z0 Enqueue count 599 2013-12-09 21:17:18,526 [main ] INFO ConsumerProducerDBFailoverTest - test_queue_z0 Dequeue count 359 2013-12-09 21:17:18,526 [main ] INFO ConsumerProducerDBFailoverTest - test_queue_z0 Dispatched count 599 2013-12-09 21:17:18,526 [main ] INFO ConsumerProducerDBFailoverTest - test_queue_z0Inflight count 240 2013-12-09 21:17:18,526 [main ] INFO ConsumerProducerDBFailoverTest - test_queue_z0Queue Size 240 2013-12-09 21:17:18,526 [main ] DEBUG Queue - test_queue_z0 toPageIn: 0, Inflight: 240, pagedInMessages.size 240, enqueueCount: 599, dequeueCount: 359 2013-12-09 21:17:18,527 [main ] INFO ConsumerProducerDBFailoverTest - Queue size is for test_queue_z0 is 240 2013-12-09 21:17:18,528 [main ] INFO ConsumerProducerDBFailoverTest - test_queue_z0 Enqueue count 599 2013-12-09 21:17:18,528 [main ] INFO ConsumerProducerDBFailoverTest - test_queue_z0 Dequeue count 359 2013-12-09 21:17:18,528 [main ] INFO ConsumerProducerDBFailoverTest - test_queue_z0 Dispatched count 599 2013-12-09 21:17:18,528 [main ] INFO ConsumerProducerDBFailoverTest - test_queue_z0Inflight count 240 2013-12-09 21:17:18,528 [main ] INFO ConsumerProducerDBFailoverTest - test_queue_z0Queue Size 240 2013-12-09 21:17:18,528 [main ] DEBUG Queue - test_queue_z0 toPageIn: 0, Inflight: 240, pagedInMessages.size 240, enqueueCount: 599, dequeueCount: 359 2013-12-09 21:17:18,530 [main ] INFO BrokerService - Apache ActiveMQ 5.9.0.redhat-610164 (coreActiveMQBroker1, ID:sideshow.home-57960-1386620121463-0:1) is shutting down 2013-12-09 21:17:18,860 [Broker1] Task-1] DEBUG TransportConnection - Stopping connection: tcp://127.0.0.1:58068 2013-12-09 21:17:18,860 [Broker1] Task-1] DEBUG TcpTransport - Stopping transport tcp:///127.0.0.1:58068@1666 2013-12-09 21:17:18,860 [Broker1] Task-1] DEBUG TaskRunnerFactory - Initialized TaskRunnerFactory[ActiveMQ Task] using ExecutorService: java.util.concurrent.ThreadPoolExecutor@7aa305e8[Running, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0] 2013-12-09 21:17:18,861 [ActiveMQ Task-1] DEBUG TcpTransport - Closed socket Socket[addr=/127.0.0.1,port=58068,localport=1666] 2013-12-09 21:17:18,861 [.0.1:1666@58068] DEBUG Connection:32 - RECEIVED Exception: java.io.EOFException java.io.EOFException at java.io.DataInputStream.readInt(DataInputStream.java:392) at org.apache.activemq.openwire.OpenWireFormat.unmarshal(OpenWireFormat.java:275) at org.apache.activemq.transport.tcp.TcpTransport.readCommand(TcpTransport.java:221) at org.apache.activemq.transport.tcp.TcpTransport.doRun(TcpTransport.java:213) at org.apache.activemq.transport.tcp.TcpTransport.run(TcpTransport.java:196) at java.lang.Thread.run(Thread.java:722) 2013-12-09 21:17:18,861 [Broker1] Task-1] DEBUG ThreadPoolUtils - Forcing shutdown of ExecutorService: java.util.concurrent.ThreadPoolExecutor@7aa305e8[Running, pool size = 1, active threads = 0, queued tasks = 0, completed tasks = 1] 2013-12-09 21:17:18,863 [.0.1:1666@58068] DEBUG ThreadPoolUtils - Shutdown of ExecutorService: java.util.concurrent.ThreadPoolExecutor@7a20a340[Terminated, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0] is shutdown: true and terminated: true took: 0.000 seconds. 2013-12-09 21:17:18,863 [Broker1] Task-1] DEBUG TransportConnection - Stopped transport: tcp://127.0.0.1:58068 2013-12-09 21:17:18,863 [.0.1:1666@58068] DEBUG TcpTransport - Stopping transport tcp://localhost/127.0.0.1:1666@58068 2013-12-09 21:17:18,864 [Broker1] Task-1] DEBUG TransportConnection - Cleaning up connection resources: tcp://127.0.0.1:58068 2013-12-09 21:17:18,864 [.0.1:1666@58068] DEBUG TaskRunnerFactory - Initialized TaskRunnerFactory[ActiveMQ Task] using ExecutorService: java.util.concurrent.ThreadPoolExecutor@6546aa75[Running, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0] 2013-12-09 21:17:18,864 [Broker1] Task-1] DEBUG TransportConnection - remove connection id: ID:sideshow.home-57960-1386620121463-5:1 2013-12-09 21:17:18,865 [ActiveMQ Task-1] DEBUG TcpTransport - Closed socket Socket[addr=localhost/127.0.0.1,port=1666,localport=58068] 2013-12-09 21:17:18,865 [Broker1] Task-1] DEBUG AbstractRegion - coreActiveMQBroker1 removing consumer: ID:sideshow.home-57960-1386620121463-5:1:1:1 for destination: queue://test_queue_z0 2013-12-09 21:17:18,865 [.0.1:1666@58068] DEBUG ThreadPoolUtils - Forcing shutdown of ExecutorService: java.util.concurrent.ThreadPoolExecutor@6546aa75[Running, pool size = 1, active threads = 0, queued tasks = 0, completed tasks = 1] 2013-12-09 21:17:18,865 [Broker1] Task-1] DEBUG Queue - queue://test_queue_z0 remove sub: QueueSubscription: consumer=ID:sideshow.home-57960-1386620121463-5:1:1:1, destinations=1, dispatched=240, delivered=1, pending=0, lastDeliveredSeqId: 0, dequeues: 359, dispatched: 599, inflight: 240 2013-12-09 21:17:18,866 [.0.1:1666@58068] WARN FailoverTransport - Transport (tcp://127.0.0.1:1666) failed, reason: java.io.EOFException, attempting to automatically reconnect 2013-12-09 21:17:18,867 [.0.1:1666@58068] DEBUG ActiveMQConnection - transport interrupted - processing required, dispatchers: 1 2013-12-09 21:17:18,867 [-5:1] Scheduler] DEBUG ActiveMQMessageConsumer - ID:sideshow.home-57960-1386620121463-5:1:1:1 clearing unconsumed list (240) on transport interrupt 2013-12-09 21:17:18,867 [.0.1:1666@58068] DEBUG ActiveMQConnection - notified failover transport (unconnected) of pending interruption processing for: ID:sideshow.home-57960-1386620121463-5:1 2013-12-09 21:17:18,868 [Broker1] Task-4] DEBUG Queue - test_queue_z0 toPageIn: 0, Inflight: 0, pagedInMessages.size 240, enqueueCount: 599, dequeueCount: 359 2013-12-09 21:17:18,868 [ActiveMQ Task-1] DEBUG FailoverTransport - urlList connectionList:[tcp://localhost:1666?trace=true], from: [tcp://localhost:1666?trace=true] 2013-12-09 21:17:18,868 [Broker1] Task-1] DEBUG AbstractRegion - coreActiveMQBroker1 removing consumer: ID:sideshow.home-57960-1386620121463-5:1:-1:1 for destination: ActiveMQ.Advisory.TempQueue,ActiveMQ.Advisory.TempTopic 2013-12-09 21:17:18,869 [ActiveMQ Task-1] DEBUG FailoverTransport - Waiting 10 ms before attempting connection. 2013-12-09 21:17:18,869 [Broker1] Task-1] DEBUG TransportConnection - Connection Stopped: tcp://127.0.0.1:58068 2013-12-09 21:17:18,869 [-5:1] Scheduler] DEBUG ActiveMQConnection - transportInterruptionProcessingComplete: 0 for:ID:sideshow.home-57960-1386620121463-5:1 2013-12-09 21:17:18,870 [main ] INFO TransportConnector - Connector openwire stopped 2013-12-09 21:17:18,874 [main ] INFO PListStoreImpl - PListStore:[/Users/pfox/SR/00976477/retest/ConsumerProducerDBFailoverTest/target/data1/coreActiveMQBroker1/tmp_storage] stopped 2013-12-09 21:17:18,880 [ActiveMQ Task-1] DEBUG FailoverTransport - Attempting 0th connect to: tcp://localhost:1666?trace=true 2013-12-09 21:17:18,882 [ActiveMQ Task-1] DEBUG FailoverTransport - Connect fail to: tcp://localhost:1666?trace=true, reason: java.net.ConnectException: Connection refused 2013-12-09 21:17:18,882 [ActiveMQ Task-1] DEBUG TcpTransport - Stopping transport tcp://localhost:1666?trace=true 2013-12-09 21:17:18,882 [ActiveMQ Task-1] DEBUG TaskRunnerFactory - Initialized TaskRunnerFactory[ActiveMQ Task] using ExecutorService: java.util.concurrent.ThreadPoolExecutor@38ea2d88[Running, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0] 2013-12-09 21:17:18,883 [ActiveMQ Task-1] DEBUG TcpTransport - Closed socket Socket[unconnected] 2013-12-09 21:17:18,883 [ActiveMQ Task-1] DEBUG ThreadPoolUtils - Forcing shutdown of ExecutorService: java.util.concurrent.ThreadPoolExecutor@38ea2d88[Running, pool size = 1, active threads = 0, queued tasks = 0, completed tasks = 1] 2013-12-09 21:17:18,883 [ActiveMQ Task-1] DEBUG FailoverTransport - Waiting 10 ms before attempting connection 2013-12-09 21:17:18,883 [-5:1] Scheduler] DEBUG ActiveMQConnection - notified failover transport (unconnected) of interruption completion for: ID:sideshow.home-57960-1386620121463-5:1 2013-12-09 21:17:18,895 [ActiveMQ Task-1] DEBUG FailoverTransport - urlList connectionList:[tcp://localhost:1666?trace=true], from: [tcp://localhost:1666?trace=true] 2013-12-09 21:17:18,895 [ActiveMQ Task-1] DEBUG FailoverTransport - Waiting 20 ms before attempting connection. 2013-12-09 21:17:18,916 [ActiveMQ Task-1] DEBUG FailoverTransport - Attempting 1th connect to: tcp://localhost:1666?trace=true 2013-12-09 21:17:18,917 [ActiveMQ Task-1] DEBUG FailoverTransport - Connect fail to: tcp://localhost:1666?trace=true, reason: java.net.ConnectException: Connection refused 2013-12-09 21:17:18,917 [ActiveMQ Task-1] DEBUG TcpTransport - Stopping transport tcp://localhost:1666?trace=true 2013-12-09 21:17:18,917 [ActiveMQ Task-1] DEBUG TaskRunnerFactory - Initialized TaskRunnerFactory[ActiveMQ Task] using ExecutorService: java.util.concurrent.ThreadPoolExecutor@6bd0757e[Running, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0] 2013-12-09 21:17:18,918 [ActiveMQ Task-1] DEBUG TcpTransport - Closed socket Socket[unconnected] 2013-12-09 21:17:18,918 [ActiveMQ Task-1] DEBUG ThreadPoolUtils - Forcing shutdown of ExecutorService: java.util.concurrent.ThreadPoolExecutor@6bd0757e[Running, pool size = 1, active threads = 0, queued tasks = 0, completed tasks = 1] 2013-12-09 21:17:18,919 [ActiveMQ Task-1] DEBUG FailoverTransport - Waiting 20 ms before attempting connection 2013-12-09 21:17:18,940 [ActiveMQ Task-1] DEBUG FailoverTransport - urlList connectionList:[tcp://localhost:1666?trace=true], from: [tcp://localhost:1666?trace=true] 2013-12-09 21:17:18,940 [ActiveMQ Task-1] DEBUG FailoverTransport - Waiting 40 ms before attempting connection. 2013-12-09 21:17:18,969 [main ] INFO LeaseDatabaseLocker - coreActiveMQBroker1, released lease 2013-12-09 21:17:18,975 [main ] DEBUG ThreadPoolUtils - Shutdown of ExecutorService: java.util.concurrent.ThreadPoolExecutor@4b9c5afa[Terminated, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 1683] is shutdown: true and terminated: false took: 0.000 seconds. 2013-12-09 21:17:18,976 [main ] DEBUG ThreadPoolUtils - Forcing shutdown of ExecutorService: java.util.concurrent.ThreadPoolExecutor@43872c49[Running, pool size = 1, active threads = 0, queued tasks = 0, completed tasks = 8] 2013-12-09 21:17:18,976 [main ] INFO BrokerService - Apache ActiveMQ 5.9.0.redhat-610164 (coreActiveMQBroker1, ID:sideshow.home-57960-1386620121463-0:1) uptime 2 minutes 2013-12-09 21:17:18,977 [main ] INFO BrokerService - Apache ActiveMQ 5.9.0.redhat-610164 (coreActiveMQBroker1, ID:sideshow.home-57960-1386620121463-0:1) is shutdown 2013-12-09 21:17:18,977 [main ] INFO ClassPathXmlApplicationContext - Closing org.springframework.context.support.ClassPathXmlApplicationContext@6b5635fa: startup date [Mon Dec 09 21:15:16 CET 2013]; root of context hierarchy 2013-12-09 21:17:18,978 [main ] INFO DefaultListableBeanFactory - Destroying singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@4f86b169: defining beans [coreActiveMQBroker1,mysql-ds]; root of factory hierarchy 2013-12-09 21:17:18,982 [ActiveMQ Task-1] DEBUG FailoverTransport - Attempting 2th connect to: tcp://localhost:1666?trace=true 2013-12-09 21:17:18,983 [ActiveMQ Task-1] DEBUG FailoverTransport - Connect fail to: tcp://localhost:1666?trace=true, reason: java.net.ConnectException: Connection refused 2013-12-09 21:17:18,983 [ActiveMQ Task-1] DEBUG TcpTransport - Stopping transport tcp://localhost:1666?trace=true 2013-12-09 21:17:18,983 [ActiveMQ Task-1] DEBUG TaskRunnerFactory - Initialized TaskRunnerFactory[ActiveMQ Task] using ExecutorService: java.util.concurrent.ThreadPoolExecutor@b5c1e49[Running, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0] 2013-12-09 21:17:18,984 [ActiveMQ Task-1] DEBUG TcpTransport - Closed socket Socket[unconnected] 2013-12-09 21:17:18,984 [ActiveMQ Task-1] DEBUG ThreadPoolUtils - Forcing shutdown of ExecutorService: java.util.concurrent.ThreadPoolExecutor@b5c1e49[Running, pool size = 1, active threads = 0, queued tasks = 0, completed tasks = 1] 2013-12-09 21:17:18,985 [ActiveMQ Task-1] DEBUG FailoverTransport - Waiting 40 ms before attempting connection