Skip to content

Commit

Permalink
https://issues.apache.org/jira/browse/AMQ-6336
Browse files Browse the repository at this point in the history
Ensure that when expired messages are handled client side that pull
consumers get a chance to see it and send a new pull request complete an
outstanding timed pull.
  • Loading branch information
tabish121 committed Jul 15, 2016
1 parent cd5ea6c commit a3a5a1a
Show file tree
Hide file tree
Showing 2 changed files with 284 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -525,11 +525,7 @@ private MessageDispatch dequeue(long timeout) throws JMSException {
}

private boolean consumeExpiredMessage(MessageDispatch dispatch) {
if (dispatch.getMessage().isExpired()) {
return !isBrowser() && isConsumerExpiryCheckEnabled();
}

return false;
return isConsumerExpiryCheckEnabled() && dispatch.getMessage().isExpired();
}

private void posionAck(MessageDispatch md, String cause) throws JMSException {
Expand Down Expand Up @@ -1421,14 +1417,26 @@ public void dispatch(MessageDispatch md) {
// delayed redelivery, ensure it can be re delivered
session.connection.rollbackDuplicate(this, md.getMessage());
}
if (!(md.getMessage() != null && md.getMessage().isExpired())) {

if (md.getMessage() == null) {
// End of browse or pull request timeout.
unconsumedMessages.enqueue(md);
if (availableListener != null) {
availableListener.onMessageAvailable(this);
}
} else {
beforeMessageIsConsumed(md);
afterMessageIsConsumed(md, false);
if (!consumeExpiredMessage(md)) {
unconsumedMessages.enqueue(md);
if (availableListener != null) {
availableListener.onMessageAvailable(this);
}
} else {
beforeMessageIsConsumed(md);
afterMessageIsConsumed(md, true);

// Pull consumer needs to check if pull timed out and send
// a new pull command if not.
if (info.getCurrentPrefetchSize() == 0) {
unconsumedMessages.enqueue(null);
}
}
}
}
} else {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,265 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.activemq.bugs;

import static org.junit.Assert.assertNull;

import java.util.Enumeration;
import java.util.concurrent.atomic.AtomicInteger;

import javax.jms.ExceptionListener;
import javax.jms.JMSException;
import javax.jms.Message;
import javax.jms.MessageConsumer;
import javax.jms.MessageProducer;
import javax.jms.Queue;
import javax.jms.QueueBrowser;
import javax.jms.Session;
import javax.jms.TextMessage;

import org.apache.activemq.ActiveMQConnection;
import org.apache.activemq.ActiveMQConnectionFactory;
import org.apache.activemq.broker.Broker;
import org.apache.activemq.broker.BrokerFilter;
import org.apache.activemq.broker.BrokerPlugin;
import org.apache.activemq.broker.BrokerService;
import org.apache.activemq.command.MessageDispatch;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;

public class MessageExpiryClientSideTest {

private ActiveMQConnection connection;
private BrokerService broker;
private volatile Exception connectionError;

@Before
public void setUp() throws Exception {
createBroker();

connection = createConnection();
connection.setExceptionListener(new ExceptionListener() {

@Override
public void onException(JMSException exception) {
try {
connectionError = exception;
connection.close();
} catch (JMSException e) {
}
}
});
}

@After
public void tearDown() throws Exception {
if (connection != null) {
try {
connection.close();
} catch (Exception e) {
}
}

if (broker != null) {
broker.stop();
broker.waitUntilStopped();
}
}

/**
* check if the pull request (prefetch=1) times out when the expiry occurs
* on the client side.
*/
@Test(timeout = 30000)
public void testConsumerReceivePrefetchOneRedeliveryZero() throws Exception {

connection.getPrefetchPolicy().setQueuePrefetch(1);
connection.start();

// push message to queue
Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
Queue queue = session.createQueue("timeout.test");
MessageProducer producer = session.createProducer(queue);
TextMessage textMessage = session.createTextMessage("test Message");

producer.send(textMessage);
session.close();

// try to consume message
session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
MessageConsumer consumer = session.createConsumer(queue);

Message message = consumer.receive(1000);

// message should be null as it should have expired and the
// consumer.receive(timeout) should return null.
assertNull(message);
session.close();

assertNull(connectionError);
}

/**
* check if the pull request (prefetch=0) times out when the expiry occurs
* on the client side.
*/
@Test(timeout = 30000)
public void testConsumerReceivePrefetchZeroRedeliveryZero() throws Exception {

connection.getPrefetchPolicy().setQueuePrefetch(0);
connection.start();

// push message to queue
Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
Queue queue = session.createQueue("timeout.test");
MessageProducer producer = session.createProducer(queue);
TextMessage textMessage = session.createTextMessage("test Message");

producer.send(textMessage);
session.close();

// try to consume message
session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
MessageConsumer consumer = session.createConsumer(queue);

Message message = consumer.receive(1000);

// message should be null as it should have expired and the
// consumer.receive(timeout) should return null.
assertNull(message);
session.close();

assertNull(connectionError);
}

/**
* check if the pull request (prefetch=0) times out when the expiry occurs
* on the client side.
*/
@Test(timeout = 30000)
public void testQueueBrowserPrefetchZeroRedeliveryZero() throws Exception {

connection.getPrefetchPolicy().setQueuePrefetch(0);
connection.start();

// push message to queue
Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
Queue queue = session.createQueue("timeout.test");
MessageProducer producer = session.createProducer(queue);
TextMessage textMessage = session.createTextMessage("test Message");

producer.send(textMessage);
session.close();

// try to consume message
session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
QueueBrowser browser = session.createBrowser(queue);

Message message = null;
Enumeration<?> enumeration = browser.getEnumeration();
while (enumeration.hasMoreElements()) {
message = (Message) enumeration.nextElement();
}

// message should be null as it should have expired and the
// consumer.receive(timeout) should return null.
assertNull(message);
session.close();

assertNull(connectionError);
}

/**
* check if the browse with (prefetch=1) times out when the expiry occurs
* on the client side.
*/
@Test(timeout = 30000)
public void testQueueBrowserPrefetchOneRedeliveryZero() throws Exception {

connection.getPrefetchPolicy().setQueuePrefetch(1);
connection.start();

// push message to queue
Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
Queue queue = session.createQueue("timeout.test");
MessageProducer producer = session.createProducer(queue);
TextMessage textMessage = session.createTextMessage("test Message");

producer.send(textMessage);
session.close();

// try to consume message
session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
QueueBrowser browser = session.createBrowser(queue);

Message message = null;
Enumeration<?> enumeration = browser.getEnumeration();
while (enumeration.hasMoreElements()) {
message = (Message) enumeration.nextElement();
}

// message should be null as it should have expired and the
// consumer.receive(timeout) should return null.
assertNull(message);
session.close();

assertNull(connectionError);
}

private void createBroker() throws Exception {
broker = new BrokerService();
broker.setUseJmx(false);
broker.setPersistent(false);
broker.setAdvisorySupport(false);

// add a plugin to ensure the expiration happens on the client side rather
// than broker side.
broker.setPlugins(new BrokerPlugin[] { new BrokerPlugin() {

@Override
public Broker installPlugin(Broker broker) throws Exception {
return new BrokerFilter(broker) {

private AtomicInteger counter = new AtomicInteger();

@Override
public void preProcessDispatch(MessageDispatch messageDispatch) {
if (counter.get() == 0 && messageDispatch.getDestination().getPhysicalName().contains("timeout.test")) {
// Set the expiration to now
messageDispatch.getMessage().setExpiration(System.currentTimeMillis() - 1000);
counter.incrementAndGet();
}

super.preProcessDispatch(messageDispatch);
}
};
}
} });

broker.start();
broker.waitUntilStarted();
}

protected ActiveMQConnectionFactory createConnectionFactory() throws Exception {
return new ActiveMQConnectionFactory("vm://localhost");
}

protected ActiveMQConnection createConnection() throws Exception {
return (ActiveMQConnection) createConnectionFactory().createConnection();
}
}

0 comments on commit a3a5a1a

Please sign in to comment.