/** * 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.broker.region.cursors; import java.io.IOException; import java.util.ArrayList; import java.util.List; import org.apache.activemq.broker.BrokerService; import org.apache.activemq.store.kahadb.FilteredKahaDBPersistenceAdapter; import org.apache.activemq.store.kahadb.KahaDBPersistenceAdapter; import org.apache.activemq.store.kahadb.MultiKahaDBPersistenceAdapter; /** * This test checks that pending message metrics work properly with MultiKahaDB * * AMQ-5923 * */ public class MultiKahaDBPendingMessageCursorTest extends KahaDBPendingMessageCursorTest { /** * @param prioritizedMessages */ public MultiKahaDBPendingMessageCursorTest(final boolean prioritizedMessages, final boolean enableSubscriptionStatistics) { super(prioritizedMessages, enableSubscriptionStatistics); } @Override protected void initPersistence(BrokerService brokerService) throws IOException { broker.setPersistent(true); //setup multi-kaha adapter MultiKahaDBPersistenceAdapter persistenceAdapter = new MultiKahaDBPersistenceAdapter(); persistenceAdapter.setDirectory(dataFileDir.getRoot()); KahaDBPersistenceAdapter kahaStore = new KahaDBPersistenceAdapter(); kahaStore.setJournalMaxFileLength(1024 * 512); kahaStore.setEnableSubscriptionStatistics(enableSubscriptionStatistics); //set up a store per destination FilteredKahaDBPersistenceAdapter filtered = new FilteredKahaDBPersistenceAdapter(); filtered.setPersistenceAdapter(kahaStore); filtered.setPerDestination(true); List<FilteredKahaDBPersistenceAdapter> stores = new ArrayList<>(); stores.add(filtered); persistenceAdapter.setFilteredPersistenceAdapters(stores); broker.setPersistenceAdapter(persistenceAdapter); } }