Author: gtully
Date: Wed Aug 25 10:15:12 2010
New Revision: 988974
URL: http://svn.apache.org/viewvc?rev=988974&view=rev
Log:
resolve: https://issues.apache.org/activemq/browse/AMQ-2877 - track messagepull
commands in the failover state tracker
Added:
activemq/trunk/activemq-core/src/test/java/org/apache/activemq/transport/failover/FailoverPrefetchZeroTest.java
(with props)
Modified:
activemq/trunk/activemq-core/src/main/java/org/apache/activemq/state/ConnectionStateTracker.java
Modified:
activemq/trunk/activemq-core/src/main/java/org/apache/activemq/state/ConnectionStateTracker.java
URL:
http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/state/ConnectionStateTracker.java?rev=988974&r1=988973&r2=988974&view=diff
==============================================================================
---
activemq/trunk/activemq-core/src/main/java/org/apache/activemq/state/ConnectionStateTracker.java
(original)
+++
activemq/trunk/activemq-core/src/main/java/org/apache/activemq/state/ConnectionStateTracker.java
Wed Aug 25 10:15:12 2010
@@ -38,6 +38,7 @@ import org.apache.activemq.command.Excep
import org.apache.activemq.command.IntegerResponse;
import org.apache.activemq.command.Message;
import org.apache.activemq.command.MessageId;
+import org.apache.activemq.command.MessagePull;
import org.apache.activemq.command.ProducerId;
import org.apache.activemq.command.ProducerInfo;
import org.apache.activemq.command.Response;
@@ -71,11 +72,13 @@ public class ConnectionStateTracker exte
private boolean trackTransactionProducers = true;
private int maxCacheSize = 128 * 1024;
private int currentCacheSize;
- private Map<MessageId,Message> messageCache = new
LinkedHashMap<MessageId,Message>(){
- protected boolean removeEldestEntry(Map.Entry<MessageId,Message>
eldest) {
+ private Map<Object,Command> messageCache = new
LinkedHashMap<Object,Command>(){
+ protected boolean removeEldestEntry(Map.Entry<Object,Command> eldest) {
boolean result = currentCacheSize > maxCacheSize;
if (result) {
- currentCacheSize -= eldest.getValue().getSize();
+ if (eldest.getValue() instanceof Message) {
+ currentCacheSize -= ((Message)eldest.getValue()).getSize();
+ }
}
return result;
}
@@ -128,10 +131,15 @@ public class ConnectionStateTracker exte
}
public void trackBack(Command command) {
- if (trackMessages && command != null && command.isMessage()) {
- Message message = (Message) command;
- if (message.getTransactionId()==null) {
- currentCacheSize = currentCacheSize + message.getSize();
+ if (command != null) {
+ if (trackMessages && command.isMessage()) {
+ Message message = (Message) command;
+ if (message.getTransactionId()==null) {
+ currentCacheSize = currentCacheSize + message.getSize();
+ }
+ } else if (command instanceof MessagePull) {
+ // just needs to be a rough estimate of size, ~4 identifiers
+ currentCacheSize += 400;
}
}
}
@@ -156,9 +164,9 @@ public class ConnectionStateTracker exte
}
}
//now flush messages
- for (Message msg:messageCache.values()) {
+ for (Command msg:messageCache.values()) {
if (LOG.isDebugEnabled()) {
- LOG.debug("message: " + msg.getMessageId());
+ LOG.debug("command: " + msg.getCommandId());
}
transport.oneway(msg);
}
@@ -566,6 +574,16 @@ public class ConnectionStateTracker exte
return null;
}
+ @Override
+ public Response processMessagePull(MessagePull pull) throws Exception {
+ if (pull != null) {
+ // leave a single instance in the cache
+ final String id = pull.getDestination() + "::" +
pull.getConsumerId();
+ messageCache.put(id.intern(), pull);
+ }
+ return null;
+ }
+
public boolean isRestoreConsumers() {
return restoreConsumers;
}
Added:
activemq/trunk/activemq-core/src/test/java/org/apache/activemq/transport/failover/FailoverPrefetchZeroTest.java
URL:
http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/transport/failover/FailoverPrefetchZeroTest.java?rev=988974&view=auto
==============================================================================
---
activemq/trunk/activemq-core/src/test/java/org/apache/activemq/transport/failover/FailoverPrefetchZeroTest.java
(added)
+++
activemq/trunk/activemq-core/src/test/java/org/apache/activemq/transport/failover/FailoverPrefetchZeroTest.java
Wed Aug 25 10:15:12 2010
@@ -0,0 +1,157 @@
+/**
+ * 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.transport.failover;
+
+import java.util.Vector;
+import java.util.concurrent.CountDownLatch;
+import java.util.concurrent.Executors;
+import java.util.concurrent.TimeUnit;
+import javax.jms.JMSException;
+import javax.jms.Message;
+import javax.jms.MessageConsumer;
+import javax.jms.MessageProducer;
+import javax.jms.Queue;
+import javax.jms.Session;
+import javax.jms.TextMessage;
+import org.apache.activemq.ActiveMQConnection;
+import org.apache.activemq.ActiveMQConnectionFactory;
+import org.apache.activemq.broker.BrokerPlugin;
+import org.apache.activemq.broker.BrokerPluginSupport;
+import org.apache.activemq.broker.BrokerService;
+import org.apache.activemq.broker.ConnectionContext;
+import org.apache.activemq.command.MessagePull;
+import org.apache.activemq.command.Response;
+import org.apache.commons.logging.Log;
+import org.apache.commons.logging.LogFactory;
+import org.junit.After;
+import org.junit.Test;
+
+
+import static org.junit.Assert.assertTrue;
+
+// see: https://issues.apache.org/activemq/browse/AMQ-2877
+public class FailoverPrefetchZeroTest {
+
+ private static final Log LOG =
LogFactory.getLog(FailoverPrefetchZeroTest.class);
+ private static final String QUEUE_NAME = "FailoverPrefetchZero";
+ private String url = "tcp://localhost:61616";
+ final int prefetch = 0;
+ BrokerService broker;
+
+ public void startCleanBroker() throws Exception {
+ startBroker(true);
+ }
+
+ @After
+ public void stopBroker() throws Exception {
+ if (broker != null) {
+ broker.stop();
+ }
+ }
+
+ public void startBroker(boolean deleteAllMessagesOnStartup) throws
Exception {
+ broker = createBroker(deleteAllMessagesOnStartup);
+ broker.start();
+ }
+
+ public BrokerService createBroker(boolean deleteAllMessagesOnStartup)
throws Exception {
+ broker = new BrokerService();
+ broker.addConnector(url);
+ broker.setDeleteAllMessagesOnStartup(deleteAllMessagesOnStartup);
+ return broker;
+ }
+
+ @Test
+ public void testPrefetchZeroConsumerThroughRestart() throws Exception {
+ broker = createBroker(true);
+
+ final CountDownLatch pullDone = new CountDownLatch(1);
+ broker.setPlugins(new BrokerPlugin[]{
+ new BrokerPluginSupport() {
+ @Override
+ public Response messagePull(ConnectionContext context,
final MessagePull pull) throws Exception {
+ context.setDontSendReponse(true);
+ pullDone.countDown();
+ Executors.newSingleThreadExecutor().execute(new
Runnable() {
+ public void run() {
+ LOG.info("Stopping broker on pull: " + pull);
+ try {
+ broker.stop();
+ } catch (Exception e) {
+ e.printStackTrace();
+ }
+ }
+ });
+ return null;
+ }
+ }
+ });
+ broker.start();
+
+ ActiveMQConnectionFactory cf = new
ActiveMQConnectionFactory("failover:(" + url + ")");
+ cf.setWatchTopicAdvisories(false);
+
+ final ActiveMQConnection connection = (ActiveMQConnection)
cf.createConnection();
+ connection.start();
+
+ final Session consumerSession = connection.createSession(false,
Session.AUTO_ACKNOWLEDGE);
+ final Queue destination = consumerSession.createQueue(QUEUE_NAME +
"?consumer.prefetchSize=" + prefetch);
+
+ final MessageConsumer consumer =
consumerSession.createConsumer(destination);
+ produceMessage(consumerSession, destination, 1);
+
+ final CountDownLatch receiveDone = new CountDownLatch(1);
+ final Vector<Message> received = new Vector<Message>();
+ Executors.newSingleThreadExecutor().execute(new Runnable() {
+ public void run() {
+ try {
+ LOG.info("receive one...");
+ Message msg = consumer.receive(30000);
+ if (msg != null) {
+ received.add(msg);
+ }
+ receiveDone.countDown();
+ LOG.info("done receive");
+ } catch (Exception e) {
+ e.printStackTrace();
+ }
+ }
+ });
+
+ // will be stopped by the plugin
+ assertTrue("pull completed on broker", pullDone.await(30,
TimeUnit.SECONDS));
+ broker.waitUntilStopped();
+ broker = createBroker(false);
+ broker.start();
+
+ assertTrue("receive completed through failover", receiveDone.await(30,
TimeUnit.SECONDS));
+
+ assertTrue("we got our message:", !received.isEmpty());
+
+ connection.close();
+ }
+
+ private void produceMessage(final Session producerSession, Queue
destination, long count)
+ throws JMSException {
+ MessageProducer producer = producerSession.createProducer(destination);
+ for (int i = 0; i < count; i++) {
+ TextMessage message = producerSession.createTextMessage("Test
message " + i);
+ producer.send(message);
+ }
+ producer.close();
+ }
+}
Propchange:
activemq/trunk/activemq-core/src/test/java/org/apache/activemq/transport/failover/FailoverPrefetchZeroTest.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
activemq/trunk/activemq-core/src/test/java/org/apache/activemq/transport/failover/FailoverPrefetchZeroTest.java
------------------------------------------------------------------------------
svn:keywords = Rev Date