mirror of https://github.com/apache/activemq.git
https://issues.apache.org/jira/browse/AMQ-4094 - offline durable subs with selectors can lead to page leaks in the index and bloat of db.data in kahadb - fix up page caching on overflow and btree free on remove. test that validates the inuse page count for specific intervals
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1394733 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a5eb7c6fa2
commit
b24dfb908b
|
@ -0,0 +1,223 @@
|
|||
/**
|
||||
* 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.usecases;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.concurrent.TimeUnit;
|
||||
import javax.jms.Connection;
|
||||
import javax.jms.Message;
|
||||
import javax.jms.MessageConsumer;
|
||||
import javax.jms.MessageListener;
|
||||
import javax.jms.MessageProducer;
|
||||
import javax.jms.Session;
|
||||
import junit.framework.Test;
|
||||
import org.apache.activemq.ActiveMQConnectionFactory;
|
||||
import org.apache.activemq.broker.BrokerFactory;
|
||||
import org.apache.activemq.broker.BrokerService;
|
||||
import org.apache.activemq.command.ActiveMQTopic;
|
||||
import org.apache.activemq.store.kahadb.KahaDBPersistenceAdapter;
|
||||
import org.apache.activemq.store.kahadb.KahaDBStore;
|
||||
import org.apache.activemq.util.Wait;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
public class DurableSubsOfflineSelectorIndexUseTest extends org.apache.activemq.TestSupport {
|
||||
|
||||
private static final Logger LOG = LoggerFactory.getLogger(DurableSubsOfflineSelectorIndexUseTest.class);
|
||||
public int messageCount = 400;
|
||||
private BrokerService broker;
|
||||
private ActiveMQTopic topic;
|
||||
private List<Throwable> exceptions = new ArrayList<Throwable>();
|
||||
|
||||
protected ActiveMQConnectionFactory createConnectionFactory() throws Exception {
|
||||
ActiveMQConnectionFactory connectionFactory = new ActiveMQConnectionFactory("vm://" + getName(true));
|
||||
connectionFactory.setWatchTopicAdvisories(false);
|
||||
return connectionFactory;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected Connection createConnection() throws Exception {
|
||||
return createConnection("id");
|
||||
}
|
||||
|
||||
protected Connection createConnection(String name) throws Exception {
|
||||
Connection con = super.createConnection();
|
||||
con.setClientID(name);
|
||||
con.start();
|
||||
return con;
|
||||
}
|
||||
|
||||
public static Test suite() {
|
||||
return suite(DurableSubsOfflineSelectorIndexUseTest.class);
|
||||
}
|
||||
|
||||
protected void setUp() throws Exception {
|
||||
exceptions.clear();
|
||||
topic = (ActiveMQTopic) createDestination();
|
||||
createBroker();
|
||||
super.setUp();
|
||||
}
|
||||
|
||||
protected void tearDown() throws Exception {
|
||||
super.tearDown();
|
||||
destroyBroker();
|
||||
}
|
||||
|
||||
private void createBroker() throws Exception {
|
||||
createBroker(true);
|
||||
}
|
||||
|
||||
private void createBroker(boolean deleteAllMessages) throws Exception {
|
||||
broker = BrokerFactory.createBroker("broker:(vm://" + getName(true) + ")");
|
||||
broker.setBrokerName(getName(true));
|
||||
broker.setDeleteAllMessagesOnStartup(deleteAllMessages);
|
||||
broker.getManagementContext().setCreateConnector(false);
|
||||
broker.setAdvisorySupport(false);
|
||||
broker.addConnector("tcp://0.0.0.0:0");
|
||||
|
||||
setDefaultPersistenceAdapter(broker);
|
||||
broker.start();
|
||||
}
|
||||
|
||||
private void destroyBroker() throws Exception {
|
||||
if (broker != null)
|
||||
broker.stop();
|
||||
}
|
||||
|
||||
public void initCombosForTestIndexPageUsage() {
|
||||
addCombinationValues("messageCount", new Integer[]{890, 900, 400});
|
||||
}
|
||||
|
||||
public void testIndexPageUsage() throws Exception {
|
||||
Connection con = createConnection();
|
||||
Session session = con.createSession(false, Session.AUTO_ACKNOWLEDGE);
|
||||
session.createDurableSubscriber(topic, "true", "filter = 'true'", true);
|
||||
session.close();
|
||||
|
||||
session = con.createSession(false, Session.AUTO_ACKNOWLEDGE);
|
||||
session.createDurableSubscriber(topic, "false", "filter = 'false'", true);
|
||||
session.close();
|
||||
|
||||
con.close();
|
||||
|
||||
// send messages
|
||||
final Connection sendCon = createConnection("send");
|
||||
final Session sendSession = sendCon.createSession(false, Session.AUTO_ACKNOWLEDGE);
|
||||
final MessageProducer producer = sendSession.createProducer(null);
|
||||
|
||||
Thread sendThread = new Thread() {
|
||||
public void run() {
|
||||
try {
|
||||
|
||||
for (int i = 0; i < messageCount; i++) {
|
||||
boolean filter = i % 2 == 1;
|
||||
Message message = sendSession.createMessage();
|
||||
message.setStringProperty("filter", filter ? "true" : "false");
|
||||
producer.send(topic, message);
|
||||
|
||||
if (i > 0 && i % 1000 == 0) {
|
||||
LOG.info("Sent:" + i);
|
||||
}
|
||||
}
|
||||
sendSession.close();
|
||||
sendCon.close();
|
||||
} catch (Exception e) {
|
||||
exceptions.add(e);
|
||||
}
|
||||
}
|
||||
};
|
||||
sendThread.start();
|
||||
|
||||
sendThread.join();
|
||||
|
||||
// settle with sent messages
|
||||
TimeUnit.SECONDS.sleep(4);
|
||||
|
||||
// consume messages
|
||||
con = createConnection();
|
||||
session = con.createSession(false, Session.AUTO_ACKNOWLEDGE);
|
||||
|
||||
MessageConsumer consumerTrue = session.createDurableSubscriber(topic, "true", "filter = 'true'", true);
|
||||
Listener listenerT = new Listener();
|
||||
consumerTrue.setMessageListener(listenerT);
|
||||
|
||||
waitFor(listenerT, messageCount / 2);
|
||||
|
||||
MessageConsumer consumerFalse = session.createDurableSubscriber(topic, "false", "filter = 'false'", true);
|
||||
Listener listenerF = new Listener();
|
||||
consumerFalse.setMessageListener(listenerF);
|
||||
|
||||
waitFor(listenerF, messageCount / 2);
|
||||
|
||||
assertEquals(messageCount / 2, listenerT.count);
|
||||
assertEquals(messageCount / 2, listenerF.count);
|
||||
|
||||
session.close();
|
||||
con.close();
|
||||
|
||||
final KahaDBStore store = ((KahaDBPersistenceAdapter) broker.getPersistenceAdapter()).getStore();
|
||||
LOG.info("Store page count: " + store.getPageFile().getPageCount());
|
||||
LOG.info("Store free page count: " + store.getPageFile().getFreePageCount());
|
||||
LOG.info("Store page in-use: " + (store.getPageFile().getPageCount() - store.getPageFile().getFreePageCount()));
|
||||
|
||||
assertTrue("no leak of pages, always use just 10", Wait.waitFor(new Wait.Condition() {
|
||||
@Override
|
||||
public boolean isSatisified() throws Exception {
|
||||
return 10 == store.getPageFile().getPageCount() -
|
||||
store.getPageFile().getFreePageCount();
|
||||
}
|
||||
}, TimeUnit.SECONDS.toMillis(10)));
|
||||
}
|
||||
|
||||
private void waitFor(final Listener listener, final int count) throws Exception {
|
||||
|
||||
assertTrue("got all messages on time", Wait.waitFor(new Wait.Condition() {
|
||||
@Override
|
||||
public boolean isSatisified() throws Exception {
|
||||
return listener.count == count;
|
||||
}
|
||||
}, TimeUnit.MINUTES.toMillis(10)));
|
||||
|
||||
}
|
||||
|
||||
private void dumpstats() throws Exception {
|
||||
//TimeUnit.SECONDS.sleep(2);
|
||||
//ThreadTracker.result();
|
||||
TimeUnit.SECONDS.sleep(4);
|
||||
|
||||
|
||||
}
|
||||
|
||||
public static class Listener implements MessageListener {
|
||||
int count = 0;
|
||||
String id = null;
|
||||
|
||||
Listener() {
|
||||
}
|
||||
|
||||
public void onMessage(Message message) {
|
||||
count++;
|
||||
if (id != null) {
|
||||
try {
|
||||
LOG.info(id + ", " + message.getJMSMessageID());
|
||||
} catch (Exception ignored) {
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -332,10 +332,9 @@ public final class BTreeNode<Key,Value> {
|
|||
keys = child.keys;
|
||||
children = child.children;
|
||||
values = child.values;
|
||||
// free up the page..
|
||||
tx.free(child.getPage());
|
||||
}
|
||||
|
||||
// free up the page..
|
||||
tx.free(child.getPage());
|
||||
}
|
||||
index.storeNode(tx, this, true);
|
||||
}
|
||||
|
|
|
@ -309,15 +309,7 @@ public final class ListNode<Key, Value> {
|
|||
}
|
||||
|
||||
public void storeUpdate(Transaction tx) throws IOException {
|
||||
try {
|
||||
if (this.entries.size() == 1) {
|
||||
getContainingList().storeNode(tx, this, true);
|
||||
} else {
|
||||
getContainingList().storeNode(tx, this, false);
|
||||
}
|
||||
} catch (Transaction.PageOverflowIOException e) {
|
||||
split(tx, ADD_FIRST);
|
||||
}
|
||||
getContainingList().storeNode(tx, this, true);
|
||||
}
|
||||
|
||||
private void store(Transaction tx, boolean addFirst) throws IOException {
|
||||
|
@ -342,11 +334,7 @@ public final class ListNode<Key, Value> {
|
|||
}
|
||||
|
||||
private void store(Transaction tx) throws IOException {
|
||||
if (this.entries.size() == 1) {
|
||||
getContainingList().storeNode(tx, this, true);
|
||||
} else {
|
||||
getContainingList().storeNode(tx, this, false);
|
||||
}
|
||||
getContainingList().storeNode(tx, this, true);
|
||||
}
|
||||
|
||||
private void split(Transaction tx, boolean isAddFirst) throws IOException {
|
||||
|
|
|
@ -307,6 +307,9 @@ public class Transaction implements Iterable<Page> {
|
|||
System.arraycopy(buf, 0, data, 0, pageSize);
|
||||
Transaction.this.write(current, data);
|
||||
|
||||
// make the new link visible
|
||||
pageFile.addToCache(current);
|
||||
|
||||
// Reset for the next page chunk
|
||||
pos = 0;
|
||||
// The page header marshalled after the data is written.
|
||||
|
|
Loading…
Reference in New Issue