mirror of https://github.com/apache/activemq.git
https://issues.apache.org/jira/browse/AMQ-2922 - rework, introduce new store 'mKahaDB' that contains multiple filtered kahadb persistence adapters, destinations match a store using destination wildcards in the same way as policy entries. Transactions that span multiple stores use a local xa variant to ensure consistency
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1170201 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
232d59a77d
commit
15953786d1
|
@ -0,0 +1,58 @@
|
||||||
|
/**
|
||||||
|
* 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.filter;
|
||||||
|
|
||||||
|
import java.lang.IllegalStateException;
|
||||||
|
import javax.jms.*;
|
||||||
|
import org.apache.activemq.command.ActiveMQDestination;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* allow match to any set of composite destinations, both queues and topics
|
||||||
|
*/
|
||||||
|
public class AnyDestination extends ActiveMQDestination {
|
||||||
|
|
||||||
|
public AnyDestination(ActiveMQDestination[] destinations) {
|
||||||
|
super(destinations);
|
||||||
|
// ensure we are small when it comes to comparison in DestinationMap
|
||||||
|
physicalName = "0";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected String getQualifiedPrefix() {
|
||||||
|
return "Any://";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public byte getDestinationType() {
|
||||||
|
return ActiveMQDestination.QUEUE_TYPE & ActiveMQDestination.TOPIC_TYPE;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public byte getDataStructureType() {
|
||||||
|
throw new IllegalStateException("not for marshalling");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean isQueue() {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean isTopic() {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,105 +0,0 @@
|
||||||
/**
|
|
||||||
* 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.store.kahadb;
|
|
||||||
|
|
||||||
import java.io.File;
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.Collection;
|
|
||||||
import java.util.Collections;
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.Map;
|
|
||||||
import java.util.Set;
|
|
||||||
import java.util.concurrent.atomic.AtomicLong;
|
|
||||||
|
|
||||||
import org.apache.activemq.command.ActiveMQDestination;
|
|
||||||
import org.apache.kahadb.journal.DataFile;
|
|
||||||
import org.apache.kahadb.journal.Journal;
|
|
||||||
|
|
||||||
|
|
||||||
public class DefaultJournalManager implements JournalManager {
|
|
||||||
|
|
||||||
private final Journal journal;
|
|
||||||
private final List<Journal> journals;
|
|
||||||
|
|
||||||
public DefaultJournalManager() {
|
|
||||||
this.journal = new Journal();
|
|
||||||
List<Journal> list = new ArrayList<Journal>(1);
|
|
||||||
list.add(this.journal);
|
|
||||||
this.journals = Collections.unmodifiableList(list);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void start() throws IOException {
|
|
||||||
journal.start();
|
|
||||||
}
|
|
||||||
|
|
||||||
public void close() throws IOException {
|
|
||||||
journal.close();
|
|
||||||
}
|
|
||||||
|
|
||||||
public Journal getJournal(ActiveMQDestination destination) {
|
|
||||||
return journal;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDirectory(File directory) {
|
|
||||||
journal.setDirectory(directory);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setMaxFileLength(int maxFileLength) {
|
|
||||||
journal.setMaxFileLength(maxFileLength);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCheckForCorruptionOnStartup(boolean checkForCorruptJournalFiles) {
|
|
||||||
journal.setCheckForCorruptionOnStartup(checkForCorruptJournalFiles);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setChecksum(boolean checksum) {
|
|
||||||
journal.setChecksum(checksum);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setWriteBatchSize(int batchSize) {
|
|
||||||
journal.setWriteBatchSize(batchSize);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setArchiveDataLogs(boolean archiveDataLogs) {
|
|
||||||
journal.setArchiveDataLogs(archiveDataLogs);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStoreSize(AtomicLong storeSize) {
|
|
||||||
journal.setSizeAccumulator(storeSize);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDirectoryArchive(File directoryArchive) {
|
|
||||||
journal.setDirectoryArchive(directoryArchive);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void delete() throws IOException {
|
|
||||||
journal.delete();
|
|
||||||
}
|
|
||||||
|
|
||||||
public Map<Integer, DataFile> getFileMap() {
|
|
||||||
return journal.getFileMap();
|
|
||||||
}
|
|
||||||
|
|
||||||
public Collection<Journal> getJournals() {
|
|
||||||
return journals;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Collection<Journal> getJournals(Set<ActiveMQDestination> set) {
|
|
||||||
return journals;
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,239 +0,0 @@
|
||||||
/**
|
|
||||||
* 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.store.kahadb;
|
|
||||||
|
|
||||||
import java.io.File;
|
|
||||||
import java.io.FilenameFilter;
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.Collection;
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.Map;
|
|
||||||
import java.util.Set;
|
|
||||||
import java.util.concurrent.ConcurrentHashMap;
|
|
||||||
import java.util.concurrent.atomic.AtomicBoolean;
|
|
||||||
import java.util.concurrent.atomic.AtomicLong;
|
|
||||||
|
|
||||||
import org.apache.activemq.command.ActiveMQDestination;
|
|
||||||
import org.apache.activemq.command.ActiveMQQueue;
|
|
||||||
import org.apache.activemq.command.ActiveMQTopic;
|
|
||||||
import org.apache.activemq.util.IOHelper;
|
|
||||||
import org.apache.kahadb.journal.DataFile;
|
|
||||||
import org.apache.kahadb.journal.Journal;
|
|
||||||
|
|
||||||
public class DestinationJournalManager implements JournalManager {
|
|
||||||
private static final String PREPEND = "JournalDest-";
|
|
||||||
private static final String QUEUE_PREPEND = PREPEND + "Queue-";
|
|
||||||
private static final String TOPIC_PREPEND = PREPEND + "Topic-";
|
|
||||||
private AtomicBoolean started = new AtomicBoolean();
|
|
||||||
private final Map<ActiveMQDestination, Journal> journalMap = new ConcurrentHashMap<ActiveMQDestination, Journal>();
|
|
||||||
private File directory = new File("KahaDB");
|
|
||||||
private File directoryArchive;
|
|
||||||
private int maxFileLength = Journal.DEFAULT_MAX_FILE_LENGTH;
|
|
||||||
private boolean checkForCorruptionOnStartup;
|
|
||||||
private boolean checksum = false;
|
|
||||||
private int writeBatchSize = Journal.DEFAULT_MAX_WRITE_BATCH_SIZE;
|
|
||||||
private boolean archiveDataLogs;
|
|
||||||
private AtomicLong storeSize = new AtomicLong(0);
|
|
||||||
|
|
||||||
|
|
||||||
public AtomicBoolean getStarted() {
|
|
||||||
return started;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStarted(AtomicBoolean started) {
|
|
||||||
this.started = started;
|
|
||||||
}
|
|
||||||
|
|
||||||
public File getDirectory() {
|
|
||||||
return directory;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDirectory(File directory) {
|
|
||||||
this.directory = directory;
|
|
||||||
}
|
|
||||||
|
|
||||||
public File getDirectoryArchive() {
|
|
||||||
return directoryArchive;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDirectoryArchive(File directoryArchive) {
|
|
||||||
this.directoryArchive = directoryArchive;
|
|
||||||
}
|
|
||||||
|
|
||||||
public int getMaxFileLength() {
|
|
||||||
return maxFileLength;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setMaxFileLength(int maxFileLength) {
|
|
||||||
this.maxFileLength = maxFileLength;
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean isCheckForCorruptionOnStartup() {
|
|
||||||
return checkForCorruptionOnStartup;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCheckForCorruptionOnStartup(boolean checkForCorruptionOnStartup) {
|
|
||||||
this.checkForCorruptionOnStartup = checkForCorruptionOnStartup;
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean isChecksum() {
|
|
||||||
return checksum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setChecksum(boolean checksum) {
|
|
||||||
this.checksum = checksum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public int getWriteBatchSize() {
|
|
||||||
return writeBatchSize;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setWriteBatchSize(int writeBatchSize) {
|
|
||||||
this.writeBatchSize = writeBatchSize;
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean isArchiveDataLogs() {
|
|
||||||
return archiveDataLogs;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setArchiveDataLogs(boolean archiveDataLogs) {
|
|
||||||
this.archiveDataLogs = archiveDataLogs;
|
|
||||||
}
|
|
||||||
|
|
||||||
public AtomicLong getStoreSize() {
|
|
||||||
return storeSize;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStoreSize(AtomicLong storeSize) {
|
|
||||||
this.storeSize = storeSize;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
public void start() throws IOException {
|
|
||||||
if (started.compareAndSet(false, true)) {
|
|
||||||
File[] files = getDirectory().listFiles(new FilenameFilter() {
|
|
||||||
public boolean accept(File file, String s) {
|
|
||||||
if (file.isDirectory() && s != null && s.startsWith(PREPEND)) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
if (files != null) {
|
|
||||||
for (File file : files) {
|
|
||||||
ActiveMQDestination destination;
|
|
||||||
if (file.getName().startsWith(TOPIC_PREPEND)) {
|
|
||||||
String destinationName = file.getName().substring(TOPIC_PREPEND.length());
|
|
||||||
destination = new ActiveMQTopic(destinationName);
|
|
||||||
} else {
|
|
||||||
String destinationName = file.getName().substring(QUEUE_PREPEND.length());
|
|
||||||
destination = new ActiveMQQueue(destinationName);
|
|
||||||
}
|
|
||||||
|
|
||||||
Journal journal = new Journal();
|
|
||||||
journal.setDirectory(file);
|
|
||||||
if (getDirectoryArchive() != null) {
|
|
||||||
IOHelper.mkdirs(getDirectoryArchive());
|
|
||||||
File archive = new File(getDirectoryArchive(), file.getName());
|
|
||||||
IOHelper.mkdirs(archive);
|
|
||||||
journal.setDirectoryArchive(archive);
|
|
||||||
}
|
|
||||||
configure(journal);
|
|
||||||
journalMap.put(destination, journal);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
for (Journal journal : journalMap.values()) {
|
|
||||||
journal.start();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public void close() throws IOException {
|
|
||||||
started.set(false);
|
|
||||||
for (Journal journal : journalMap.values()) {
|
|
||||||
journal.close();
|
|
||||||
}
|
|
||||||
journalMap.clear();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
public void delete() throws IOException {
|
|
||||||
for (Journal journal : journalMap.values()) {
|
|
||||||
journal.delete();
|
|
||||||
}
|
|
||||||
journalMap.clear();
|
|
||||||
}
|
|
||||||
|
|
||||||
public Journal getJournal(ActiveMQDestination destination) throws IOException {
|
|
||||||
Journal journal = journalMap.get(destination);
|
|
||||||
if (journal == null && !destination.isTemporary()) {
|
|
||||||
journal = new Journal();
|
|
||||||
String fileName;
|
|
||||||
if (destination.isTopic()) {
|
|
||||||
fileName = TOPIC_PREPEND + destination.getPhysicalName();
|
|
||||||
} else {
|
|
||||||
fileName = QUEUE_PREPEND + destination.getPhysicalName();
|
|
||||||
}
|
|
||||||
File file = new File(getDirectory(), fileName);
|
|
||||||
IOHelper.mkdirs(file);
|
|
||||||
journal.setDirectory(file);
|
|
||||||
if (getDirectoryArchive() != null) {
|
|
||||||
IOHelper.mkdirs(getDirectoryArchive());
|
|
||||||
File archive = new File(getDirectoryArchive(), fileName);
|
|
||||||
IOHelper.mkdirs(archive);
|
|
||||||
journal.setDirectoryArchive(archive);
|
|
||||||
}
|
|
||||||
configure(journal);
|
|
||||||
if (started.get()) {
|
|
||||||
journal.start();
|
|
||||||
}
|
|
||||||
return journal;
|
|
||||||
} else {
|
|
||||||
return journal;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public Map<Integer, DataFile> getFileMap() {
|
|
||||||
throw new RuntimeException("Not supported");
|
|
||||||
}
|
|
||||||
|
|
||||||
public Collection<Journal> getJournals() {
|
|
||||||
return journalMap.values();
|
|
||||||
}
|
|
||||||
|
|
||||||
public Collection<Journal> getJournals(Set<ActiveMQDestination> set) {
|
|
||||||
List<Journal> list = new ArrayList<Journal>();
|
|
||||||
for (ActiveMQDestination destination : set) {
|
|
||||||
Journal j = journalMap.get(destination);
|
|
||||||
if (j != null) {
|
|
||||||
list.add(j);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return list;
|
|
||||||
}
|
|
||||||
|
|
||||||
protected void configure(Journal journal) {
|
|
||||||
journal.setMaxFileLength(getMaxFileLength());
|
|
||||||
journal.setCheckForCorruptionOnStartup(isCheckForCorruptionOnStartup());
|
|
||||||
journal.setChecksum(isChecksum() || isCheckForCorruptionOnStartup());
|
|
||||||
journal.setWriteBatchSize(getWriteBatchSize());
|
|
||||||
journal.setArchiveDataLogs(isArchiveDataLogs());
|
|
||||||
journal.setSizeAccumulator(getStoreSize());
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -0,0 +1,40 @@
|
||||||
|
/**
|
||||||
|
* 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.store.kahadb;
|
||||||
|
|
||||||
|
import org.apache.activemq.filter.DestinationMapEntry;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @org.apache.xbean.XBean element="filteredKahaDB"
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public class FilteredKahaDBPersistenceAdapter extends DestinationMapEntry {
|
||||||
|
private KahaDBPersistenceAdapter persistenceAdapter;
|
||||||
|
|
||||||
|
public KahaDBPersistenceAdapter getPersistenceAdapter() {
|
||||||
|
return persistenceAdapter;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPersistenceAdapter(KahaDBPersistenceAdapter persistenceAdapter) {
|
||||||
|
this.persistenceAdapter = persistenceAdapter;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void afterPropertiesSet() throws Exception {
|
||||||
|
// ok to have no destination, we default it
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,61 +0,0 @@
|
||||||
/**
|
|
||||||
* 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.store.kahadb;
|
|
||||||
|
|
||||||
import java.io.File;
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.util.Collection;
|
|
||||||
import java.util.Map;
|
|
||||||
import java.util.Set;
|
|
||||||
import java.util.concurrent.atomic.AtomicLong;
|
|
||||||
|
|
||||||
import org.apache.activemq.command.ActiveMQDestination;
|
|
||||||
import org.apache.kahadb.journal.DataFile;
|
|
||||||
import org.apache.kahadb.journal.Journal;
|
|
||||||
|
|
||||||
public interface JournalManager {
|
|
||||||
|
|
||||||
void start() throws IOException;
|
|
||||||
|
|
||||||
void close() throws IOException;
|
|
||||||
|
|
||||||
Journal getJournal(ActiveMQDestination destination) throws IOException;
|
|
||||||
|
|
||||||
void setDirectory(File directory);
|
|
||||||
|
|
||||||
void setMaxFileLength(int maxFileLength);
|
|
||||||
|
|
||||||
void setCheckForCorruptionOnStartup(boolean checkForCorruptJournalFiles);
|
|
||||||
|
|
||||||
void setChecksum(boolean checksum);
|
|
||||||
|
|
||||||
void setWriteBatchSize(int batchSize);
|
|
||||||
|
|
||||||
void setArchiveDataLogs(boolean archiveDataLogs);
|
|
||||||
|
|
||||||
void setStoreSize(AtomicLong storeSize);
|
|
||||||
|
|
||||||
void setDirectoryArchive(File directoryArchive);
|
|
||||||
|
|
||||||
void delete() throws IOException;
|
|
||||||
|
|
||||||
Map<Integer, DataFile> getFileMap();
|
|
||||||
|
|
||||||
Collection<Journal> getJournals();
|
|
||||||
|
|
||||||
Collection<Journal> getJournals(Set<ActiveMQDestination> set);
|
|
||||||
}
|
|
|
@ -19,7 +19,6 @@ package org.apache.activemq.store.kahadb;
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
|
|
||||||
import org.apache.activeio.journal.Journal;
|
import org.apache.activeio.journal.Journal;
|
||||||
import org.apache.activemq.broker.BrokerService;
|
import org.apache.activemq.broker.BrokerService;
|
||||||
import org.apache.activemq.broker.BrokerServiceAware;
|
import org.apache.activemq.broker.BrokerServiceAware;
|
||||||
|
@ -27,11 +26,18 @@ import org.apache.activemq.broker.ConnectionContext;
|
||||||
import org.apache.activemq.command.ActiveMQDestination;
|
import org.apache.activemq.command.ActiveMQDestination;
|
||||||
import org.apache.activemq.command.ActiveMQQueue;
|
import org.apache.activemq.command.ActiveMQQueue;
|
||||||
import org.apache.activemq.command.ActiveMQTopic;
|
import org.apache.activemq.command.ActiveMQTopic;
|
||||||
|
import org.apache.activemq.command.LocalTransactionId;
|
||||||
import org.apache.activemq.command.ProducerId;
|
import org.apache.activemq.command.ProducerId;
|
||||||
|
import org.apache.activemq.command.TransactionId;
|
||||||
|
import org.apache.activemq.command.XATransactionId;
|
||||||
|
import org.apache.activemq.protobuf.Buffer;
|
||||||
import org.apache.activemq.store.MessageStore;
|
import org.apache.activemq.store.MessageStore;
|
||||||
import org.apache.activemq.store.PersistenceAdapter;
|
import org.apache.activemq.store.PersistenceAdapter;
|
||||||
import org.apache.activemq.store.TopicMessageStore;
|
import org.apache.activemq.store.TopicMessageStore;
|
||||||
import org.apache.activemq.store.TransactionStore;
|
import org.apache.activemq.store.TransactionStore;
|
||||||
|
import org.apache.activemq.store.kahadb.data.KahaLocalTransactionId;
|
||||||
|
import org.apache.activemq.store.kahadb.data.KahaTransactionInfo;
|
||||||
|
import org.apache.activemq.store.kahadb.data.KahaXATransactionId;
|
||||||
import org.apache.activemq.usage.SystemUsage;
|
import org.apache.activemq.usage.SystemUsage;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -46,6 +52,8 @@ public class KahaDBPersistenceAdapter implements PersistenceAdapter, BrokerServi
|
||||||
private final KahaDBStore letter = new KahaDBStore();
|
private final KahaDBStore letter = new KahaDBStore();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @param context
|
||||||
|
* @throws IOException
|
||||||
* @see org.apache.activemq.store.PersistenceAdapter#beginTransaction(org.apache.activemq.broker.ConnectionContext)
|
* @see org.apache.activemq.store.PersistenceAdapter#beginTransaction(org.apache.activemq.broker.ConnectionContext)
|
||||||
*/
|
*/
|
||||||
public void beginTransaction(ConnectionContext context) throws IOException {
|
public void beginTransaction(ConnectionContext context) throws IOException {
|
||||||
|
@ -53,6 +61,8 @@ public class KahaDBPersistenceAdapter implements PersistenceAdapter, BrokerServi
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @param sync
|
||||||
|
* @throws IOException
|
||||||
* @see org.apache.activemq.store.PersistenceAdapter#checkpoint(boolean)
|
* @see org.apache.activemq.store.PersistenceAdapter#checkpoint(boolean)
|
||||||
*/
|
*/
|
||||||
public void checkpoint(boolean sync) throws IOException {
|
public void checkpoint(boolean sync) throws IOException {
|
||||||
|
@ -60,6 +70,8 @@ public class KahaDBPersistenceAdapter implements PersistenceAdapter, BrokerServi
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @param context
|
||||||
|
* @throws IOException
|
||||||
* @see org.apache.activemq.store.PersistenceAdapter#commitTransaction(org.apache.activemq.broker.ConnectionContext)
|
* @see org.apache.activemq.store.PersistenceAdapter#commitTransaction(org.apache.activemq.broker.ConnectionContext)
|
||||||
*/
|
*/
|
||||||
public void commitTransaction(ConnectionContext context) throws IOException {
|
public void commitTransaction(ConnectionContext context) throws IOException {
|
||||||
|
@ -67,7 +79,9 @@ public class KahaDBPersistenceAdapter implements PersistenceAdapter, BrokerServi
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @param destination
|
||||||
* @return MessageStore
|
* @return MessageStore
|
||||||
|
* @throws IOException
|
||||||
* @see org.apache.activemq.store.PersistenceAdapter#createQueueMessageStore(org.apache.activemq.command.ActiveMQQueue)
|
* @see org.apache.activemq.store.PersistenceAdapter#createQueueMessageStore(org.apache.activemq.command.ActiveMQQueue)
|
||||||
*/
|
*/
|
||||||
public MessageStore createQueueMessageStore(ActiveMQQueue destination) throws IOException {
|
public MessageStore createQueueMessageStore(ActiveMQQueue destination) throws IOException {
|
||||||
|
@ -75,7 +89,9 @@ public class KahaDBPersistenceAdapter implements PersistenceAdapter, BrokerServi
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @param destination
|
||||||
* @return TopicMessageStore
|
* @return TopicMessageStore
|
||||||
|
* @throws IOException
|
||||||
* @see org.apache.activemq.store.PersistenceAdapter#createTopicMessageStore(org.apache.activemq.command.ActiveMQTopic)
|
* @see org.apache.activemq.store.PersistenceAdapter#createTopicMessageStore(org.apache.activemq.command.ActiveMQTopic)
|
||||||
*/
|
*/
|
||||||
public TopicMessageStore createTopicMessageStore(ActiveMQTopic destination) throws IOException {
|
public TopicMessageStore createTopicMessageStore(ActiveMQTopic destination) throws IOException {
|
||||||
|
@ -83,7 +99,8 @@ public class KahaDBPersistenceAdapter implements PersistenceAdapter, BrokerServi
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return TrandactionStore
|
* @return TransactionStore
|
||||||
|
* @throws IOException
|
||||||
* @see org.apache.activemq.store.PersistenceAdapter#createTransactionStore()
|
* @see org.apache.activemq.store.PersistenceAdapter#createTransactionStore()
|
||||||
*/
|
*/
|
||||||
public TransactionStore createTransactionStore() throws IOException {
|
public TransactionStore createTransactionStore() throws IOException {
|
||||||
|
@ -91,6 +108,7 @@ public class KahaDBPersistenceAdapter implements PersistenceAdapter, BrokerServi
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @throws IOException
|
||||||
* @see org.apache.activemq.store.PersistenceAdapter#deleteAllMessages()
|
* @see org.apache.activemq.store.PersistenceAdapter#deleteAllMessages()
|
||||||
*/
|
*/
|
||||||
public void deleteAllMessages() throws IOException {
|
public void deleteAllMessages() throws IOException {
|
||||||
|
@ -107,6 +125,7 @@ public class KahaDBPersistenceAdapter implements PersistenceAdapter, BrokerServi
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return lastMessageBrokerSequenceId
|
* @return lastMessageBrokerSequenceId
|
||||||
|
* @throws IOException
|
||||||
* @see org.apache.activemq.store.PersistenceAdapter#getLastMessageBrokerSequenceId()
|
* @see org.apache.activemq.store.PersistenceAdapter#getLastMessageBrokerSequenceId()
|
||||||
*/
|
*/
|
||||||
public long getLastMessageBrokerSequenceId() throws IOException {
|
public long getLastMessageBrokerSequenceId() throws IOException {
|
||||||
|
@ -118,6 +137,7 @@ public class KahaDBPersistenceAdapter implements PersistenceAdapter, BrokerServi
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @param destination
|
||||||
* @see org.apache.activemq.store.PersistenceAdapter#removeQueueMessageStore(org.apache.activemq.command.ActiveMQQueue)
|
* @see org.apache.activemq.store.PersistenceAdapter#removeQueueMessageStore(org.apache.activemq.command.ActiveMQQueue)
|
||||||
*/
|
*/
|
||||||
public void removeQueueMessageStore(ActiveMQQueue destination) {
|
public void removeQueueMessageStore(ActiveMQQueue destination) {
|
||||||
|
@ -125,6 +145,7 @@ public class KahaDBPersistenceAdapter implements PersistenceAdapter, BrokerServi
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @param destination
|
||||||
* @see org.apache.activemq.store.PersistenceAdapter#removeTopicMessageStore(org.apache.activemq.command.ActiveMQTopic)
|
* @see org.apache.activemq.store.PersistenceAdapter#removeTopicMessageStore(org.apache.activemq.command.ActiveMQTopic)
|
||||||
*/
|
*/
|
||||||
public void removeTopicMessageStore(ActiveMQTopic destination) {
|
public void removeTopicMessageStore(ActiveMQTopic destination) {
|
||||||
|
@ -132,6 +153,8 @@ public class KahaDBPersistenceAdapter implements PersistenceAdapter, BrokerServi
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @param context
|
||||||
|
* @throws IOException
|
||||||
* @see org.apache.activemq.store.PersistenceAdapter#rollbackTransaction(org.apache.activemq.broker.ConnectionContext)
|
* @see org.apache.activemq.store.PersistenceAdapter#rollbackTransaction(org.apache.activemq.broker.ConnectionContext)
|
||||||
*/
|
*/
|
||||||
public void rollbackTransaction(ConnectionContext context) throws IOException {
|
public void rollbackTransaction(ConnectionContext context) throws IOException {
|
||||||
|
@ -139,6 +162,7 @@ public class KahaDBPersistenceAdapter implements PersistenceAdapter, BrokerServi
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @param brokerName
|
||||||
* @see org.apache.activemq.store.PersistenceAdapter#setBrokerName(java.lang.String)
|
* @see org.apache.activemq.store.PersistenceAdapter#setBrokerName(java.lang.String)
|
||||||
*/
|
*/
|
||||||
public void setBrokerName(String brokerName) {
|
public void setBrokerName(String brokerName) {
|
||||||
|
@ -146,6 +170,7 @@ public class KahaDBPersistenceAdapter implements PersistenceAdapter, BrokerServi
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @param usageManager
|
||||||
* @see org.apache.activemq.store.PersistenceAdapter#setUsageManager(org.apache.activemq.usage.SystemUsage)
|
* @see org.apache.activemq.store.PersistenceAdapter#setUsageManager(org.apache.activemq.usage.SystemUsage)
|
||||||
*/
|
*/
|
||||||
public void setUsageManager(SystemUsage usageManager) {
|
public void setUsageManager(SystemUsage usageManager) {
|
||||||
|
@ -161,6 +186,7 @@ public class KahaDBPersistenceAdapter implements PersistenceAdapter, BrokerServi
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @throws Exception
|
||||||
* @see org.apache.activemq.Service#start()
|
* @see org.apache.activemq.Service#start()
|
||||||
*/
|
*/
|
||||||
public void start() throws Exception {
|
public void start() throws Exception {
|
||||||
|
@ -168,6 +194,7 @@ public class KahaDBPersistenceAdapter implements PersistenceAdapter, BrokerServi
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @throws Exception
|
||||||
* @see org.apache.activemq.Service#stop()
|
* @see org.apache.activemq.Service#stop()
|
||||||
*/
|
*/
|
||||||
public void stop() throws Exception {
|
public void stop() throws Exception {
|
||||||
|
@ -186,6 +213,8 @@ public class KahaDBPersistenceAdapter implements PersistenceAdapter, BrokerServi
|
||||||
/**
|
/**
|
||||||
* When set using Xbean, values of the form "20 Mb", "1024kb", and "1g" can
|
* When set using Xbean, values of the form "20 Mb", "1024kb", and "1g" can
|
||||||
* be used
|
* be used
|
||||||
|
*
|
||||||
|
* @org.apache.xbean.Property propertyEditor="org.apache.activemq.util.MemoryIntPropertyEditor"
|
||||||
*/
|
*/
|
||||||
public void setJournalMaxFileLength(int journalMaxFileLength) {
|
public void setJournalMaxFileLength(int journalMaxFileLength) {
|
||||||
this.letter.setJournalMaxFileLength(journalMaxFileLength);
|
this.letter.setJournalMaxFileLength(journalMaxFileLength);
|
||||||
|
@ -226,7 +255,8 @@ public class KahaDBPersistenceAdapter implements PersistenceAdapter, BrokerServi
|
||||||
/**
|
/**
|
||||||
* Set the checkpointInterval
|
* Set the checkpointInterval
|
||||||
*
|
*
|
||||||
* @param checkpointInterval the checkpointInterval to set
|
* @param checkpointInterval
|
||||||
|
* the checkpointInterval to set
|
||||||
*/
|
*/
|
||||||
public void setCheckpointInterval(long checkpointInterval) {
|
public void setCheckpointInterval(long checkpointInterval) {
|
||||||
this.letter.setCheckpointInterval(checkpointInterval);
|
this.letter.setCheckpointInterval(checkpointInterval);
|
||||||
|
@ -244,7 +274,8 @@ public class KahaDBPersistenceAdapter implements PersistenceAdapter, BrokerServi
|
||||||
/**
|
/**
|
||||||
* Set the cleanupInterval
|
* Set the cleanupInterval
|
||||||
*
|
*
|
||||||
* @param cleanupInterval the cleanupInterval to set
|
* @param cleanupInterval
|
||||||
|
* the cleanupInterval to set
|
||||||
*/
|
*/
|
||||||
public void setCleanupInterval(long cleanupInterval) {
|
public void setCleanupInterval(long cleanupInterval) {
|
||||||
this.letter.setCleanupInterval(cleanupInterval);
|
this.letter.setCleanupInterval(cleanupInterval);
|
||||||
|
@ -262,8 +293,9 @@ public class KahaDBPersistenceAdapter implements PersistenceAdapter, BrokerServi
|
||||||
/**
|
/**
|
||||||
* Set the indexWriteBatchSize
|
* Set the indexWriteBatchSize
|
||||||
* When set using Xbean, values of the form "20 Mb", "1024kb", and "1g" can be used
|
* When set using Xbean, values of the form "20 Mb", "1024kb", and "1g" can be used
|
||||||
*
|
* @org.apache.xbean.Property propertyEditor="org.apache.activemq.util.MemoryPropertyEditor"
|
||||||
* @param indexWriteBatchSize the indexWriteBatchSize to set
|
* @param indexWriteBatchSize
|
||||||
|
* the indexWriteBatchSize to set
|
||||||
*/
|
*/
|
||||||
public void setIndexWriteBatchSize(int indexWriteBatchSize) {
|
public void setIndexWriteBatchSize(int indexWriteBatchSize) {
|
||||||
this.letter.setIndexWriteBatchSize(indexWriteBatchSize);
|
this.letter.setIndexWriteBatchSize(indexWriteBatchSize);
|
||||||
|
@ -281,8 +313,9 @@ public class KahaDBPersistenceAdapter implements PersistenceAdapter, BrokerServi
|
||||||
/**
|
/**
|
||||||
* Set the journalMaxWriteBatchSize
|
* Set the journalMaxWriteBatchSize
|
||||||
* * When set using Xbean, values of the form "20 Mb", "1024kb", and "1g" can be used
|
* * When set using Xbean, values of the form "20 Mb", "1024kb", and "1g" can be used
|
||||||
*
|
* @org.apache.xbean.Property propertyEditor="org.apache.activemq.util.MemoryPropertyEditor"
|
||||||
* @param journalMaxWriteBatchSize the journalMaxWriteBatchSize to set
|
* @param journalMaxWriteBatchSize
|
||||||
|
* the journalMaxWriteBatchSize to set
|
||||||
*/
|
*/
|
||||||
public void setJournalMaxWriteBatchSize(int journalMaxWriteBatchSize) {
|
public void setJournalMaxWriteBatchSize(int journalMaxWriteBatchSize) {
|
||||||
this.letter.setJournalMaxWriteBatchSize(journalMaxWriteBatchSize);
|
this.letter.setJournalMaxWriteBatchSize(journalMaxWriteBatchSize);
|
||||||
|
@ -300,7 +333,8 @@ public class KahaDBPersistenceAdapter implements PersistenceAdapter, BrokerServi
|
||||||
/**
|
/**
|
||||||
* Set the enableIndexWriteAsync
|
* Set the enableIndexWriteAsync
|
||||||
*
|
*
|
||||||
* @param enableIndexWriteAsync the enableIndexWriteAsync to set
|
* @param enableIndexWriteAsync
|
||||||
|
* the enableIndexWriteAsync to set
|
||||||
*/
|
*/
|
||||||
public void setEnableIndexWriteAsync(boolean enableIndexWriteAsync) {
|
public void setEnableIndexWriteAsync(boolean enableIndexWriteAsync) {
|
||||||
this.letter.setEnableIndexWriteAsync(enableIndexWriteAsync);
|
this.letter.setEnableIndexWriteAsync(enableIndexWriteAsync);
|
||||||
|
@ -316,6 +350,7 @@ public class KahaDBPersistenceAdapter implements PersistenceAdapter, BrokerServi
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @param dir
|
||||||
* @see org.apache.activemq.store.PersistenceAdapter#setDirectory(java.io.File)
|
* @see org.apache.activemq.store.PersistenceAdapter#setDirectory(java.io.File)
|
||||||
*/
|
*/
|
||||||
public void setDirectory(File dir) {
|
public void setDirectory(File dir) {
|
||||||
|
@ -334,7 +369,8 @@ public class KahaDBPersistenceAdapter implements PersistenceAdapter, BrokerServi
|
||||||
/**
|
/**
|
||||||
* Set the enableJournalDiskSyncs
|
* Set the enableJournalDiskSyncs
|
||||||
*
|
*
|
||||||
* @param enableJournalDiskSyncs the enableJournalDiskSyncs to set
|
* @param enableJournalDiskSyncs
|
||||||
|
* the enableJournalDiskSyncs to set
|
||||||
*/
|
*/
|
||||||
public void setEnableJournalDiskSyncs(boolean enableJournalDiskSyncs) {
|
public void setEnableJournalDiskSyncs(boolean enableJournalDiskSyncs) {
|
||||||
this.letter.setEnableJournalDiskSyncs(enableJournalDiskSyncs);
|
this.letter.setEnableJournalDiskSyncs(enableJournalDiskSyncs);
|
||||||
|
@ -352,8 +388,9 @@ public class KahaDBPersistenceAdapter implements PersistenceAdapter, BrokerServi
|
||||||
/**
|
/**
|
||||||
* Set the indexCacheSize
|
* Set the indexCacheSize
|
||||||
* When set using Xbean, values of the form "20 Mb", "1024kb", and "1g" can be used
|
* When set using Xbean, values of the form "20 Mb", "1024kb", and "1g" can be used
|
||||||
*
|
* @org.apache.xbean.Property propertyEditor="org.apache.activemq.util.MemoryPropertyEditor"
|
||||||
* @param indexCacheSize the indexCacheSize to set
|
* @param indexCacheSize
|
||||||
|
* the indexCacheSize to set
|
||||||
*/
|
*/
|
||||||
public void setIndexCacheSize(int indexCacheSize) {
|
public void setIndexCacheSize(int indexCacheSize) {
|
||||||
this.letter.setIndexCacheSize(indexCacheSize);
|
this.letter.setIndexCacheSize(indexCacheSize);
|
||||||
|
@ -371,7 +408,8 @@ public class KahaDBPersistenceAdapter implements PersistenceAdapter, BrokerServi
|
||||||
/**
|
/**
|
||||||
* Set the ignoreMissingJournalfiles
|
* Set the ignoreMissingJournalfiles
|
||||||
*
|
*
|
||||||
* @param ignoreMissingJournalfiles the ignoreMissingJournalfiles to set
|
* @param ignoreMissingJournalfiles
|
||||||
|
* the ignoreMissingJournalfiles to set
|
||||||
*/
|
*/
|
||||||
public void setIgnoreMissingJournalfiles(boolean ignoreMissingJournalfiles) {
|
public void setIgnoreMissingJournalfiles(boolean ignoreMissingJournalfiles) {
|
||||||
this.letter.setIgnoreMissingJournalfiles(ignoreMissingJournalfiles);
|
this.letter.setIgnoreMissingJournalfiles(ignoreMissingJournalfiles);
|
||||||
|
@ -432,9 +470,9 @@ public class KahaDBPersistenceAdapter implements PersistenceAdapter, BrokerServi
|
||||||
public int getMaxAsyncJobs() {
|
public int getMaxAsyncJobs() {
|
||||||
return letter.getMaxAsyncJobs();
|
return letter.getMaxAsyncJobs();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param maxAsyncJobs the maxAsyncJobs to set
|
* @param maxAsyncJobs
|
||||||
|
* the maxAsyncJobs to set
|
||||||
*/
|
*/
|
||||||
public void setMaxAsyncJobs(int maxAsyncJobs) {
|
public void setMaxAsyncJobs(int maxAsyncJobs) {
|
||||||
letter.setMaxAsyncJobs(maxAsyncJobs);
|
letter.setMaxAsyncJobs(maxAsyncJobs);
|
||||||
|
@ -462,19 +500,33 @@ public class KahaDBPersistenceAdapter implements PersistenceAdapter, BrokerServi
|
||||||
letter.setForceRecoverIndex(forceRecoverIndex);
|
letter.setForceRecoverIndex(forceRecoverIndex);
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean isJournalPerDestination() {
|
|
||||||
return letter.isJournalPerDestination();
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setJournalPerDestination(boolean journalPerDestination) {
|
|
||||||
letter.setJournalPerDestination(journalPerDestination);
|
|
||||||
}
|
|
||||||
|
|
||||||
// for testing
|
|
||||||
public KahaDBStore getStore() {
|
public KahaDBStore getStore() {
|
||||||
return letter;
|
return letter;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public KahaTransactionInfo createTransactionInfo(TransactionId txid) {
|
||||||
|
if (txid == null) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
KahaTransactionInfo rc = new KahaTransactionInfo();
|
||||||
|
|
||||||
|
if (txid.isLocalTransaction()) {
|
||||||
|
LocalTransactionId t = (LocalTransactionId) txid;
|
||||||
|
KahaLocalTransactionId kahaTxId = new KahaLocalTransactionId();
|
||||||
|
kahaTxId.setConnectionId(t.getConnectionId().getValue());
|
||||||
|
kahaTxId.setTransacitonId(t.getValue());
|
||||||
|
rc.setLocalTransacitonId(kahaTxId);
|
||||||
|
} else {
|
||||||
|
XATransactionId t = (XATransactionId) txid;
|
||||||
|
KahaXATransactionId kahaTxId = new KahaXATransactionId();
|
||||||
|
kahaTxId.setBranchQualifier(new Buffer(t.getBranchQualifier()));
|
||||||
|
kahaTxId.setGlobalTransactionId(new Buffer(t.getGlobalTransactionId()));
|
||||||
|
kahaTxId.setFormatId(t.getFormatId());
|
||||||
|
rc.setXaTransacitonId(kahaTxId);
|
||||||
|
}
|
||||||
|
return rc;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
String path = getDirectory() != null ? getDirectory().getAbsolutePath() : "DIRECTORY_NOT_SET";
|
String path = getDirectory() != null ? getDirectory().getAbsolutePath() : "DIRECTORY_NOT_SET";
|
||||||
|
|
|
@ -26,22 +26,23 @@ import java.util.Iterator;
|
||||||
import java.util.LinkedList;
|
import java.util.LinkedList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import java.util.Map.Entry;
|
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
import java.util.concurrent.BlockingQueue;
|
import java.util.Map.Entry;
|
||||||
import java.util.concurrent.ExecutorService;
|
import java.util.concurrent.*;
|
||||||
import java.util.concurrent.Future;
|
|
||||||
import java.util.concurrent.FutureTask;
|
|
||||||
import java.util.concurrent.LinkedBlockingQueue;
|
|
||||||
import java.util.concurrent.Semaphore;
|
|
||||||
import java.util.concurrent.ThreadFactory;
|
|
||||||
import java.util.concurrent.ThreadPoolExecutor;
|
|
||||||
import java.util.concurrent.TimeUnit;
|
|
||||||
import java.util.concurrent.atomic.AtomicBoolean;
|
import java.util.concurrent.atomic.AtomicBoolean;
|
||||||
import java.util.concurrent.atomic.AtomicInteger;
|
import java.util.concurrent.atomic.AtomicInteger;
|
||||||
|
|
||||||
import org.apache.activemq.broker.ConnectionContext;
|
import org.apache.activemq.broker.ConnectionContext;
|
||||||
import org.apache.activemq.command.*;
|
import org.apache.activemq.command.ActiveMQDestination;
|
||||||
|
import org.apache.activemq.command.ActiveMQQueue;
|
||||||
|
import org.apache.activemq.command.ActiveMQTempQueue;
|
||||||
|
import org.apache.activemq.command.ActiveMQTempTopic;
|
||||||
|
import org.apache.activemq.command.ActiveMQTopic;
|
||||||
|
import org.apache.activemq.command.Message;
|
||||||
|
import org.apache.activemq.command.MessageAck;
|
||||||
|
import org.apache.activemq.command.MessageId;
|
||||||
|
import org.apache.activemq.command.ProducerId;
|
||||||
|
import org.apache.activemq.command.SubscriptionInfo;
|
||||||
|
import org.apache.activemq.command.TransactionId;
|
||||||
import org.apache.activemq.openwire.OpenWireFormat;
|
import org.apache.activemq.openwire.OpenWireFormat;
|
||||||
import org.apache.activemq.protobuf.Buffer;
|
import org.apache.activemq.protobuf.Buffer;
|
||||||
import org.apache.activemq.store.AbstractMessageStore;
|
import org.apache.activemq.store.AbstractMessageStore;
|
||||||
|
@ -52,20 +53,20 @@ import org.apache.activemq.store.TopicMessageStore;
|
||||||
import org.apache.activemq.store.TransactionStore;
|
import org.apache.activemq.store.TransactionStore;
|
||||||
import org.apache.activemq.store.kahadb.data.KahaAddMessageCommand;
|
import org.apache.activemq.store.kahadb.data.KahaAddMessageCommand;
|
||||||
import org.apache.activemq.store.kahadb.data.KahaDestination;
|
import org.apache.activemq.store.kahadb.data.KahaDestination;
|
||||||
import org.apache.activemq.store.kahadb.data.KahaDestination.DestinationType;
|
|
||||||
import org.apache.activemq.store.kahadb.data.KahaLocation;
|
import org.apache.activemq.store.kahadb.data.KahaLocation;
|
||||||
import org.apache.activemq.store.kahadb.data.KahaRemoveDestinationCommand;
|
import org.apache.activemq.store.kahadb.data.KahaRemoveDestinationCommand;
|
||||||
import org.apache.activemq.store.kahadb.data.KahaRemoveMessageCommand;
|
import org.apache.activemq.store.kahadb.data.KahaRemoveMessageCommand;
|
||||||
import org.apache.activemq.store.kahadb.data.KahaSubscriptionCommand;
|
import org.apache.activemq.store.kahadb.data.KahaSubscriptionCommand;
|
||||||
|
import org.apache.activemq.store.kahadb.data.KahaTransactionInfo;
|
||||||
|
import org.apache.activemq.store.kahadb.data.KahaDestination.DestinationType;
|
||||||
import org.apache.activemq.usage.MemoryUsage;
|
import org.apache.activemq.usage.MemoryUsage;
|
||||||
import org.apache.activemq.usage.SystemUsage;
|
import org.apache.activemq.usage.SystemUsage;
|
||||||
import org.apache.activemq.util.ServiceStopper;
|
import org.apache.activemq.util.ServiceStopper;
|
||||||
import org.apache.activemq.wireformat.WireFormat;
|
import org.apache.activemq.wireformat.WireFormat;
|
||||||
import org.apache.kahadb.journal.Journal;
|
|
||||||
import org.apache.kahadb.journal.Location;
|
|
||||||
import org.apache.kahadb.page.Transaction;
|
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
|
import org.apache.kahadb.journal.Location;
|
||||||
|
import org.apache.kahadb.page.Transaction;
|
||||||
|
|
||||||
public class KahaDBStore extends MessageDatabase implements PersistenceAdapter {
|
public class KahaDBStore extends MessageDatabase implements PersistenceAdapter {
|
||||||
static final Logger LOG = LoggerFactory.getLogger(KahaDBStore.class);
|
static final Logger LOG = LoggerFactory.getLogger(KahaDBStore.class);
|
||||||
|
@ -76,7 +77,7 @@ public class KahaDBStore extends MessageDatabase implements PersistenceAdapter {
|
||||||
PROPERTY_CANCELED_TASK_MOD_METRIC, "0"), 10);
|
PROPERTY_CANCELED_TASK_MOD_METRIC, "0"), 10);
|
||||||
public static final String PROPERTY_ASYNC_EXECUTOR_MAX_THREADS = "org.apache.activemq.store.kahadb.ASYNC_EXECUTOR_MAX_THREADS";
|
public static final String PROPERTY_ASYNC_EXECUTOR_MAX_THREADS = "org.apache.activemq.store.kahadb.ASYNC_EXECUTOR_MAX_THREADS";
|
||||||
private static final int asyncExecutorMaxThreads = Integer.parseInt(System.getProperty(
|
private static final int asyncExecutorMaxThreads = Integer.parseInt(System.getProperty(
|
||||||
PROPERTY_ASYNC_EXECUTOR_MAX_THREADS, "1"), 10);
|
PROPERTY_ASYNC_EXECUTOR_MAX_THREADS, "1"), 10);;
|
||||||
|
|
||||||
protected ExecutorService queueExecutor;
|
protected ExecutorService queueExecutor;
|
||||||
protected ExecutorService topicExecutor;
|
protected ExecutorService topicExecutor;
|
||||||
|
@ -95,9 +96,16 @@ public class KahaDBStore extends MessageDatabase implements PersistenceAdapter {
|
||||||
private boolean concurrentStoreAndDispatchTransactions = false;
|
private boolean concurrentStoreAndDispatchTransactions = false;
|
||||||
private int maxAsyncJobs = MAX_ASYNC_JOBS;
|
private int maxAsyncJobs = MAX_ASYNC_JOBS;
|
||||||
private final KahaDBTransactionStore transactionStore;
|
private final KahaDBTransactionStore transactionStore;
|
||||||
|
private TransactionIdTransformer transactionIdTransformer;
|
||||||
|
|
||||||
public KahaDBStore() {
|
public KahaDBStore() {
|
||||||
this.transactionStore = new KahaDBTransactionStore(this);
|
this.transactionStore = new KahaDBTransactionStore(this);
|
||||||
|
this.transactionIdTransformer = new TransactionIdTransformer() {
|
||||||
|
@Override
|
||||||
|
public KahaTransactionInfo transform(TransactionId txid) {
|
||||||
|
return TransactionIdConversion.convert(txid);
|
||||||
|
}
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -124,7 +132,8 @@ public class KahaDBStore extends MessageDatabase implements PersistenceAdapter {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param concurrentStoreAndDispatch the concurrentStoreAndDispatch to set
|
* @param concurrentStoreAndDispatch
|
||||||
|
* the concurrentStoreAndDispatch to set
|
||||||
*/
|
*/
|
||||||
public void setConcurrentStoreAndDispatchQueues(boolean concurrentStoreAndDispatch) {
|
public void setConcurrentStoreAndDispatchQueues(boolean concurrentStoreAndDispatch) {
|
||||||
this.concurrentStoreAndDispatchQueues = concurrentStoreAndDispatch;
|
this.concurrentStoreAndDispatchQueues = concurrentStoreAndDispatch;
|
||||||
|
@ -138,7 +147,8 @@ public class KahaDBStore extends MessageDatabase implements PersistenceAdapter {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param concurrentStoreAndDispatch the concurrentStoreAndDispatch to set
|
* @param concurrentStoreAndDispatch
|
||||||
|
* the concurrentStoreAndDispatch to set
|
||||||
*/
|
*/
|
||||||
public void setConcurrentStoreAndDispatchTopics(boolean concurrentStoreAndDispatch) {
|
public void setConcurrentStoreAndDispatchTopics(boolean concurrentStoreAndDispatch) {
|
||||||
this.concurrentStoreAndDispatchTopics = concurrentStoreAndDispatch;
|
this.concurrentStoreAndDispatchTopics = concurrentStoreAndDispatch;
|
||||||
|
@ -154,9 +164,9 @@ public class KahaDBStore extends MessageDatabase implements PersistenceAdapter {
|
||||||
public int getMaxAsyncJobs() {
|
public int getMaxAsyncJobs() {
|
||||||
return this.maxAsyncJobs;
|
return this.maxAsyncJobs;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param maxAsyncJobs the maxAsyncJobs to set
|
* @param maxAsyncJobs
|
||||||
|
* the maxAsyncJobs to set
|
||||||
*/
|
*/
|
||||||
public void setMaxAsyncJobs(int maxAsyncJobs) {
|
public void setMaxAsyncJobs(int maxAsyncJobs) {
|
||||||
this.maxAsyncJobs = maxAsyncJobs;
|
this.maxAsyncJobs = maxAsyncJobs;
|
||||||
|
@ -281,16 +291,14 @@ public class KahaDBStore extends MessageDatabase implements PersistenceAdapter {
|
||||||
protected KahaDestination dest;
|
protected KahaDestination dest;
|
||||||
private final int maxAsyncJobs;
|
private final int maxAsyncJobs;
|
||||||
private final Semaphore localDestinationSemaphore;
|
private final Semaphore localDestinationSemaphore;
|
||||||
private final Journal journal;
|
|
||||||
|
|
||||||
double doneTasks, canceledTasks = 0;
|
double doneTasks, canceledTasks = 0;
|
||||||
|
|
||||||
public KahaDBMessageStore(ActiveMQDestination destination) throws IOException {
|
public KahaDBMessageStore(ActiveMQDestination destination) {
|
||||||
super(destination);
|
super(destination);
|
||||||
this.dest = convert(destination);
|
this.dest = convert(destination);
|
||||||
this.maxAsyncJobs = getMaxAsyncJobs();
|
this.maxAsyncJobs = getMaxAsyncJobs();
|
||||||
this.localDestinationSemaphore = new Semaphore(this.maxAsyncJobs);
|
this.localDestinationSemaphore = new Semaphore(this.maxAsyncJobs);
|
||||||
this.journal = getJournalManager().getJournal(destination);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -347,12 +355,12 @@ public class KahaDBStore extends MessageDatabase implements PersistenceAdapter {
|
||||||
KahaAddMessageCommand command = new KahaAddMessageCommand();
|
KahaAddMessageCommand command = new KahaAddMessageCommand();
|
||||||
command.setDestination(dest);
|
command.setDestination(dest);
|
||||||
command.setMessageId(message.getMessageId().toString());
|
command.setMessageId(message.getMessageId().toString());
|
||||||
command.setTransactionInfo(createTransactionInfo(message.getTransactionId()));
|
command.setTransactionInfo(transactionIdTransformer.transform(message.getTransactionId()));
|
||||||
command.setPriority(message.getPriority());
|
command.setPriority(message.getPriority());
|
||||||
command.setPrioritySupported(isPrioritizedMessages());
|
command.setPrioritySupported(isPrioritizedMessages());
|
||||||
org.apache.activemq.util.ByteSequence packet = wireFormat.marshal(message);
|
org.apache.activemq.util.ByteSequence packet = wireFormat.marshal(message);
|
||||||
command.setMessage(new Buffer(packet.getData(), packet.getOffset(), packet.getLength()));
|
command.setMessage(new Buffer(packet.getData(), packet.getOffset(), packet.getLength()));
|
||||||
store(journal, command, isEnableJournalDiskSyncs() && message.isResponseRequired(), null, null);
|
store(command, isEnableJournalDiskSyncs() && message.isResponseRequired(), null, null);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -360,17 +368,17 @@ public class KahaDBStore extends MessageDatabase implements PersistenceAdapter {
|
||||||
KahaRemoveMessageCommand command = new KahaRemoveMessageCommand();
|
KahaRemoveMessageCommand command = new KahaRemoveMessageCommand();
|
||||||
command.setDestination(dest);
|
command.setDestination(dest);
|
||||||
command.setMessageId(ack.getLastMessageId().toString());
|
command.setMessageId(ack.getLastMessageId().toString());
|
||||||
command.setTransactionInfo(createTransactionInfo(ack.getTransactionId()));
|
command.setTransactionInfo(transactionIdTransformer.transform(ack.getTransactionId()));
|
||||||
|
|
||||||
org.apache.activemq.util.ByteSequence packet = wireFormat.marshal(ack);
|
org.apache.activemq.util.ByteSequence packet = wireFormat.marshal(ack);
|
||||||
command.setAck(new Buffer(packet.getData(), packet.getOffset(), packet.getLength()));
|
command.setAck(new Buffer(packet.getData(), packet.getOffset(), packet.getLength()));
|
||||||
store(journal, command, isEnableJournalDiskSyncs() && ack.isResponseRequired(), null, null);
|
store(command, isEnableJournalDiskSyncs() && ack.isResponseRequired(), null, null);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void removeAllMessages(ConnectionContext context) throws IOException {
|
public void removeAllMessages(ConnectionContext context) throws IOException {
|
||||||
KahaRemoveDestinationCommand command = new KahaRemoveDestinationCommand();
|
KahaRemoveDestinationCommand command = new KahaRemoveDestinationCommand();
|
||||||
command.setDestination(dest);
|
command.setDestination(dest);
|
||||||
store(journal, command, true, null, null);
|
store(command, true, null, null);
|
||||||
}
|
}
|
||||||
|
|
||||||
public Message getMessage(MessageId identity) throws IOException {
|
public Message getMessage(MessageId identity) throws IOException {
|
||||||
|
@ -399,7 +407,7 @@ public class KahaDBStore extends MessageDatabase implements PersistenceAdapter {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
return loadMessage(journal, location);
|
return loadMessage(location);
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getMessageCount() throws IOException {
|
public int getMessageCount() throws IOException {
|
||||||
|
@ -461,7 +469,7 @@ public class KahaDBStore extends MessageDatabase implements PersistenceAdapter {
|
||||||
if (ackedAndPrepared.contains(entry.getValue().messageId)) {
|
if (ackedAndPrepared.contains(entry.getValue().messageId)) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
Message msg = loadMessage(journal, entry.getValue().location);
|
Message msg = loadMessage(entry.getValue().location);
|
||||||
listener.recoverMessage(msg);
|
listener.recoverMessage(msg);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -486,7 +494,7 @@ public class KahaDBStore extends MessageDatabase implements PersistenceAdapter {
|
||||||
if (ackedAndPrepared.contains(entry.getValue().messageId)) {
|
if (ackedAndPrepared.contains(entry.getValue().messageId)) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
Message msg = loadMessage(journal, entry.getValue().location);
|
Message msg = loadMessage(entry.getValue().location);
|
||||||
listener.recoverMessage(msg);
|
listener.recoverMessage(msg);
|
||||||
counter++;
|
counter++;
|
||||||
if (counter >= maxReturned) {
|
if (counter >= maxReturned) {
|
||||||
|
@ -502,19 +510,20 @@ public class KahaDBStore extends MessageDatabase implements PersistenceAdapter {
|
||||||
}
|
}
|
||||||
|
|
||||||
public void resetBatching() {
|
public void resetBatching() {
|
||||||
|
if (pageFile.isLoaded()) {
|
||||||
try {
|
try {
|
||||||
pageFile.tx().execute(new Transaction.Closure<Exception>() {
|
pageFile.tx().execute(new Transaction.Closure<Exception>() {
|
||||||
public void execute(Transaction tx) throws Exception {
|
public void execute(Transaction tx) throws Exception {
|
||||||
StoredDestination sd = getExistingStoredDestination(dest, tx);
|
StoredDestination sd = getExistingStoredDestination(dest, tx);
|
||||||
if (sd != null) {
|
if (sd != null) {
|
||||||
sd.orderIndex.resetCursorPosition();
|
sd.orderIndex.resetCursorPosition();}
|
||||||
}
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
LOG.error("Failed to reset batching",e);
|
LOG.error("Failed to reset batching",e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void setBatch(MessageId identity) throws IOException {
|
public void setBatch(MessageId identity) throws IOException {
|
||||||
|
@ -550,21 +559,15 @@ public class KahaDBStore extends MessageDatabase implements PersistenceAdapter {
|
||||||
@Override
|
@Override
|
||||||
public void setMemoryUsage(MemoryUsage memoeyUSage) {
|
public void setMemoryUsage(MemoryUsage memoeyUSage) {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void start() throws Exception {
|
public void start() throws Exception {
|
||||||
super.start();
|
super.start();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void stop() throws Exception {
|
public void stop() throws Exception {
|
||||||
super.stop();
|
super.stop();
|
||||||
}
|
}
|
||||||
|
|
||||||
public Journal getJournal() {
|
|
||||||
return this.journal;
|
|
||||||
}
|
|
||||||
|
|
||||||
protected void lockAsyncJobQueue() {
|
protected void lockAsyncJobQueue() {
|
||||||
try {
|
try {
|
||||||
this.localDestinationSemaphore.tryAcquire(this.maxAsyncJobs, 60, TimeUnit.SECONDS);
|
this.localDestinationSemaphore.tryAcquire(this.maxAsyncJobs, 60, TimeUnit.SECONDS);
|
||||||
|
@ -593,7 +596,6 @@ public class KahaDBStore extends MessageDatabase implements PersistenceAdapter {
|
||||||
|
|
||||||
class KahaDBTopicMessageStore extends KahaDBMessageStore implements TopicMessageStore {
|
class KahaDBTopicMessageStore extends KahaDBMessageStore implements TopicMessageStore {
|
||||||
private final AtomicInteger subscriptionCount = new AtomicInteger();
|
private final AtomicInteger subscriptionCount = new AtomicInteger();
|
||||||
|
|
||||||
public KahaDBTopicMessageStore(ActiveMQTopic destination) throws IOException {
|
public KahaDBTopicMessageStore(ActiveMQTopic destination) throws IOException {
|
||||||
super(destination);
|
super(destination);
|
||||||
this.subscriptionCount.set(getAllSubscriptions().length);
|
this.subscriptionCount.set(getAllSubscriptions().length);
|
||||||
|
@ -646,11 +648,11 @@ public class KahaDBStore extends MessageDatabase implements PersistenceAdapter {
|
||||||
command.setDestination(dest);
|
command.setDestination(dest);
|
||||||
command.setSubscriptionKey(subscriptionKey);
|
command.setSubscriptionKey(subscriptionKey);
|
||||||
command.setMessageId(messageId.toString());
|
command.setMessageId(messageId.toString());
|
||||||
command.setTransactionInfo(createTransactionInfo(ack.getTransactionId()));
|
command.setTransactionInfo(transactionIdTransformer.transform(ack.getTransactionId()));
|
||||||
if (ack != null && ack.isUnmatchedAck()) {
|
if (ack != null && ack.isUnmatchedAck()) {
|
||||||
command.setAck(UNMATCHED);
|
command.setAck(UNMATCHED);
|
||||||
}
|
}
|
||||||
store(getJournal(), command, false, null, null);
|
store(command, false, null, null);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void addSubsciption(SubscriptionInfo subscriptionInfo, boolean retroactive) throws IOException {
|
public void addSubsciption(SubscriptionInfo subscriptionInfo, boolean retroactive) throws IOException {
|
||||||
|
@ -662,7 +664,7 @@ public class KahaDBStore extends MessageDatabase implements PersistenceAdapter {
|
||||||
command.setRetroactive(retroactive);
|
command.setRetroactive(retroactive);
|
||||||
org.apache.activemq.util.ByteSequence packet = wireFormat.marshal(subscriptionInfo);
|
org.apache.activemq.util.ByteSequence packet = wireFormat.marshal(subscriptionInfo);
|
||||||
command.setSubscriptionInfo(new Buffer(packet.getData(), packet.getOffset(), packet.getLength()));
|
command.setSubscriptionInfo(new Buffer(packet.getData(), packet.getOffset(), packet.getLength()));
|
||||||
store(getJournal(), command, isEnableJournalDiskSyncs() && true, null, null);
|
store(command, isEnableJournalDiskSyncs() && true, null, null);
|
||||||
this.subscriptionCount.incrementAndGet();
|
this.subscriptionCount.incrementAndGet();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -670,7 +672,7 @@ public class KahaDBStore extends MessageDatabase implements PersistenceAdapter {
|
||||||
KahaSubscriptionCommand command = new KahaSubscriptionCommand();
|
KahaSubscriptionCommand command = new KahaSubscriptionCommand();
|
||||||
command.setDestination(dest);
|
command.setDestination(dest);
|
||||||
command.setSubscriptionKey(subscriptionKey(clientId, subscriptionName));
|
command.setSubscriptionKey(subscriptionKey(clientId, subscriptionName));
|
||||||
store(getJournal(), command, isEnableJournalDiskSyncs() && true, null, null);
|
store(command, isEnableJournalDiskSyncs() && true, null, null);
|
||||||
this.subscriptionCount.decrementAndGet();
|
this.subscriptionCount.decrementAndGet();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -764,7 +766,7 @@ public class KahaDBStore extends MessageDatabase implements PersistenceAdapter {
|
||||||
for (Iterator<Entry<Long, MessageKeys>> iterator = sd.orderIndex.iterator(tx); iterator
|
for (Iterator<Entry<Long, MessageKeys>> iterator = sd.orderIndex.iterator(tx); iterator
|
||||||
.hasNext();) {
|
.hasNext();) {
|
||||||
Entry<Long, MessageKeys> entry = iterator.next();
|
Entry<Long, MessageKeys> entry = iterator.next();
|
||||||
listener.recoverMessage(loadMessage(getJournal(), entry.getValue().location));
|
listener.recoverMessage(loadMessage(entry.getValue().location));
|
||||||
}
|
}
|
||||||
sd.orderIndex.resetCursorPosition();
|
sd.orderIndex.resetCursorPosition();
|
||||||
}
|
}
|
||||||
|
@ -802,7 +804,7 @@ public class KahaDBStore extends MessageDatabase implements PersistenceAdapter {
|
||||||
for (Iterator<Entry<Long, MessageKeys>> iterator = sd.orderIndex.iterator(tx, moc); iterator
|
for (Iterator<Entry<Long, MessageKeys>> iterator = sd.orderIndex.iterator(tx, moc); iterator
|
||||||
.hasNext();) {
|
.hasNext();) {
|
||||||
entry = iterator.next();
|
entry = iterator.next();
|
||||||
if (listener.recoverMessage(loadMessage(getJournal(), entry.getValue().location))) {
|
if (listener.recoverMessage(loadMessage(entry.getValue().location))) {
|
||||||
counter++;
|
counter++;
|
||||||
}
|
}
|
||||||
if (counter >= maxReturned || listener.hasSpace() == false) {
|
if (counter >= maxReturned || listener.hasSpace() == false) {
|
||||||
|
@ -857,7 +859,8 @@ public class KahaDBStore extends MessageDatabase implements PersistenceAdapter {
|
||||||
* Cleanup method to remove any state associated with the given destination.
|
* Cleanup method to remove any state associated with the given destination.
|
||||||
* This method does not stop the message store (it might not be cached).
|
* This method does not stop the message store (it might not be cached).
|
||||||
*
|
*
|
||||||
* @param destination Destination to forget
|
* @param destination
|
||||||
|
* Destination to forget
|
||||||
*/
|
*/
|
||||||
public void removeQueueMessageStore(ActiveMQQueue destination) {
|
public void removeQueueMessageStore(ActiveMQQueue destination) {
|
||||||
}
|
}
|
||||||
|
@ -866,7 +869,8 @@ public class KahaDBStore extends MessageDatabase implements PersistenceAdapter {
|
||||||
* Cleanup method to remove any state associated with the given destination
|
* Cleanup method to remove any state associated with the given destination
|
||||||
* This method does not stop the message store (it might not be cached).
|
* This method does not stop the message store (it might not be cached).
|
||||||
*
|
*
|
||||||
* @param destination Destination to forget
|
* @param destination
|
||||||
|
* Destination to forget
|
||||||
*/
|
*/
|
||||||
public void removeTopicMessageStore(ActiveMQTopic destination) {
|
public void removeTopicMessageStore(ActiveMQTopic destination) {
|
||||||
}
|
}
|
||||||
|
@ -933,11 +937,9 @@ public class KahaDBStore extends MessageDatabase implements PersistenceAdapter {
|
||||||
public void beginTransaction(ConnectionContext context) throws IOException {
|
public void beginTransaction(ConnectionContext context) throws IOException {
|
||||||
throw new IOException("Not yet implemented.");
|
throw new IOException("Not yet implemented.");
|
||||||
}
|
}
|
||||||
|
|
||||||
public void commitTransaction(ConnectionContext context) throws IOException {
|
public void commitTransaction(ConnectionContext context) throws IOException {
|
||||||
throw new IOException("Not yet implemented.");
|
throw new IOException("Not yet implemented.");
|
||||||
}
|
}
|
||||||
|
|
||||||
public void rollbackTransaction(ConnectionContext context) throws IOException {
|
public void rollbackTransaction(ConnectionContext context) throws IOException {
|
||||||
throw new IOException("Not yet implemented.");
|
throw new IOException("Not yet implemented.");
|
||||||
}
|
}
|
||||||
|
@ -955,8 +957,8 @@ public class KahaDBStore extends MessageDatabase implements PersistenceAdapter {
|
||||||
* @return
|
* @return
|
||||||
* @throws IOException
|
* @throws IOException
|
||||||
*/
|
*/
|
||||||
Message loadMessage(Journal journal, Location location) throws IOException {
|
Message loadMessage(Location location) throws IOException {
|
||||||
KahaAddMessageCommand addMessage = (KahaAddMessageCommand) load(journal, location);
|
KahaAddMessageCommand addMessage = (KahaAddMessageCommand) load(location);
|
||||||
Message msg = (Message) wireFormat.unmarshal(new DataInputStream(addMessage.getMessage().newInput()));
|
Message msg = (Message) wireFormat.unmarshal(new DataInputStream(addMessage.getMessage().newInput()));
|
||||||
return msg;
|
return msg;
|
||||||
}
|
}
|
||||||
|
@ -1015,6 +1017,14 @@ public class KahaDBStore extends MessageDatabase implements PersistenceAdapter {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public TransactionIdTransformer getTransactionIdTransformer() {
|
||||||
|
return transactionIdTransformer;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTransactionIdTransformer(TransactionIdTransformer transactionIdTransformer) {
|
||||||
|
this.transactionIdTransformer = transactionIdTransformer;
|
||||||
|
}
|
||||||
|
|
||||||
static class AsyncJobKey {
|
static class AsyncJobKey {
|
||||||
MessageId id;
|
MessageId id;
|
||||||
ActiveMQDestination destination;
|
ActiveMQDestination destination;
|
||||||
|
@ -1141,7 +1151,6 @@ public class KahaDBStore extends MessageDatabase implements PersistenceAdapter {
|
||||||
private final int subscriptionCount;
|
private final int subscriptionCount;
|
||||||
private final List<String> subscriptionKeys = new ArrayList<String>(1);
|
private final List<String> subscriptionKeys = new ArrayList<String>(1);
|
||||||
private final KahaDBTopicMessageStore topicStore;
|
private final KahaDBTopicMessageStore topicStore;
|
||||||
|
|
||||||
public StoreTopicTask(KahaDBTopicMessageStore store, ConnectionContext context, Message message,
|
public StoreTopicTask(KahaDBTopicMessageStore store, ConnectionContext context, Message message,
|
||||||
int subscriptionCount) {
|
int subscriptionCount) {
|
||||||
super(store, context, message);
|
super(store, context, message);
|
||||||
|
@ -1176,6 +1185,7 @@ public class KahaDBStore extends MessageDatabase implements PersistenceAdapter {
|
||||||
/**
|
/**
|
||||||
* add a key
|
* add a key
|
||||||
*
|
*
|
||||||
|
* @param key
|
||||||
* @return true if all acknowledgements received
|
* @return true if all acknowledgements received
|
||||||
*/
|
*/
|
||||||
public boolean addSubscriptionKey(String key) {
|
public boolean addSubscriptionKey(String key) {
|
||||||
|
|
|
@ -19,7 +19,6 @@ package org.apache.activemq.store.kahadb;
|
||||||
import java.io.DataInputStream;
|
import java.io.DataInputStream;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.HashSet;
|
|
||||||
import java.util.Iterator;
|
import java.util.Iterator;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
@ -27,9 +26,7 @@ import java.util.concurrent.CancellationException;
|
||||||
import java.util.concurrent.ConcurrentHashMap;
|
import java.util.concurrent.ConcurrentHashMap;
|
||||||
import java.util.concurrent.ExecutionException;
|
import java.util.concurrent.ExecutionException;
|
||||||
import java.util.concurrent.Future;
|
import java.util.concurrent.Future;
|
||||||
|
|
||||||
import org.apache.activemq.broker.ConnectionContext;
|
import org.apache.activemq.broker.ConnectionContext;
|
||||||
import org.apache.activemq.command.ActiveMQDestination;
|
|
||||||
import org.apache.activemq.command.Message;
|
import org.apache.activemq.command.Message;
|
||||||
import org.apache.activemq.command.MessageAck;
|
import org.apache.activemq.command.MessageAck;
|
||||||
import org.apache.activemq.command.MessageId;
|
import org.apache.activemq.command.MessageId;
|
||||||
|
@ -52,13 +49,14 @@ import org.apache.activemq.store.kahadb.data.KahaPrepareCommand;
|
||||||
import org.apache.activemq.store.kahadb.data.KahaRollbackCommand;
|
import org.apache.activemq.store.kahadb.data.KahaRollbackCommand;
|
||||||
import org.apache.activemq.store.kahadb.data.KahaTransactionInfo;
|
import org.apache.activemq.store.kahadb.data.KahaTransactionInfo;
|
||||||
import org.apache.activemq.wireformat.WireFormat;
|
import org.apache.activemq.wireformat.WireFormat;
|
||||||
import org.apache.kahadb.journal.Journal;
|
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Provides a TransactionStore implementation that can create transaction aware
|
* Provides a TransactionStore implementation that can create transaction aware
|
||||||
* MessageStore objects from non transaction aware MessageStore objects.
|
* MessageStore objects from non transaction aware MessageStore objects.
|
||||||
|
*
|
||||||
|
*
|
||||||
*/
|
*/
|
||||||
public class KahaDBTransactionStore implements TransactionStore {
|
public class KahaDBTransactionStore implements TransactionStore {
|
||||||
static final Logger LOG = LoggerFactory.getLogger(KahaDBTransactionStore.class);
|
static final Logger LOG = LoggerFactory.getLogger(KahaDBTransactionStore.class);
|
||||||
|
@ -72,17 +70,15 @@ public class KahaDBTransactionStore implements TransactionStore {
|
||||||
|
|
||||||
public class Tx {
|
public class Tx {
|
||||||
private final ArrayList<AddMessageCommand> messages = new ArrayList<AddMessageCommand>();
|
private final ArrayList<AddMessageCommand> messages = new ArrayList<AddMessageCommand>();
|
||||||
|
|
||||||
private final ArrayList<RemoveMessageCommand> acks = new ArrayList<RemoveMessageCommand>();
|
private final ArrayList<RemoveMessageCommand> acks = new ArrayList<RemoveMessageCommand>();
|
||||||
private final HashSet<ActiveMQDestination> destinations = new HashSet<ActiveMQDestination>();
|
|
||||||
|
|
||||||
public void add(AddMessageCommand msg) {
|
public void add(AddMessageCommand msg) {
|
||||||
messages.add(msg);
|
messages.add(msg);
|
||||||
destinations.add(msg.getMessage().getDestination());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void add(RemoveMessageCommand ack) {
|
public void add(RemoveMessageCommand ack) {
|
||||||
acks.add(ack);
|
acks.add(ack);
|
||||||
destinations.add(ack.getMessageAck().getDestination());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public Message[] getMessages() {
|
public Message[] getMessages() {
|
||||||
|
@ -107,6 +103,7 @@ public class KahaDBTransactionStore implements TransactionStore {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return true if something to commit
|
* @return true if something to commit
|
||||||
|
* @throws IOException
|
||||||
*/
|
*/
|
||||||
public List<Future<Object>> commit() throws IOException {
|
public List<Future<Object>> commit() throws IOException {
|
||||||
List<Future<Object>> results = new ArrayList<Future<Object>>();
|
List<Future<Object>> results = new ArrayList<Future<Object>>();
|
||||||
|
@ -129,34 +126,26 @@ public class KahaDBTransactionStore implements TransactionStore {
|
||||||
|
|
||||||
public abstract class AddMessageCommand {
|
public abstract class AddMessageCommand {
|
||||||
private final ConnectionContext ctx;
|
private final ConnectionContext ctx;
|
||||||
|
|
||||||
AddMessageCommand(ConnectionContext ctx) {
|
AddMessageCommand(ConnectionContext ctx) {
|
||||||
this.ctx = ctx;
|
this.ctx = ctx;
|
||||||
}
|
}
|
||||||
|
|
||||||
abstract Message getMessage();
|
abstract Message getMessage();
|
||||||
|
|
||||||
Future<Object> run() throws IOException {
|
Future<Object> run() throws IOException {
|
||||||
return run(this.ctx);
|
return run(this.ctx);
|
||||||
}
|
}
|
||||||
|
|
||||||
abstract Future<Object> run(ConnectionContext ctx) throws IOException;
|
abstract Future<Object> run(ConnectionContext ctx) throws IOException;
|
||||||
}
|
}
|
||||||
|
|
||||||
public abstract class RemoveMessageCommand {
|
public abstract class RemoveMessageCommand {
|
||||||
|
|
||||||
private final ConnectionContext ctx;
|
private final ConnectionContext ctx;
|
||||||
|
|
||||||
RemoveMessageCommand(ConnectionContext ctx) {
|
RemoveMessageCommand(ConnectionContext ctx) {
|
||||||
this.ctx = ctx;
|
this.ctx = ctx;
|
||||||
}
|
}
|
||||||
|
|
||||||
abstract MessageAck getMessageAck();
|
abstract MessageAck getMessageAck();
|
||||||
|
|
||||||
Future<Object> run() throws IOException {
|
Future<Object> run() throws IOException {
|
||||||
return run(this.ctx);
|
return run(this.ctx);
|
||||||
}
|
}
|
||||||
|
|
||||||
abstract Future<Object> run(ConnectionContext context) throws IOException;
|
abstract Future<Object> run(ConnectionContext context) throws IOException;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -217,20 +206,17 @@ public class KahaDBTransactionStore implements TransactionStore {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @throws IOException
|
||||||
* @see org.apache.activemq.store.TransactionStore#prepare(TransactionId)
|
* @see org.apache.activemq.store.TransactionStore#prepare(TransactionId)
|
||||||
*/
|
*/
|
||||||
public void prepare(TransactionId txid) throws IOException {
|
public void prepare(TransactionId txid) throws IOException {
|
||||||
KahaTransactionInfo info = getTransactionInfo(txid);
|
KahaTransactionInfo info = getTransactionInfo(txid);
|
||||||
if (txid.isXATransaction() || theStore.isConcurrentStoreAndDispatchTransactions() == false) {
|
if (txid.isXATransaction() || theStore.isConcurrentStoreAndDispatchTransactions() == false) {
|
||||||
for (Journal journal : theStore.getJournalManager().getJournals()) {
|
theStore.store(new KahaPrepareCommand().setTransactionInfo(info), true, null, null);
|
||||||
theStore.store(journal, new KahaPrepareCommand().setTransactionInfo(info), true, null, null);
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
Tx tx = inflightTransactions.remove(txid);
|
Tx tx = inflightTransactions.remove(txid);
|
||||||
if (tx != null) {
|
if (tx != null) {
|
||||||
for (Journal journal : theStore.getJournalManager().getJournals(tx.destinations)) {
|
theStore.store(new KahaPrepareCommand().setTransactionInfo(info), true, null, null);
|
||||||
theStore.store(journal, new KahaPrepareCommand().setTransactionInfo(info), true, null, null);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -273,9 +259,7 @@ public class KahaDBTransactionStore implements TransactionStore {
|
||||||
}
|
}
|
||||||
if (doneSomething) {
|
if (doneSomething) {
|
||||||
KahaTransactionInfo info = getTransactionInfo(txid);
|
KahaTransactionInfo info = getTransactionInfo(txid);
|
||||||
for (Journal journal : theStore.getJournalManager().getJournals(tx.destinations)) {
|
theStore.store(new KahaCommitCommand().setTransactionInfo(info), true, null, null);
|
||||||
theStore.store(journal, new KahaCommitCommand().setTransactionInfo(info), true, null, null);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}else {
|
}else {
|
||||||
//The Tx will be null for failed over clients - lets run their post commits
|
//The Tx will be null for failed over clients - lets run their post commits
|
||||||
|
@ -286,9 +270,7 @@ public class KahaDBTransactionStore implements TransactionStore {
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
KahaTransactionInfo info = getTransactionInfo(txid);
|
KahaTransactionInfo info = getTransactionInfo(txid);
|
||||||
for (Journal journal : theStore.getJournalManager().getJournals()) {
|
theStore.store(new KahaCommitCommand().setTransactionInfo(info), true, preCommit, postCommit);
|
||||||
theStore.store(journal, new KahaCommitCommand().setTransactionInfo(info), true, preCommit, postCommit);
|
|
||||||
}
|
|
||||||
forgetRecoveredAcks(txid);
|
forgetRecoveredAcks(txid);
|
||||||
}
|
}
|
||||||
}else {
|
}else {
|
||||||
|
@ -297,14 +279,13 @@ public class KahaDBTransactionStore implements TransactionStore {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @throws IOException
|
||||||
* @see org.apache.activemq.store.TransactionStore#rollback(TransactionId)
|
* @see org.apache.activemq.store.TransactionStore#rollback(TransactionId)
|
||||||
*/
|
*/
|
||||||
public void rollback(TransactionId txid) throws IOException {
|
public void rollback(TransactionId txid) throws IOException {
|
||||||
if (txid.isXATransaction() || theStore.isConcurrentStoreAndDispatchTransactions() == false) {
|
if (txid.isXATransaction() || theStore.isConcurrentStoreAndDispatchTransactions() == false) {
|
||||||
KahaTransactionInfo info = getTransactionInfo(txid);
|
KahaTransactionInfo info = getTransactionInfo(txid);
|
||||||
for (Journal journal : theStore.getJournalManager().getJournals()) {
|
theStore.store(new KahaRollbackCommand().setTransactionInfo(info), false, null, null);
|
||||||
theStore.store(journal, new KahaRollbackCommand().setTransactionInfo(info), false, null, null);
|
|
||||||
}
|
|
||||||
forgetRecoveredAcks(txid);
|
forgetRecoveredAcks(txid);
|
||||||
} else {
|
} else {
|
||||||
inflightTransactions.remove(txid);
|
inflightTransactions.remove(txid);
|
||||||
|
@ -371,7 +352,6 @@ public class KahaDBTransactionStore implements TransactionStore {
|
||||||
public Message getMessage() {
|
public Message getMessage() {
|
||||||
return message;
|
return message;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Future<Object> run(ConnectionContext ctx) throws IOException {
|
public Future<Object> run(ConnectionContext ctx) throws IOException {
|
||||||
destination.addMessage(ctx, message);
|
destination.addMessage(ctx, message);
|
||||||
|
@ -399,7 +379,6 @@ public class KahaDBTransactionStore implements TransactionStore {
|
||||||
public Message getMessage() {
|
public Message getMessage() {
|
||||||
return message;
|
return message;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Future<Object> run(ConnectionContext ctx) throws IOException {
|
public Future<Object> run(ConnectionContext ctx) throws IOException {
|
||||||
return destination.asyncAddQueueMessage(ctx, message);
|
return destination.asyncAddQueueMessage(ctx, message);
|
||||||
|
@ -427,7 +406,6 @@ public class KahaDBTransactionStore implements TransactionStore {
|
||||||
public Message getMessage() {
|
public Message getMessage() {
|
||||||
return message;
|
return message;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Future run(ConnectionContext ctx) throws IOException {
|
public Future run(ConnectionContext ctx) throws IOException {
|
||||||
return destination.asyncAddTopicMessage(ctx, message);
|
return destination.asyncAddTopicMessage(ctx, message);
|
||||||
|
@ -523,7 +501,6 @@ public class KahaDBTransactionStore implements TransactionStore {
|
||||||
|
|
||||||
|
|
||||||
private KahaTransactionInfo getTransactionInfo(TransactionId txid) {
|
private KahaTransactionInfo getTransactionInfo(TransactionId txid) {
|
||||||
return theStore.createTransactionInfo(txid);
|
return theStore.getTransactionIdTransformer().transform(txid);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -18,7 +18,15 @@ package org.apache.activemq.store.kahadb;
|
||||||
|
|
||||||
import java.io.ByteArrayInputStream;
|
import java.io.ByteArrayInputStream;
|
||||||
import java.io.ByteArrayOutputStream;
|
import java.io.ByteArrayOutputStream;
|
||||||
import java.io.*;
|
import java.io.DataInput;
|
||||||
|
import java.io.DataOutput;
|
||||||
|
import java.io.EOFException;
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.io.InputStream;
|
||||||
|
import java.io.ObjectInputStream;
|
||||||
|
import java.io.ObjectOutputStream;
|
||||||
|
import java.io.OutputStream;
|
||||||
import java.util.*;
|
import java.util.*;
|
||||||
import java.util.Map.Entry;
|
import java.util.Map.Entry;
|
||||||
import java.util.concurrent.atomic.AtomicBoolean;
|
import java.util.concurrent.atomic.AtomicBoolean;
|
||||||
|
@ -28,19 +36,29 @@ import java.util.concurrent.locks.ReentrantReadWriteLock;
|
||||||
import org.apache.activemq.ActiveMQMessageAuditNoSync;
|
import org.apache.activemq.ActiveMQMessageAuditNoSync;
|
||||||
import org.apache.activemq.broker.BrokerService;
|
import org.apache.activemq.broker.BrokerService;
|
||||||
import org.apache.activemq.broker.BrokerServiceAware;
|
import org.apache.activemq.broker.BrokerServiceAware;
|
||||||
import org.apache.activemq.command.ActiveMQDestination;
|
|
||||||
import org.apache.activemq.command.ConnectionId;
|
|
||||||
import org.apache.activemq.command.LocalTransactionId;
|
|
||||||
import org.apache.activemq.command.MessageAck;
|
import org.apache.activemq.command.MessageAck;
|
||||||
import org.apache.activemq.command.SubscriptionInfo;
|
import org.apache.activemq.command.SubscriptionInfo;
|
||||||
import org.apache.activemq.command.TransactionId;
|
import org.apache.activemq.command.TransactionId;
|
||||||
import org.apache.activemq.command.XATransactionId;
|
|
||||||
import org.apache.activemq.protobuf.Buffer;
|
import org.apache.activemq.protobuf.Buffer;
|
||||||
import org.apache.activemq.store.kahadb.data.*;
|
import org.apache.activemq.store.kahadb.data.KahaAddMessageCommand;
|
||||||
|
import org.apache.activemq.store.kahadb.data.KahaCommitCommand;
|
||||||
|
import org.apache.activemq.store.kahadb.data.KahaDestination;
|
||||||
|
import org.apache.activemq.store.kahadb.data.KahaEntryType;
|
||||||
|
import org.apache.activemq.store.kahadb.data.KahaPrepareCommand;
|
||||||
|
import org.apache.activemq.store.kahadb.data.KahaProducerAuditCommand;
|
||||||
|
import org.apache.activemq.store.kahadb.data.KahaRemoveDestinationCommand;
|
||||||
|
import org.apache.activemq.store.kahadb.data.KahaRemoveMessageCommand;
|
||||||
|
import org.apache.activemq.store.kahadb.data.KahaRollbackCommand;
|
||||||
|
import org.apache.activemq.store.kahadb.data.KahaSubscriptionCommand;
|
||||||
|
import org.apache.activemq.store.kahadb.data.KahaTraceCommand;
|
||||||
|
import org.apache.activemq.store.kahadb.data.KahaTransactionInfo;
|
||||||
import org.apache.activemq.util.Callback;
|
import org.apache.activemq.util.Callback;
|
||||||
import org.apache.activemq.util.IOHelper;
|
import org.apache.activemq.util.IOHelper;
|
||||||
import org.apache.activemq.util.ServiceStopper;
|
import org.apache.activemq.util.ServiceStopper;
|
||||||
import org.apache.activemq.util.ServiceSupport;
|
import org.apache.activemq.util.ServiceSupport;
|
||||||
|
import org.apache.kahadb.util.LocationMarshaller;
|
||||||
|
import org.slf4j.Logger;
|
||||||
|
import org.slf4j.LoggerFactory;
|
||||||
import org.apache.kahadb.index.BTreeIndex;
|
import org.apache.kahadb.index.BTreeIndex;
|
||||||
import org.apache.kahadb.index.BTreeVisitor;
|
import org.apache.kahadb.index.BTreeVisitor;
|
||||||
import org.apache.kahadb.journal.DataFile;
|
import org.apache.kahadb.journal.DataFile;
|
||||||
|
@ -49,9 +67,16 @@ import org.apache.kahadb.journal.Location;
|
||||||
import org.apache.kahadb.page.Page;
|
import org.apache.kahadb.page.Page;
|
||||||
import org.apache.kahadb.page.PageFile;
|
import org.apache.kahadb.page.PageFile;
|
||||||
import org.apache.kahadb.page.Transaction;
|
import org.apache.kahadb.page.Transaction;
|
||||||
import org.apache.kahadb.util.*;
|
import org.apache.kahadb.util.ByteSequence;
|
||||||
import org.slf4j.Logger;
|
import org.apache.kahadb.util.DataByteArrayInputStream;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.apache.kahadb.util.DataByteArrayOutputStream;
|
||||||
|
import org.apache.kahadb.util.LockFile;
|
||||||
|
import org.apache.kahadb.util.LongMarshaller;
|
||||||
|
import org.apache.kahadb.util.Marshaller;
|
||||||
|
import org.apache.kahadb.util.Sequence;
|
||||||
|
import org.apache.kahadb.util.SequenceSet;
|
||||||
|
import org.apache.kahadb.util.StringMarshaller;
|
||||||
|
import org.apache.kahadb.util.VariableMarshaller;
|
||||||
|
|
||||||
public class MessageDatabase extends ServiceSupport implements BrokerServiceAware {
|
public class MessageDatabase extends ServiceSupport implements BrokerServiceAware {
|
||||||
|
|
||||||
|
@ -61,11 +86,9 @@ public class MessageDatabase extends ServiceSupport implements BrokerServiceAwar
|
||||||
public static final int LOG_SLOW_ACCESS_TIME = Integer.parseInt(System.getProperty(PROPERTY_LOG_SLOW_ACCESS_TIME, "0"));
|
public static final int LOG_SLOW_ACCESS_TIME = Integer.parseInt(System.getProperty(PROPERTY_LOG_SLOW_ACCESS_TIME, "0"));
|
||||||
|
|
||||||
protected static final Buffer UNMATCHED;
|
protected static final Buffer UNMATCHED;
|
||||||
|
|
||||||
static {
|
static {
|
||||||
UNMATCHED = new Buffer(new byte[]{});
|
UNMATCHED = new Buffer(new byte[]{});
|
||||||
}
|
}
|
||||||
|
|
||||||
private static final Logger LOG = LoggerFactory.getLogger(MessageDatabase.class);
|
private static final Logger LOG = LoggerFactory.getLogger(MessageDatabase.class);
|
||||||
private static final int DEFAULT_DATABASE_LOCKED_WAIT_DELAY = 10 * 1000;
|
private static final int DEFAULT_DATABASE_LOCKED_WAIT_DELAY = 10 * 1000;
|
||||||
|
|
||||||
|
@ -85,7 +108,6 @@ public class MessageDatabase extends ServiceSupport implements BrokerServiceAwar
|
||||||
protected Location producerSequenceIdTrackerLocation = null;
|
protected Location producerSequenceIdTrackerLocation = null;
|
||||||
protected transient ActiveMQMessageAuditNoSync producerSequenceIdTracker = new ActiveMQMessageAuditNoSync();
|
protected transient ActiveMQMessageAuditNoSync producerSequenceIdTracker = new ActiveMQMessageAuditNoSync();
|
||||||
protected int version = VERSION;
|
protected int version = VERSION;
|
||||||
|
|
||||||
public void read(DataInput is) throws IOException {
|
public void read(DataInput is) throws IOException {
|
||||||
state = is.readInt();
|
state = is.readInt();
|
||||||
destinations = new BTreeIndex<String, StoredDestination>(pageFile, is.readLong());
|
destinations = new BTreeIndex<String, StoredDestination>(pageFile, is.readLong());
|
||||||
|
@ -156,7 +178,7 @@ public class MessageDatabase extends ServiceSupport implements BrokerServiceAwar
|
||||||
}
|
}
|
||||||
|
|
||||||
protected PageFile pageFile;
|
protected PageFile pageFile;
|
||||||
protected JournalManager journalManager;
|
protected Journal journal;
|
||||||
protected Metadata metadata = new Metadata();
|
protected Metadata metadata = new Metadata();
|
||||||
|
|
||||||
protected MetadataMarshaller metadataMarshaller = new MetadataMarshaller();
|
protected MetadataMarshaller metadataMarshaller = new MetadataMarshaller();
|
||||||
|
@ -187,8 +209,6 @@ public class MessageDatabase extends ServiceSupport implements BrokerServiceAwar
|
||||||
private int databaseLockedWaitDelay = DEFAULT_DATABASE_LOCKED_WAIT_DELAY;
|
private int databaseLockedWaitDelay = DEFAULT_DATABASE_LOCKED_WAIT_DELAY;
|
||||||
protected boolean forceRecoverIndex = false;
|
protected boolean forceRecoverIndex = false;
|
||||||
private final Object checkpointThreadLock = new Object();
|
private final Object checkpointThreadLock = new Object();
|
||||||
private boolean journalPerDestination = false;
|
|
||||||
|
|
||||||
|
|
||||||
public MessageDatabase() {
|
public MessageDatabase() {
|
||||||
}
|
}
|
||||||
|
@ -296,7 +316,7 @@ public class MessageDatabase extends ServiceSupport implements BrokerServiceAwar
|
||||||
|
|
||||||
public void open() throws IOException {
|
public void open() throws IOException {
|
||||||
if( opened.compareAndSet(false, true) ) {
|
if( opened.compareAndSet(false, true) ) {
|
||||||
getJournalManager().start();
|
getJournal().start();
|
||||||
loadPageFile();
|
loadPageFile();
|
||||||
startCheckpoint();
|
startCheckpoint();
|
||||||
recover();
|
recover();
|
||||||
|
@ -348,19 +368,17 @@ public class MessageDatabase extends ServiceSupport implements BrokerServiceAwar
|
||||||
try {
|
try {
|
||||||
lock();
|
lock();
|
||||||
if (deleteAllMessages) {
|
if (deleteAllMessages) {
|
||||||
getJournalManager().start();
|
getJournal().start();
|
||||||
getJournalManager().delete();
|
getJournal().delete();
|
||||||
getJournalManager().close();
|
getJournal().close();
|
||||||
journalManager = null;
|
journal = null;
|
||||||
getPageFile().delete();
|
getPageFile().delete();
|
||||||
LOG.info("Persistence store purged.");
|
LOG.info("Persistence store purged.");
|
||||||
deleteAllMessages = false;
|
deleteAllMessages = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
open();
|
open();
|
||||||
for (Journal journal : getJournalManager().getJournals()) {
|
store(new KahaTraceCommand().setMessage("LOADED " + new Date()));
|
||||||
store(journal, new KahaTraceCommand().setMessage("LOADED " + new Date()));
|
|
||||||
}
|
|
||||||
}finally {
|
}finally {
|
||||||
this.indexLock.writeLock().unlock();
|
this.indexLock.writeLock().unlock();
|
||||||
}
|
}
|
||||||
|
@ -374,9 +392,7 @@ public class MessageDatabase extends ServiceSupport implements BrokerServiceAwar
|
||||||
try {
|
try {
|
||||||
pageFile.tx().execute(new Transaction.Closure<IOException>() {
|
pageFile.tx().execute(new Transaction.Closure<IOException>() {
|
||||||
public void execute(Transaction tx) throws IOException {
|
public void execute(Transaction tx) throws IOException {
|
||||||
for (Journal journal : getJournalManager().getJournals()) {
|
checkpointUpdate(tx, true);
|
||||||
checkpointUpdate(tx, journal, true);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
pageFile.unload();
|
pageFile.unload();
|
||||||
|
@ -384,7 +400,7 @@ public class MessageDatabase extends ServiceSupport implements BrokerServiceAwar
|
||||||
}finally {
|
}finally {
|
||||||
this.indexLock.writeLock().unlock();
|
this.indexLock.writeLock().unlock();
|
||||||
}
|
}
|
||||||
journalManager.close();
|
journal.close();
|
||||||
synchronized (checkpointThreadLock) {
|
synchronized (checkpointThreadLock) {
|
||||||
checkpointThread.join();
|
checkpointThread.join();
|
||||||
}
|
}
|
||||||
|
@ -417,13 +433,23 @@ public class MessageDatabase extends ServiceSupport implements BrokerServiceAwar
|
||||||
Location l = null;
|
Location l = null;
|
||||||
synchronized (inflightTransactions) {
|
synchronized (inflightTransactions) {
|
||||||
if (!inflightTransactions.isEmpty()) {
|
if (!inflightTransactions.isEmpty()) {
|
||||||
l = inflightTransactions.values().iterator().next().get(0).getLocation();
|
for (List<Operation> ops : inflightTransactions.values()) {
|
||||||
|
if (!ops.isEmpty()) {
|
||||||
|
l = ops.get(0).getLocation();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (!preparedTransactions.isEmpty()) {
|
if (!preparedTransactions.isEmpty()) {
|
||||||
Location t = preparedTransactions.values().iterator().next().get(0).getLocation();
|
for (List<Operation> ops : preparedTransactions.values()) {
|
||||||
|
if (!ops.isEmpty()) {
|
||||||
|
Location t = ops.get(0).getLocation();
|
||||||
if (l==null || t.compareTo(l) <= 0) {
|
if (l==null || t.compareTo(l) <= 0) {
|
||||||
l = t;
|
l = t;
|
||||||
}
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return l;
|
return l;
|
||||||
|
@ -432,23 +458,18 @@ public class MessageDatabase extends ServiceSupport implements BrokerServiceAwar
|
||||||
/**
|
/**
|
||||||
* Move all the messages that were in the journal into long term storage. We
|
* Move all the messages that were in the journal into long term storage. We
|
||||||
* just replay and do a checkpoint.
|
* just replay and do a checkpoint.
|
||||||
|
*
|
||||||
|
* @throws IOException
|
||||||
|
* @throws IOException
|
||||||
|
* @throws IllegalStateException
|
||||||
*/
|
*/
|
||||||
private void recover() throws IllegalStateException, IOException {
|
private void recover() throws IllegalStateException, IOException {
|
||||||
this.indexLock.writeLock().lock();
|
this.indexLock.writeLock().lock();
|
||||||
try {
|
try {
|
||||||
for (Journal journal : getJournalManager().getJournals()) {
|
|
||||||
recover(journal);
|
|
||||||
}
|
|
||||||
} finally {
|
|
||||||
this.indexLock.writeLock().unlock();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private void recover(final Journal journal) throws IllegalStateException, IOException {
|
|
||||||
|
|
||||||
long start = System.currentTimeMillis();
|
long start = System.currentTimeMillis();
|
||||||
Location producerAuditPosition = recoverProducerAudit(journal);
|
Location producerAuditPosition = recoverProducerAudit();
|
||||||
Location lastIndoubtPosition = getRecoveryPosition(journal);
|
Location lastIndoubtPosition = getRecoveryPosition();
|
||||||
|
|
||||||
Location recoveryPosition = minimum(producerAuditPosition, lastIndoubtPosition);
|
Location recoveryPosition = minimum(producerAuditPosition, lastIndoubtPosition);
|
||||||
|
|
||||||
|
@ -456,7 +477,7 @@ public class MessageDatabase extends ServiceSupport implements BrokerServiceAwar
|
||||||
int redoCounter = 0;
|
int redoCounter = 0;
|
||||||
LOG.info("Recovering from the journal ...");
|
LOG.info("Recovering from the journal ...");
|
||||||
while (recoveryPosition != null) {
|
while (recoveryPosition != null) {
|
||||||
JournalCommand<?> message = load(journal, recoveryPosition);
|
JournalCommand<?> message = load(recoveryPosition);
|
||||||
metadata.lastUpdate = recoveryPosition;
|
metadata.lastUpdate = recoveryPosition;
|
||||||
process(message, recoveryPosition, lastIndoubtPosition);
|
process(message, recoveryPosition, lastIndoubtPosition);
|
||||||
redoCounter++;
|
redoCounter++;
|
||||||
|
@ -469,7 +490,7 @@ public class MessageDatabase extends ServiceSupport implements BrokerServiceAwar
|
||||||
// We may have to undo some index updates.
|
// We may have to undo some index updates.
|
||||||
pageFile.tx().execute(new Transaction.Closure<IOException>() {
|
pageFile.tx().execute(new Transaction.Closure<IOException>() {
|
||||||
public void execute(Transaction tx) throws IOException {
|
public void execute(Transaction tx) throws IOException {
|
||||||
recoverIndex(tx, journal);
|
recoverIndex(tx);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -484,9 +505,16 @@ public class MessageDatabase extends ServiceSupport implements BrokerServiceAwar
|
||||||
}
|
}
|
||||||
for (TransactionId tx: toRollback) {
|
for (TransactionId tx: toRollback) {
|
||||||
LOG.debug("rolling back recovered indoubt local transaction " + tx);
|
LOG.debug("rolling back recovered indoubt local transaction " + tx);
|
||||||
store(journal, new KahaRollbackCommand().setTransactionInfo(createTransactionInfo(tx)), false, null, null);
|
store(new KahaRollbackCommand().setTransactionInfo(TransactionIdConversion.convertToLocal(tx)), false, null, null);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}finally {
|
||||||
|
this.indexLock.writeLock().unlock();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private KahaTransactionInfo createLocalTransactionInfo(TransactionId tx) {
|
||||||
|
return TransactionIdConversion.convertToLocal(tx);
|
||||||
}
|
}
|
||||||
|
|
||||||
private Location minimum(Location producerAuditPosition,
|
private Location minimum(Location producerAuditPosition,
|
||||||
|
@ -503,9 +531,9 @@ public class MessageDatabase extends ServiceSupport implements BrokerServiceAwar
|
||||||
return min;
|
return min;
|
||||||
}
|
}
|
||||||
|
|
||||||
private Location recoverProducerAudit(Journal journal) throws IOException {
|
private Location recoverProducerAudit() throws IOException {
|
||||||
if (metadata.producerSequenceIdTrackerLocation != null) {
|
if (metadata.producerSequenceIdTrackerLocation != null) {
|
||||||
KahaProducerAuditCommand audit = (KahaProducerAuditCommand) load(journal, metadata.producerSequenceIdTrackerLocation);
|
KahaProducerAuditCommand audit = (KahaProducerAuditCommand) load(metadata.producerSequenceIdTrackerLocation);
|
||||||
try {
|
try {
|
||||||
ObjectInputStream objectIn = new ObjectInputStream(audit.getAudit().newInput());
|
ObjectInputStream objectIn = new ObjectInputStream(audit.getAudit().newInput());
|
||||||
metadata.producerSequenceIdTracker = (ActiveMQMessageAuditNoSync) objectIn.readObject();
|
metadata.producerSequenceIdTracker = (ActiveMQMessageAuditNoSync) objectIn.readObject();
|
||||||
|
@ -520,7 +548,7 @@ public class MessageDatabase extends ServiceSupport implements BrokerServiceAwar
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void recoverIndex(Transaction tx, Journal journal) throws IOException {
|
protected void recoverIndex(Transaction tx) throws IOException {
|
||||||
long start = System.currentTimeMillis();
|
long start = System.currentTimeMillis();
|
||||||
// It is possible index updates got applied before the journal updates..
|
// It is possible index updates got applied before the journal updates..
|
||||||
// in that case we need to removed references to messages that are not in the journal
|
// in that case we need to removed references to messages that are not in the journal
|
||||||
|
@ -663,12 +691,12 @@ public class MessageDatabase extends ServiceSupport implements BrokerServiceAwar
|
||||||
private Location nextRecoveryPosition;
|
private Location nextRecoveryPosition;
|
||||||
private Location lastRecoveryPosition;
|
private Location lastRecoveryPosition;
|
||||||
|
|
||||||
public void incrementalRecover(Journal journal) throws IOException {
|
public void incrementalRecover() throws IOException {
|
||||||
this.indexLock.writeLock().lock();
|
this.indexLock.writeLock().lock();
|
||||||
try {
|
try {
|
||||||
if( nextRecoveryPosition == null ) {
|
if( nextRecoveryPosition == null ) {
|
||||||
if( lastRecoveryPosition==null ) {
|
if( lastRecoveryPosition==null ) {
|
||||||
nextRecoveryPosition = getRecoveryPosition(journal);
|
nextRecoveryPosition = getRecoveryPosition();
|
||||||
} else {
|
} else {
|
||||||
nextRecoveryPosition = journal.getNextLocation(lastRecoveryPosition);
|
nextRecoveryPosition = journal.getNextLocation(lastRecoveryPosition);
|
||||||
}
|
}
|
||||||
|
@ -676,7 +704,7 @@ public class MessageDatabase extends ServiceSupport implements BrokerServiceAwar
|
||||||
while (nextRecoveryPosition != null) {
|
while (nextRecoveryPosition != null) {
|
||||||
lastRecoveryPosition = nextRecoveryPosition;
|
lastRecoveryPosition = nextRecoveryPosition;
|
||||||
metadata.lastUpdate = lastRecoveryPosition;
|
metadata.lastUpdate = lastRecoveryPosition;
|
||||||
JournalCommand<?> message = load(journal, lastRecoveryPosition);
|
JournalCommand<?> message = load(lastRecoveryPosition);
|
||||||
process(message, lastRecoveryPosition, (Runnable)null);
|
process(message, lastRecoveryPosition, (Runnable)null);
|
||||||
nextRecoveryPosition = journal.getNextLocation(lastRecoveryPosition);
|
nextRecoveryPosition = journal.getNextLocation(lastRecoveryPosition);
|
||||||
}
|
}
|
||||||
|
@ -689,7 +717,7 @@ public class MessageDatabase extends ServiceSupport implements BrokerServiceAwar
|
||||||
return metadata.lastUpdate;
|
return metadata.lastUpdate;
|
||||||
}
|
}
|
||||||
|
|
||||||
private Location getRecoveryPosition(Journal journal) throws IOException {
|
private Location getRecoveryPosition() throws IOException {
|
||||||
|
|
||||||
if (!this.forceRecoverIndex) {
|
if (!this.forceRecoverIndex) {
|
||||||
|
|
||||||
|
@ -709,12 +737,6 @@ public class MessageDatabase extends ServiceSupport implements BrokerServiceAwar
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void checkpointCleanup(final boolean cleanup) throws IOException {
|
protected void checkpointCleanup(final boolean cleanup) throws IOException {
|
||||||
for (Journal journal : getJournalManager().getJournals()) {
|
|
||||||
checkpointCleanup(journal, cleanup);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
protected void checkpointCleanup(final Journal journal, final boolean cleanup) throws IOException {
|
|
||||||
long start;
|
long start;
|
||||||
this.indexLock.writeLock().lock();
|
this.indexLock.writeLock().lock();
|
||||||
try {
|
try {
|
||||||
|
@ -724,7 +746,7 @@ public class MessageDatabase extends ServiceSupport implements BrokerServiceAwar
|
||||||
}
|
}
|
||||||
pageFile.tx().execute(new Transaction.Closure<IOException>() {
|
pageFile.tx().execute(new Transaction.Closure<IOException>() {
|
||||||
public void execute(Transaction tx) throws IOException {
|
public void execute(Transaction tx) throws IOException {
|
||||||
checkpointUpdate(tx, journal, cleanup);
|
checkpointUpdate(tx, cleanup);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}finally {
|
}finally {
|
||||||
|
@ -737,12 +759,12 @@ public class MessageDatabase extends ServiceSupport implements BrokerServiceAwar
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public void checkpoint(final Journal journal, Callback closure) throws Exception {
|
public void checkpoint(Callback closure) throws Exception {
|
||||||
this.indexLock.writeLock().lock();
|
this.indexLock.writeLock().lock();
|
||||||
try {
|
try {
|
||||||
pageFile.tx().execute(new Transaction.Closure<IOException>() {
|
pageFile.tx().execute(new Transaction.Closure<IOException>() {
|
||||||
public void execute(Transaction tx) throws IOException {
|
public void execute(Transaction tx) throws IOException {
|
||||||
checkpointUpdate(tx, journal, false);
|
checkpointUpdate(tx, false);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
closure.execute();
|
closure.execute();
|
||||||
|
@ -754,18 +776,17 @@ public class MessageDatabase extends ServiceSupport implements BrokerServiceAwar
|
||||||
// /////////////////////////////////////////////////////////////////
|
// /////////////////////////////////////////////////////////////////
|
||||||
// Methods call by the broker to update and query the store.
|
// Methods call by the broker to update and query the store.
|
||||||
// /////////////////////////////////////////////////////////////////
|
// /////////////////////////////////////////////////////////////////
|
||||||
public Location store(Journal journal, JournalCommand<?> data) throws IOException {
|
public Location store(JournalCommand<?> data) throws IOException {
|
||||||
return store(journal, data, false, null, null);
|
return store(data, false, null,null);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* All updated are are funneled through this method. The updates are converted
|
* All updated are are funneled through this method. The updates are converted
|
||||||
* to a JournalMessage which is logged to the journal and then the data from
|
* to a JournalMessage which is logged to the journal and then the data from
|
||||||
* the JournalMessage is used to update the index just like it would be done
|
* the JournalMessage is used to update the index just like it would be done
|
||||||
* during a recovery process.
|
* during a recovery process.
|
||||||
*/
|
*/
|
||||||
public Location store(final Journal journal, JournalCommand<?> data, boolean sync, Runnable before, Runnable after) throws IOException {
|
public Location store(JournalCommand<?> data, boolean sync, Runnable before,Runnable after) throws IOException {
|
||||||
if (before != null) {
|
if (before != null) {
|
||||||
before.run();
|
before.run();
|
||||||
}
|
}
|
||||||
|
@ -812,8 +833,12 @@ public class MessageDatabase extends ServiceSupport implements BrokerServiceAwar
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Loads a previously stored JournalMessage
|
* Loads a previously stored JournalMessage
|
||||||
|
*
|
||||||
|
* @param location
|
||||||
|
* @return
|
||||||
|
* @throws IOException
|
||||||
*/
|
*/
|
||||||
public JournalCommand<?> load(Journal journal, Location location) throws IOException {
|
public JournalCommand<?> load(Location location) throws IOException {
|
||||||
long start = System.currentTimeMillis();
|
long start = System.currentTimeMillis();
|
||||||
ByteSequence data = journal.read(location);
|
ByteSequence data = journal.read(location);
|
||||||
long end = System.currentTimeMillis();
|
long end = System.currentTimeMillis();
|
||||||
|
@ -833,6 +858,10 @@ public class MessageDatabase extends ServiceSupport implements BrokerServiceAwar
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* do minimal recovery till we reach the last inDoubtLocation
|
* do minimal recovery till we reach the last inDoubtLocation
|
||||||
|
* @param data
|
||||||
|
* @param location
|
||||||
|
* @param inDoubtlocation
|
||||||
|
* @throws IOException
|
||||||
*/
|
*/
|
||||||
void process(JournalCommand<?> data, final Location location, final Location inDoubtlocation) throws IOException {
|
void process(JournalCommand<?> data, final Location location, final Location inDoubtlocation) throws IOException {
|
||||||
if (inDoubtlocation != null && location.compareTo(inDoubtlocation) >= 0) {
|
if (inDoubtlocation != null && location.compareTo(inDoubtlocation) >= 0) {
|
||||||
|
@ -984,7 +1013,7 @@ public class MessageDatabase extends ServiceSupport implements BrokerServiceAwar
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void process(KahaCommitCommand command, Location location, final Runnable after) throws IOException {
|
protected void process(KahaCommitCommand command, Location location, final Runnable after) throws IOException {
|
||||||
TransactionId key = key(command.getTransactionInfo());
|
TransactionId key = TransactionIdConversion.convert(command.getTransactionInfo());
|
||||||
List<Operation> inflightTx;
|
List<Operation> inflightTx;
|
||||||
synchronized (inflightTransactions) {
|
synchronized (inflightTransactions) {
|
||||||
inflightTx = inflightTransactions.remove(key);
|
inflightTx = inflightTransactions.remove(key);
|
||||||
|
@ -1014,7 +1043,7 @@ public class MessageDatabase extends ServiceSupport implements BrokerServiceAwar
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void process(KahaPrepareCommand command, Location location) {
|
protected void process(KahaPrepareCommand command, Location location) {
|
||||||
TransactionId key = key(command.getTransactionInfo());
|
TransactionId key = TransactionIdConversion.convert(command.getTransactionInfo());
|
||||||
synchronized (inflightTransactions) {
|
synchronized (inflightTransactions) {
|
||||||
List<Operation> tx = inflightTransactions.remove(key);
|
List<Operation> tx = inflightTransactions.remove(key);
|
||||||
if (tx != null) {
|
if (tx != null) {
|
||||||
|
@ -1024,7 +1053,7 @@ public class MessageDatabase extends ServiceSupport implements BrokerServiceAwar
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void process(KahaRollbackCommand command, Location location) {
|
protected void process(KahaRollbackCommand command, Location location) {
|
||||||
TransactionId key = key(command.getTransactionInfo());
|
TransactionId key = TransactionIdConversion.convert(command.getTransactionInfo());
|
||||||
synchronized (inflightTransactions) {
|
synchronized (inflightTransactions) {
|
||||||
List<Operation> tx = inflightTransactions.remove(key);
|
List<Operation> tx = inflightTransactions.remove(key);
|
||||||
if (tx == null) {
|
if (tx == null) {
|
||||||
|
@ -1119,7 +1148,6 @@ public class MessageDatabase extends ServiceSupport implements BrokerServiceAwar
|
||||||
}
|
}
|
||||||
|
|
||||||
Map<Integer, Set<Integer>> ackMessageFileMap = new HashMap<Integer, Set<Integer>>();
|
Map<Integer, Set<Integer>> ackMessageFileMap = new HashMap<Integer, Set<Integer>>();
|
||||||
|
|
||||||
private void recordAckMessageReferenceLocation(Location ackLocation, Location messageLocation) {
|
private void recordAckMessageReferenceLocation(Location ackLocation, Location messageLocation) {
|
||||||
Set<Integer> referenceFileIds = ackMessageFileMap.get(Integer.valueOf(ackLocation.getDataFileId()));
|
Set<Integer> referenceFileIds = ackMessageFileMap.get(Integer.valueOf(ackLocation.getDataFileId()));
|
||||||
if (referenceFileIds == null) {
|
if (referenceFileIds == null) {
|
||||||
|
@ -1191,14 +1219,14 @@ public class MessageDatabase extends ServiceSupport implements BrokerServiceAwar
|
||||||
* @param tx
|
* @param tx
|
||||||
* @throws IOException
|
* @throws IOException
|
||||||
*/
|
*/
|
||||||
void checkpointUpdate(Transaction tx, Journal journal, boolean cleanup) throws IOException {
|
void checkpointUpdate(Transaction tx, boolean cleanup) throws IOException {
|
||||||
LOG.debug("Checkpoint started.");
|
LOG.debug("Checkpoint started.");
|
||||||
|
|
||||||
// reflect last update exclusive of current checkpoint
|
// reflect last update exclusive of current checkpoint
|
||||||
Location firstTxLocation = metadata.lastUpdate;
|
Location firstTxLocation = metadata.lastUpdate;
|
||||||
|
|
||||||
metadata.state = OPEN_STATE;
|
metadata.state = OPEN_STATE;
|
||||||
metadata.producerSequenceIdTrackerLocation = checkpointProducerAudit(journal);
|
metadata.producerSequenceIdTrackerLocation = checkpointProducerAudit();
|
||||||
metadata.firstInProgressTransactionLocation = getFirstInProgressTxLocation();
|
metadata.firstInProgressTransactionLocation = getFirstInProgressTxLocation();
|
||||||
tx.store(metadata.page, metadataMarshaller, true);
|
tx.store(metadata.page, metadataMarshaller, true);
|
||||||
pageFile.flush();
|
pageFile.flush();
|
||||||
|
@ -1247,7 +1275,6 @@ public class MessageDatabase extends ServiceSupport implements BrokerServiceAwar
|
||||||
// Use a visitor to cut down the number of pages that we load
|
// Use a visitor to cut down the number of pages that we load
|
||||||
entry.getValue().locationIndex.visit(tx, new BTreeVisitor<Location, Long>() {
|
entry.getValue().locationIndex.visit(tx, new BTreeVisitor<Location, Long>() {
|
||||||
int last=-1;
|
int last=-1;
|
||||||
|
|
||||||
public boolean isInterestedInKeysBetween(Location first, Location second) {
|
public boolean isInterestedInKeysBetween(Location first, Location second) {
|
||||||
if( first==null ) {
|
if( first==null ) {
|
||||||
SortedSet<Integer> subset = gcCandidateSet.headSet(second.getDataFileId()+1);
|
SortedSet<Integer> subset = gcCandidateSet.headSet(second.getDataFileId()+1);
|
||||||
|
@ -1319,13 +1346,13 @@ public class MessageDatabase extends ServiceSupport implements BrokerServiceAwar
|
||||||
LOG.debug("Checkpoint done.");
|
LOG.debug("Checkpoint done.");
|
||||||
}
|
}
|
||||||
|
|
||||||
private Location checkpointProducerAudit(Journal journal) throws IOException {
|
private Location checkpointProducerAudit() throws IOException {
|
||||||
ByteArrayOutputStream baos = new ByteArrayOutputStream();
|
ByteArrayOutputStream baos = new ByteArrayOutputStream();
|
||||||
ObjectOutputStream oout = new ObjectOutputStream(baos);
|
ObjectOutputStream oout = new ObjectOutputStream(baos);
|
||||||
oout.writeObject(metadata.producerSequenceIdTracker);
|
oout.writeObject(metadata.producerSequenceIdTracker);
|
||||||
oout.flush();
|
oout.flush();
|
||||||
oout.close();
|
oout.close();
|
||||||
return store(journal, new KahaProducerAuditCommand().setAudit(new Buffer(baos.toByteArray())), true, null, null);
|
return store(new KahaProducerAuditCommand().setAudit(new Buffer(baos.toByteArray())), true, null, null);
|
||||||
}
|
}
|
||||||
|
|
||||||
public HashSet<Integer> getJournalFilesBeingReplicated() {
|
public HashSet<Integer> getJournalFilesBeingReplicated() {
|
||||||
|
@ -1665,7 +1692,6 @@ public class MessageDatabase extends ServiceSupport implements BrokerServiceAwar
|
||||||
}
|
}
|
||||||
|
|
||||||
final HashSet nextMessageIdMarker = new HashSet<String>();
|
final HashSet nextMessageIdMarker = new HashSet<String>();
|
||||||
|
|
||||||
// on a new message add, all existing subs are interested in this message
|
// on a new message add, all existing subs are interested in this message
|
||||||
private void addAckLocationForNewMessage(Transaction tx, StoredDestination sd, Long messageSequence) throws IOException {
|
private void addAckLocationForNewMessage(Transaction tx, StoredDestination sd, Long messageSequence) throws IOException {
|
||||||
HashSet hs = new HashSet<String>();
|
HashSet hs = new HashSet<String>();
|
||||||
|
@ -1729,11 +1755,11 @@ public class MessageDatabase extends ServiceSupport implements BrokerServiceAwar
|
||||||
// /////////////////////////////////////////////////////////////////
|
// /////////////////////////////////////////////////////////////////
|
||||||
// Transaction related implementation methods.
|
// Transaction related implementation methods.
|
||||||
// /////////////////////////////////////////////////////////////////
|
// /////////////////////////////////////////////////////////////////
|
||||||
protected final LinkedHashMap<TransactionId, List<Operation>> inflightTransactions = new LinkedHashMap<TransactionId, List<Operation>>();
|
private final LinkedHashMap<TransactionId, List<Operation>> inflightTransactions = new LinkedHashMap<TransactionId, List<Operation>>();
|
||||||
protected final LinkedHashMap<TransactionId, List<Operation>> preparedTransactions = new LinkedHashMap<TransactionId, List<Operation>>();
|
protected final LinkedHashMap<TransactionId, List<Operation>> preparedTransactions = new LinkedHashMap<TransactionId, List<Operation>>();
|
||||||
protected final Set<String> ackedAndPrepared = new HashSet<String>();
|
protected final Set<String> ackedAndPrepared = new HashSet<String>();
|
||||||
|
|
||||||
// messages that have prepared (pending) acks cannot be redispatched unless the outcome is rollback,
|
// messages that have prepared (pending) acks cannot be re-dispatched unless the outcome is rollback,
|
||||||
// till then they are skipped by the store.
|
// till then they are skipped by the store.
|
||||||
// 'at most once' XA guarantee
|
// 'at most once' XA guarantee
|
||||||
public void trackRecoveredAcks(ArrayList<MessageAck> acks) {
|
public void trackRecoveredAcks(ArrayList<MessageAck> acks) {
|
||||||
|
@ -1761,7 +1787,7 @@ public class MessageDatabase extends ServiceSupport implements BrokerServiceAwar
|
||||||
}
|
}
|
||||||
|
|
||||||
private List<Operation> getInflightTx(KahaTransactionInfo info, Location location) {
|
private List<Operation> getInflightTx(KahaTransactionInfo info, Location location) {
|
||||||
TransactionId key = key(info);
|
TransactionId key = TransactionIdConversion.convert(info);
|
||||||
List<Operation> tx;
|
List<Operation> tx;
|
||||||
synchronized (inflightTransactions) {
|
synchronized (inflightTransactions) {
|
||||||
tx = inflightTransactions.get(key);
|
tx = inflightTransactions.get(key);
|
||||||
|
@ -1774,20 +1800,7 @@ public class MessageDatabase extends ServiceSupport implements BrokerServiceAwar
|
||||||
}
|
}
|
||||||
|
|
||||||
private TransactionId key(KahaTransactionInfo transactionInfo) {
|
private TransactionId key(KahaTransactionInfo transactionInfo) {
|
||||||
if (transactionInfo.hasLocalTransacitonId()) {
|
return TransactionIdConversion.convert(transactionInfo);
|
||||||
KahaLocalTransactionId tx = transactionInfo.getLocalTransacitonId();
|
|
||||||
LocalTransactionId rc = new LocalTransactionId();
|
|
||||||
rc.setConnectionId(new ConnectionId(tx.getConnectionId()));
|
|
||||||
rc.setValue(tx.getTransacitonId());
|
|
||||||
return rc;
|
|
||||||
} else {
|
|
||||||
KahaXATransactionId tx = transactionInfo.getXaTransacitonId();
|
|
||||||
XATransactionId rc = new XATransactionId();
|
|
||||||
rc.setBranchQualifier(tx.getBranchQualifier().toByteArray());
|
|
||||||
rc.setGlobalTransactionId(tx.getGlobalTransactionId().toByteArray());
|
|
||||||
rc.setFormatId(tx.getFormatId());
|
|
||||||
return rc;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
abstract class Operation {
|
abstract class Operation {
|
||||||
|
@ -1852,15 +1865,15 @@ public class MessageDatabase extends ServiceSupport implements BrokerServiceAwar
|
||||||
return index;
|
return index;
|
||||||
}
|
}
|
||||||
|
|
||||||
private JournalManager createJournalManager() throws IOException {
|
private Journal createJournal() throws IOException {
|
||||||
JournalManager manager = isJournalPerDestination() ? new DestinationJournalManager() : new DefaultJournalManager();
|
Journal manager = new Journal();
|
||||||
manager.setDirectory(directory);
|
manager.setDirectory(directory);
|
||||||
manager.setMaxFileLength(getJournalMaxFileLength());
|
manager.setMaxFileLength(getJournalMaxFileLength());
|
||||||
manager.setCheckForCorruptionOnStartup(checkForCorruptJournalFiles);
|
manager.setCheckForCorruptionOnStartup(checkForCorruptJournalFiles);
|
||||||
manager.setChecksum(checksumJournalFiles || checkForCorruptJournalFiles);
|
manager.setChecksum(checksumJournalFiles || checkForCorruptJournalFiles);
|
||||||
manager.setWriteBatchSize(getJournalMaxWriteBatchSize());
|
manager.setWriteBatchSize(getJournalMaxWriteBatchSize());
|
||||||
manager.setArchiveDataLogs(isArchiveDataLogs());
|
manager.setArchiveDataLogs(isArchiveDataLogs());
|
||||||
manager.setStoreSize(storeSize);
|
manager.setSizeAccumulator(storeSize);
|
||||||
if (getDirectoryArchive() != null) {
|
if (getDirectoryArchive() != null) {
|
||||||
IOHelper.mkdirs(getDirectoryArchive());
|
IOHelper.mkdirs(getDirectoryArchive());
|
||||||
manager.setDirectoryArchive(getDirectoryArchive());
|
manager.setDirectoryArchive(getDirectoryArchive());
|
||||||
|
@ -1963,15 +1976,11 @@ public class MessageDatabase extends ServiceSupport implements BrokerServiceAwar
|
||||||
return pageFile;
|
return pageFile;
|
||||||
}
|
}
|
||||||
|
|
||||||
public JournalManager getJournalManager() throws IOException {
|
public Journal getJournal() throws IOException {
|
||||||
if (journalManager == null) {
|
if (journal == null) {
|
||||||
journalManager = createJournalManager();
|
journal = createJournal();
|
||||||
}
|
}
|
||||||
return journalManager;
|
return journal;
|
||||||
}
|
|
||||||
|
|
||||||
public Journal getJournal(ActiveMQDestination destination) throws IOException {
|
|
||||||
return getJournalManager().getJournal(destination);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean isFailIfDatabaseIsLocked() {
|
public boolean isFailIfDatabaseIsLocked() {
|
||||||
|
@ -2060,46 +2069,14 @@ public class MessageDatabase extends ServiceSupport implements BrokerServiceAwar
|
||||||
this.databaseLockedWaitDelay = databaseLockedWaitDelay;
|
this.databaseLockedWaitDelay = databaseLockedWaitDelay;
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean isJournalPerDestination() {
|
|
||||||
return journalPerDestination;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setJournalPerDestination(boolean journalPerDestination) {
|
|
||||||
this.journalPerDestination = journalPerDestination;
|
|
||||||
}
|
|
||||||
|
|
||||||
// /////////////////////////////////////////////////////////////////
|
// /////////////////////////////////////////////////////////////////
|
||||||
// Internal conversion methods.
|
// Internal conversion methods.
|
||||||
// /////////////////////////////////////////////////////////////////
|
// /////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
KahaTransactionInfo createTransactionInfo(TransactionId txid) {
|
|
||||||
if (txid == null) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
KahaTransactionInfo rc = new KahaTransactionInfo();
|
|
||||||
|
|
||||||
if (txid.isLocalTransaction()) {
|
|
||||||
LocalTransactionId t = (LocalTransactionId) txid;
|
|
||||||
KahaLocalTransactionId kahaTxId = new KahaLocalTransactionId();
|
|
||||||
kahaTxId.setConnectionId(t.getConnectionId().getValue());
|
|
||||||
kahaTxId.setTransacitonId(t.getValue());
|
|
||||||
rc.setLocalTransacitonId(kahaTxId);
|
|
||||||
} else {
|
|
||||||
XATransactionId t = (XATransactionId) txid;
|
|
||||||
KahaXATransactionId kahaTxId = new KahaXATransactionId();
|
|
||||||
kahaTxId.setBranchQualifier(new Buffer(t.getBranchQualifier()));
|
|
||||||
kahaTxId.setGlobalTransactionId(new Buffer(t.getGlobalTransactionId()));
|
|
||||||
kahaTxId.setFormatId(t.getFormatId());
|
|
||||||
rc.setXaTransacitonId(kahaTxId);
|
|
||||||
}
|
|
||||||
return rc;
|
|
||||||
}
|
|
||||||
|
|
||||||
class MessageOrderCursor{
|
class MessageOrderCursor{
|
||||||
long defaultCursorPosition;
|
long defaultCursorPosition;
|
||||||
long lowPriorityCursorPosition;
|
long lowPriorityCursorPosition;
|
||||||
long highPriorityCursorPosition;
|
long highPriorityCursorPosition;
|
||||||
|
|
||||||
MessageOrderCursor(){
|
MessageOrderCursor(){
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2373,6 +2350,7 @@ public class MessageDatabase extends ServiceSupport implements BrokerServiceAwar
|
||||||
final Iterator<Entry<Long, MessageKeys>>lowIterator;
|
final Iterator<Entry<Long, MessageKeys>>lowIterator;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
MessageOrderIterator(Transaction tx, MessageOrderCursor m) throws IOException {
|
MessageOrderIterator(Transaction tx, MessageOrderCursor m) throws IOException {
|
||||||
this.defaultIterator = defaultPriorityIndex.iterator(tx, m.defaultCursorPosition);
|
this.defaultIterator = defaultPriorityIndex.iterator(tx, m.defaultCursorPosition);
|
||||||
if (highPriorityIndex != null) {
|
if (highPriorityIndex != null) {
|
||||||
|
|
|
@ -0,0 +1,295 @@
|
||||||
|
/**
|
||||||
|
* 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.store.kahadb;
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.nio.charset.Charset;
|
||||||
|
import java.util.HashSet;
|
||||||
|
import java.util.LinkedList;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Set;
|
||||||
|
import javax.xml.bind.annotation.XmlAnyAttribute;
|
||||||
|
import org.apache.activemq.broker.BrokerService;
|
||||||
|
import org.apache.activemq.broker.BrokerServiceAware;
|
||||||
|
import org.apache.activemq.broker.ConnectionContext;
|
||||||
|
import org.apache.activemq.command.ActiveMQDestination;
|
||||||
|
import org.apache.activemq.command.ActiveMQQueue;
|
||||||
|
import org.apache.activemq.command.ActiveMQTopic;
|
||||||
|
import org.apache.activemq.command.LocalTransactionId;
|
||||||
|
import org.apache.activemq.command.ProducerId;
|
||||||
|
import org.apache.activemq.command.TransactionId;
|
||||||
|
import org.apache.activemq.command.XATransactionId;
|
||||||
|
import org.apache.activemq.filter.AnyDestination;
|
||||||
|
import org.apache.activemq.filter.DestinationMap;
|
||||||
|
import org.apache.activemq.protobuf.Buffer;
|
||||||
|
import org.apache.activemq.store.MessageStore;
|
||||||
|
import org.apache.activemq.store.PersistenceAdapter;
|
||||||
|
import org.apache.activemq.store.TopicMessageStore;
|
||||||
|
import org.apache.activemq.store.TransactionStore;
|
||||||
|
import org.apache.activemq.store.kahadb.data.KahaTransactionInfo;
|
||||||
|
import org.apache.activemq.store.kahadb.data.KahaXATransactionId;
|
||||||
|
import org.apache.activemq.usage.SystemUsage;
|
||||||
|
import org.apache.activemq.util.IOHelper;
|
||||||
|
import org.slf4j.Logger;
|
||||||
|
import org.slf4j.LoggerFactory;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* An implementation of {@link org.apache.activemq.store.PersistenceAdapter} that supports
|
||||||
|
* distribution of destinations across multiple kahaDB persistence adapters
|
||||||
|
*
|
||||||
|
* @org.apache.xbean.XBean element="mKahaDB"
|
||||||
|
*/
|
||||||
|
public class MultiKahaDBPersistenceAdapter extends DestinationMap implements PersistenceAdapter, BrokerServiceAware {
|
||||||
|
static final Logger LOG = LoggerFactory.getLogger(MultiKahaDBPersistenceAdapter.class);
|
||||||
|
|
||||||
|
final static ActiveMQDestination matchAll = new AnyDestination(new ActiveMQDestination[]{new ActiveMQQueue(">"), new ActiveMQTopic(">")});
|
||||||
|
final int LOCAL_FORMAT_ID_MAGIC = Integer.valueOf(System.getProperty("org.apache.activemq.store.kahadb.MultiKahaDBTransactionStore.localXaFormatId", "61616"));
|
||||||
|
|
||||||
|
BrokerService brokerService;
|
||||||
|
List<KahaDBPersistenceAdapter> adapters = new LinkedList<KahaDBPersistenceAdapter>();
|
||||||
|
private File directory = new File(IOHelper.getDefaultDataDirectory() + File.separator + "mKahaDB");
|
||||||
|
|
||||||
|
MultiKahaDBTransactionStore transactionStore = new MultiKahaDBTransactionStore(this);
|
||||||
|
|
||||||
|
// all local store transactions are XA, 2pc if more than one adapter involved
|
||||||
|
TransactionIdTransformer transactionIdTransformer = new TransactionIdTransformer() {
|
||||||
|
@Override
|
||||||
|
public KahaTransactionInfo transform(TransactionId txid) {
|
||||||
|
if (txid == null) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
KahaTransactionInfo rc = new KahaTransactionInfo();
|
||||||
|
KahaXATransactionId kahaTxId = new KahaXATransactionId();
|
||||||
|
if (txid.isLocalTransaction()) {
|
||||||
|
LocalTransactionId t = (LocalTransactionId) txid;
|
||||||
|
kahaTxId.setBranchQualifier(new Buffer(Long.toString(t.getValue()).getBytes(Charset.forName("utf-8"))));
|
||||||
|
kahaTxId.setGlobalTransactionId(new Buffer(t.getConnectionId().getValue().getBytes(Charset.forName("utf-8"))));
|
||||||
|
kahaTxId.setFormatId(LOCAL_FORMAT_ID_MAGIC);
|
||||||
|
} else {
|
||||||
|
XATransactionId t = (XATransactionId) txid;
|
||||||
|
kahaTxId.setBranchQualifier(new Buffer(t.getBranchQualifier()));
|
||||||
|
kahaTxId.setGlobalTransactionId(new Buffer(t.getGlobalTransactionId()));
|
||||||
|
kahaTxId.setFormatId(t.getFormatId());
|
||||||
|
}
|
||||||
|
rc.setXaTransacitonId(kahaTxId);
|
||||||
|
return rc;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets the FilteredKahaDBPersistenceAdapter entries
|
||||||
|
*
|
||||||
|
* @org.apache.xbean.ElementType class="org.apache.activemq.store.kahadb.FilteredKahaDBPersistenceAdapter"
|
||||||
|
*/
|
||||||
|
public void setFilteredPersistenceAdapters(List entries) {
|
||||||
|
for (Object entry : entries) {
|
||||||
|
FilteredKahaDBPersistenceAdapter filteredAdapter = (FilteredKahaDBPersistenceAdapter) entry;
|
||||||
|
KahaDBPersistenceAdapter adapter = filteredAdapter.getPersistenceAdapter();
|
||||||
|
if (filteredAdapter.getDestination() == null) {
|
||||||
|
filteredAdapter.setDestination(matchAll);
|
||||||
|
}
|
||||||
|
adapter.setDirectory(new File(getDirectory(), nameFromDestinationFilter(filteredAdapter.getDestination())));
|
||||||
|
|
||||||
|
// need a per store factory that will put the store in the branch qualifier to disiambiguate xid mbeans
|
||||||
|
adapter.getStore().setTransactionIdTransformer(transactionIdTransformer);
|
||||||
|
adapters.add(adapter);
|
||||||
|
}
|
||||||
|
super.setEntries(entries);
|
||||||
|
}
|
||||||
|
|
||||||
|
private String nameFromDestinationFilter(ActiveMQDestination destination) {
|
||||||
|
return IOHelper.toFileSystemSafeName(destination.getQualifiedName());
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isLocalXid(TransactionId xid) {
|
||||||
|
return xid instanceof XATransactionId &&
|
||||||
|
((XATransactionId)xid).getFormatId() == LOCAL_FORMAT_ID_MAGIC;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void beginTransaction(ConnectionContext context) throws IOException {
|
||||||
|
throw new IllegalStateException();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void checkpoint(final boolean sync) throws IOException {
|
||||||
|
for (PersistenceAdapter persistenceAdapter : adapters) {
|
||||||
|
persistenceAdapter.checkpoint(sync);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void commitTransaction(ConnectionContext context) throws IOException {
|
||||||
|
throw new IllegalStateException();
|
||||||
|
}
|
||||||
|
|
||||||
|
public MessageStore createQueueMessageStore(ActiveMQQueue destination) throws IOException {
|
||||||
|
PersistenceAdapter persistenceAdapter = getMatchingPersistenceAdapter(destination);
|
||||||
|
return transactionStore.proxy(persistenceAdapter.createTransactionStore(), persistenceAdapter.createQueueMessageStore(destination));
|
||||||
|
}
|
||||||
|
|
||||||
|
private PersistenceAdapter getMatchingPersistenceAdapter(ActiveMQDestination destination) {
|
||||||
|
Object result = this.chooseValue(destination);
|
||||||
|
if (result == null) {
|
||||||
|
throw new RuntimeException("No matching persistence adapter configured for destination: " + destination + ", options:" + adapters);
|
||||||
|
}
|
||||||
|
return ((FilteredKahaDBPersistenceAdapter) result).getPersistenceAdapter();
|
||||||
|
}
|
||||||
|
|
||||||
|
public TopicMessageStore createTopicMessageStore(ActiveMQTopic destination) throws IOException {
|
||||||
|
PersistenceAdapter persistenceAdapter = getMatchingPersistenceAdapter(destination);
|
||||||
|
return transactionStore.proxy(persistenceAdapter.createTransactionStore(), persistenceAdapter.createTopicMessageStore(destination));
|
||||||
|
}
|
||||||
|
|
||||||
|
public TransactionStore createTransactionStore() throws IOException {
|
||||||
|
return transactionStore;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void deleteAllMessages() throws IOException {
|
||||||
|
for (PersistenceAdapter persistenceAdapter : adapters) {
|
||||||
|
persistenceAdapter.deleteAllMessages();
|
||||||
|
}
|
||||||
|
transactionStore.deleteAllMessages();
|
||||||
|
}
|
||||||
|
|
||||||
|
public Set<ActiveMQDestination> getDestinations() {
|
||||||
|
Set<ActiveMQDestination> results = new HashSet<ActiveMQDestination>();
|
||||||
|
for (PersistenceAdapter persistenceAdapter : adapters) {
|
||||||
|
results.addAll(persistenceAdapter.getDestinations());
|
||||||
|
}
|
||||||
|
return results;
|
||||||
|
}
|
||||||
|
|
||||||
|
public long getLastMessageBrokerSequenceId() throws IOException {
|
||||||
|
long maxId = -1;
|
||||||
|
for (PersistenceAdapter persistenceAdapter : adapters) {
|
||||||
|
maxId = Math.max(maxId, persistenceAdapter.getLastMessageBrokerSequenceId());
|
||||||
|
}
|
||||||
|
return maxId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public long getLastProducerSequenceId(ProducerId id) throws IOException {
|
||||||
|
long maxId = -1;
|
||||||
|
for (PersistenceAdapter persistenceAdapter : adapters) {
|
||||||
|
maxId = Math.max(maxId, persistenceAdapter.getLastProducerSequenceId(id));
|
||||||
|
}
|
||||||
|
return maxId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void removeQueueMessageStore(ActiveMQQueue destination) {
|
||||||
|
getMatchingPersistenceAdapter(destination).removeQueueMessageStore(destination);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void removeTopicMessageStore(ActiveMQTopic destination) {
|
||||||
|
getMatchingPersistenceAdapter(destination).removeTopicMessageStore(destination);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void rollbackTransaction(ConnectionContext context) throws IOException {
|
||||||
|
throw new IllegalStateException();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setBrokerName(String brokerName) {
|
||||||
|
for (PersistenceAdapter persistenceAdapter : adapters) {
|
||||||
|
persistenceAdapter.setBrokerName(brokerName);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setUsageManager(SystemUsage usageManager) {
|
||||||
|
for (PersistenceAdapter persistenceAdapter : adapters) {
|
||||||
|
persistenceAdapter.setUsageManager(usageManager);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public long size() {
|
||||||
|
long size = 0;
|
||||||
|
for (PersistenceAdapter persistenceAdapter : adapters) {
|
||||||
|
size += persistenceAdapter.size();
|
||||||
|
}
|
||||||
|
return size;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void start() throws Exception {
|
||||||
|
for (PersistenceAdapter persistenceAdapter : adapters) {
|
||||||
|
persistenceAdapter.start();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void stop() throws Exception {
|
||||||
|
for (PersistenceAdapter persistenceAdapter : adapters) {
|
||||||
|
persistenceAdapter.stop();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public File getDirectory() {
|
||||||
|
return this.directory;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void setDirectory(File dir) {
|
||||||
|
this.directory = directory;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setBrokerService(BrokerService brokerService) {
|
||||||
|
for (KahaDBPersistenceAdapter persistenceAdapter : adapters) {
|
||||||
|
persistenceAdapter.setBrokerService(brokerService);
|
||||||
|
}
|
||||||
|
this.brokerService = brokerService;
|
||||||
|
}
|
||||||
|
|
||||||
|
public BrokerService getBrokerService() {
|
||||||
|
return brokerService;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTransactionStore(MultiKahaDBTransactionStore transactionStore) {
|
||||||
|
this.transactionStore = transactionStore;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set the max file length of the transaction journal
|
||||||
|
* When set using Xbean, values of the form "20 Mb", "1024kb", and "1g" can
|
||||||
|
* be used
|
||||||
|
*
|
||||||
|
* @org.apache.xbean.Property propertyEditor="org.apache.activemq.util.MemoryIntPropertyEditor"
|
||||||
|
*/
|
||||||
|
public void setJournalMaxFileLength(int maxFileLength) {
|
||||||
|
transactionStore.setJournalMaxFileLength(maxFileLength);
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getJournalMaxFileLength() {
|
||||||
|
return transactionStore.getJournalMaxFileLength();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set the max write batch size of the transaction journal
|
||||||
|
* When set using Xbean, values of the form "20 Mb", "1024kb", and "1g" can
|
||||||
|
* be used
|
||||||
|
*
|
||||||
|
* @org.apache.xbean.Property propertyEditor="org.apache.activemq.util.MemoryIntPropertyEditor"
|
||||||
|
*/
|
||||||
|
public void setJournalWriteBatchSize(int journalWriteBatchSize) {
|
||||||
|
transactionStore.setJournalMaxWriteBatchSize(journalWriteBatchSize);
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getJournalMaxWriteBatchSize() {
|
||||||
|
return transactionStore.getJournalMaxWriteBatchSize();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
String path = getDirectory() != null ? getDirectory().getAbsolutePath() : "DIRECTORY_NOT_SET";
|
||||||
|
return "MultiKahaDBPersistenceAdapter[" + path + "]" + adapters;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,419 @@
|
||||||
|
/**
|
||||||
|
* 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.store.kahadb;
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.util.Date;
|
||||||
|
import java.util.HashSet;
|
||||||
|
import java.util.Set;
|
||||||
|
import java.util.TreeSet;
|
||||||
|
import java.util.concurrent.ConcurrentHashMap;
|
||||||
|
import java.util.concurrent.Future;
|
||||||
|
import org.apache.activemq.broker.Broker;
|
||||||
|
import org.apache.activemq.broker.ConnectionContext;
|
||||||
|
import org.apache.activemq.command.Message;
|
||||||
|
import org.apache.activemq.command.MessageAck;
|
||||||
|
import org.apache.activemq.command.MessageId;
|
||||||
|
import org.apache.activemq.command.TransactionId;
|
||||||
|
import org.apache.activemq.command.XATransactionId;
|
||||||
|
import org.apache.activemq.store.AbstractMessageStore;
|
||||||
|
import org.apache.activemq.store.MessageStore;
|
||||||
|
import org.apache.activemq.store.ProxyMessageStore;
|
||||||
|
import org.apache.activemq.store.ProxyTopicMessageStore;
|
||||||
|
import org.apache.activemq.store.TopicMessageStore;
|
||||||
|
import org.apache.activemq.store.TransactionRecoveryListener;
|
||||||
|
import org.apache.activemq.store.TransactionStore;
|
||||||
|
import org.apache.activemq.store.kahadb.data.KahaCommitCommand;
|
||||||
|
import org.apache.activemq.store.kahadb.data.KahaEntryType;
|
||||||
|
import org.apache.activemq.store.kahadb.data.KahaPrepareCommand;
|
||||||
|
import org.apache.activemq.store.kahadb.data.KahaTraceCommand;
|
||||||
|
import org.apache.activemq.util.IOHelper;
|
||||||
|
import org.apache.kahadb.journal.Journal;
|
||||||
|
import org.apache.kahadb.journal.Location;
|
||||||
|
import org.apache.kahadb.util.DataByteArrayInputStream;
|
||||||
|
import org.apache.kahadb.util.DataByteArrayOutputStream;
|
||||||
|
import org.slf4j.Logger;
|
||||||
|
import org.slf4j.LoggerFactory;
|
||||||
|
|
||||||
|
public class MultiKahaDBTransactionStore implements TransactionStore {
|
||||||
|
static final Logger LOG = LoggerFactory.getLogger(MultiKahaDBTransactionStore.class);
|
||||||
|
final MultiKahaDBPersistenceAdapter multiKahaDBPersistenceAdapter;
|
||||||
|
final ConcurrentHashMap<TransactionId, Tx> inflightTransactions = new ConcurrentHashMap<TransactionId, Tx>();
|
||||||
|
final Set<TransactionId> recoveredPendingCommit = new HashSet<TransactionId>();
|
||||||
|
private Journal journal;
|
||||||
|
private int journalMaxFileLength = Journal.DEFAULT_MAX_FILE_LENGTH;
|
||||||
|
private int journalWriteBatchSize = Journal.DEFAULT_MAX_WRITE_BATCH_SIZE;
|
||||||
|
|
||||||
|
public MultiKahaDBTransactionStore(MultiKahaDBPersistenceAdapter multiKahaDBPersistenceAdapter) {
|
||||||
|
this.multiKahaDBPersistenceAdapter = multiKahaDBPersistenceAdapter;
|
||||||
|
}
|
||||||
|
|
||||||
|
public MessageStore proxy(final TransactionStore transactionStore, MessageStore messageStore) {
|
||||||
|
return new ProxyMessageStore(messageStore) {
|
||||||
|
@Override
|
||||||
|
public void addMessage(ConnectionContext context, final Message send) throws IOException {
|
||||||
|
MultiKahaDBTransactionStore.this.addMessage(transactionStore, context, getDelegate(), send);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Future<Object> asyncAddQueueMessage(ConnectionContext context, Message message) throws IOException {
|
||||||
|
return MultiKahaDBTransactionStore.this.asyncAddQueueMessage(transactionStore, context, getDelegate(), message);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void removeMessage(ConnectionContext context, final MessageAck ack) throws IOException {
|
||||||
|
MultiKahaDBTransactionStore.this.removeMessage(transactionStore, context, getDelegate(), ack);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void removeAsyncMessage(ConnectionContext context, MessageAck ack) throws IOException {
|
||||||
|
MultiKahaDBTransactionStore.this.removeAsyncMessage(transactionStore, context, getDelegate(), ack);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
public TopicMessageStore proxy(final TransactionStore transactionStore, final TopicMessageStore messageStore) {
|
||||||
|
return new ProxyTopicMessageStore(messageStore) {
|
||||||
|
@Override
|
||||||
|
public void addMessage(ConnectionContext context, final Message send) throws IOException {
|
||||||
|
MultiKahaDBTransactionStore.this.addMessage(transactionStore, context, getDelegate(), send);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Future<Object> asyncAddTopicMessage(ConnectionContext context, Message message) throws IOException {
|
||||||
|
return MultiKahaDBTransactionStore.this.asyncAddTopicMessage(transactionStore, context, getDelegate(), message);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void removeMessage(ConnectionContext context, final MessageAck ack) throws IOException {
|
||||||
|
MultiKahaDBTransactionStore.this.removeMessage(transactionStore, context, getDelegate(), ack);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void removeAsyncMessage(ConnectionContext context, MessageAck ack) throws IOException {
|
||||||
|
MultiKahaDBTransactionStore.this.removeAsyncMessage(transactionStore, context, getDelegate(), ack);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void acknowledge(ConnectionContext context, String clientId, String subscriptionName,
|
||||||
|
MessageId messageId, MessageAck ack) throws IOException {
|
||||||
|
MultiKahaDBTransactionStore.this.acknowledge(transactionStore, context, (TopicMessageStore) getDelegate(), clientId,
|
||||||
|
subscriptionName, messageId, ack);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
public void deleteAllMessages() {
|
||||||
|
IOHelper.deleteChildren(getDirectory());
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getJournalMaxFileLength() {
|
||||||
|
return journalMaxFileLength;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setJournalMaxFileLength(int journalMaxFileLength) {
|
||||||
|
this.journalMaxFileLength = journalMaxFileLength;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getJournalMaxWriteBatchSize() {
|
||||||
|
return journalWriteBatchSize;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setJournalMaxWriteBatchSize(int journalWriteBatchSize) {
|
||||||
|
this.journalWriteBatchSize = journalWriteBatchSize;
|
||||||
|
}
|
||||||
|
|
||||||
|
public class Tx {
|
||||||
|
private final Set<TransactionStore> stores = new HashSet<TransactionStore>();
|
||||||
|
private int prepareLocationId = 0;
|
||||||
|
|
||||||
|
public void trackStore(TransactionStore store) {
|
||||||
|
stores.add(store);
|
||||||
|
}
|
||||||
|
|
||||||
|
public Set<TransactionStore> getStores() {
|
||||||
|
return stores;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void trackPrepareLocation(Location location) {
|
||||||
|
this.prepareLocationId = location.getDataFileId();
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getPreparedLocationId() {
|
||||||
|
return prepareLocationId;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public Tx getTx(TransactionId txid) {
|
||||||
|
Tx tx = inflightTransactions.get(txid);
|
||||||
|
if (tx == null) {
|
||||||
|
tx = new Tx();
|
||||||
|
inflightTransactions.put(txid, tx);
|
||||||
|
}
|
||||||
|
return tx;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Tx removeTx(TransactionId txid) {
|
||||||
|
return inflightTransactions.remove(txid);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void prepare(TransactionId txid) throws IOException {
|
||||||
|
Tx tx = getTx(txid);
|
||||||
|
for (TransactionStore store : tx.getStores()) {
|
||||||
|
store.prepare(txid);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void commit(TransactionId txid, boolean wasPrepared, Runnable preCommit, Runnable postCommit)
|
||||||
|
throws IOException {
|
||||||
|
|
||||||
|
if (preCommit != null) {
|
||||||
|
preCommit.run();
|
||||||
|
}
|
||||||
|
|
||||||
|
Tx tx = getTx(txid);
|
||||||
|
if (wasPrepared) {
|
||||||
|
for (TransactionStore store : tx.getStores()) {
|
||||||
|
store.commit(txid, true, null, null);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
// can only do 1pc on a single store
|
||||||
|
if (tx.getStores().size() == 1) {
|
||||||
|
for (TransactionStore store : tx.getStores()) {
|
||||||
|
store.commit(txid, false, null, null);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
// need to do local 2pc
|
||||||
|
for (TransactionStore store : tx.getStores()) {
|
||||||
|
store.prepare(txid);
|
||||||
|
}
|
||||||
|
persistOutcome(tx, txid);
|
||||||
|
for (TransactionStore store : tx.getStores()) {
|
||||||
|
store.commit(txid, true, null, null);
|
||||||
|
}
|
||||||
|
persistCompletion(txid);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
removeTx(txid);
|
||||||
|
if (postCommit != null) {
|
||||||
|
postCommit.run();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void persistOutcome(Tx tx, TransactionId txid) throws IOException {
|
||||||
|
tx.trackPrepareLocation(store(new KahaPrepareCommand().setTransactionInfo(multiKahaDBPersistenceAdapter.transactionIdTransformer.transform(txid))));
|
||||||
|
}
|
||||||
|
|
||||||
|
public void persistCompletion(TransactionId txid) throws IOException {
|
||||||
|
store(new KahaCommitCommand().setTransactionInfo(multiKahaDBPersistenceAdapter.transactionIdTransformer.transform(txid)));
|
||||||
|
}
|
||||||
|
|
||||||
|
private Location store(JournalCommand<?> data) throws IOException {
|
||||||
|
int size = data.serializedSizeFramed();
|
||||||
|
DataByteArrayOutputStream os = new DataByteArrayOutputStream(size + 1);
|
||||||
|
os.writeByte(data.type().getNumber());
|
||||||
|
data.writeFramed(os);
|
||||||
|
Location location = journal.write(os.toByteSequence(), true);
|
||||||
|
journal.setLastAppendLocation(location);
|
||||||
|
return location;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void rollback(TransactionId txid) throws IOException {
|
||||||
|
Tx tx = removeTx(txid);
|
||||||
|
if (tx != null) {
|
||||||
|
for (TransactionStore store : tx.getStores()) {
|
||||||
|
store.rollback(txid);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void start() throws Exception {
|
||||||
|
journal = new Journal() {
|
||||||
|
@Override
|
||||||
|
protected void cleanup() {
|
||||||
|
super.cleanup();
|
||||||
|
txStoreCleanup();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
journal.setDirectory(getDirectory());
|
||||||
|
journal.setMaxFileLength(journalMaxFileLength);
|
||||||
|
journal.setWriteBatchSize(journalWriteBatchSize);
|
||||||
|
IOHelper.mkdirs(journal.getDirectory());
|
||||||
|
journal.start();
|
||||||
|
recoverPendingLocalTransactions();
|
||||||
|
store(new KahaTraceCommand().setMessage("LOADED " + new Date()));
|
||||||
|
}
|
||||||
|
|
||||||
|
private void txStoreCleanup() {
|
||||||
|
Set<Integer> knownDataFileIds = new TreeSet<Integer>(journal.getFileMap().keySet());
|
||||||
|
for (Tx tx : inflightTransactions.values()) {
|
||||||
|
knownDataFileIds.remove(tx.getPreparedLocationId());
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
journal.removeDataFiles(knownDataFileIds);
|
||||||
|
} catch (Exception e) {
|
||||||
|
LOG.error(this + ", Failed to remove tx journal datafiles " + knownDataFileIds);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private File getDirectory() {
|
||||||
|
return new File(multiKahaDBPersistenceAdapter.getDirectory(), "txStore");
|
||||||
|
}
|
||||||
|
|
||||||
|
public void stop() throws Exception {
|
||||||
|
journal.close();
|
||||||
|
journal = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void recoverPendingLocalTransactions() throws IOException {
|
||||||
|
Location location = journal.getNextLocation(null);
|
||||||
|
while (location != null) {
|
||||||
|
process(load(location));
|
||||||
|
location = journal.getNextLocation(location);
|
||||||
|
}
|
||||||
|
recoveredPendingCommit.addAll(inflightTransactions.keySet());
|
||||||
|
LOG.info("pending local transactions: " + recoveredPendingCommit);
|
||||||
|
}
|
||||||
|
|
||||||
|
public JournalCommand<?> load(Location location) throws IOException {
|
||||||
|
DataByteArrayInputStream is = new DataByteArrayInputStream(journal.read(location));
|
||||||
|
byte readByte = is.readByte();
|
||||||
|
KahaEntryType type = KahaEntryType.valueOf(readByte);
|
||||||
|
if (type == null) {
|
||||||
|
throw new IOException("Could not load journal record. Invalid location: " + location);
|
||||||
|
}
|
||||||
|
JournalCommand<?> message = (JournalCommand<?>) type.createMessage();
|
||||||
|
message.mergeFramed(is);
|
||||||
|
return message;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void process(JournalCommand<?> command) throws IOException {
|
||||||
|
switch (command.type()) {
|
||||||
|
case KAHA_PREPARE_COMMAND:
|
||||||
|
KahaPrepareCommand prepareCommand = (KahaPrepareCommand) command;
|
||||||
|
getTx(TransactionIdConversion.convert(prepareCommand.getTransactionInfo()));
|
||||||
|
break;
|
||||||
|
case KAHA_COMMIT_COMMAND:
|
||||||
|
KahaCommitCommand commitCommand = (KahaCommitCommand) command;
|
||||||
|
removeTx(TransactionIdConversion.convert(commitCommand.getTransactionInfo()));
|
||||||
|
break;
|
||||||
|
case KAHA_TRACE_COMMAND:
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
throw new IOException("Unexpected command in transaction journal: " + command);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public synchronized void recover(final TransactionRecoveryListener listener) throws IOException {
|
||||||
|
|
||||||
|
for (final KahaDBPersistenceAdapter adapter : multiKahaDBPersistenceAdapter.adapters) {
|
||||||
|
adapter.createTransactionStore().recover(new TransactionRecoveryListener() {
|
||||||
|
@Override
|
||||||
|
public void recover(XATransactionId xid, Message[] addedMessages, MessageAck[] acks) {
|
||||||
|
try {
|
||||||
|
getTx(xid).trackStore(adapter.createTransactionStore());
|
||||||
|
} catch (IOException e) {
|
||||||
|
LOG.error("Failed to access transaction store: " + adapter + " for prepared xa tid: " + xid, e);
|
||||||
|
}
|
||||||
|
listener.recover(xid, addedMessages, acks);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
Broker broker = multiKahaDBPersistenceAdapter.getBrokerService().getBroker();
|
||||||
|
// force completion of local xa
|
||||||
|
for (TransactionId txid : broker.getPreparedTransactions(null)) {
|
||||||
|
if (multiKahaDBPersistenceAdapter.isLocalXid(txid)) {
|
||||||
|
try {
|
||||||
|
if (recoveredPendingCommit.contains(txid)) {
|
||||||
|
LOG.info("delivering pending commit outcome for tid: " + txid);
|
||||||
|
broker.commitTransaction(null, txid, false);
|
||||||
|
|
||||||
|
} else {
|
||||||
|
LOG.info("delivering rollback outcome to store for tid: " + txid);
|
||||||
|
broker.forgetTransaction(null, txid);
|
||||||
|
}
|
||||||
|
persistCompletion(txid);
|
||||||
|
} catch (Exception ex) {
|
||||||
|
LOG.error("failed to deliver pending outcome for tid: " + txid, ex);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (Exception e) {
|
||||||
|
LOG.error("failed to resolve pending local transactions", e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void addMessage(final TransactionStore transactionStore, ConnectionContext context, final MessageStore destination, final Message message)
|
||||||
|
throws IOException {
|
||||||
|
if (message.getTransactionId() != null) {
|
||||||
|
getTx(message.getTransactionId()).trackStore(transactionStore);
|
||||||
|
}
|
||||||
|
destination.addMessage(context, message);
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<Object> asyncAddQueueMessage(final TransactionStore transactionStore, ConnectionContext context, final MessageStore destination, final Message message)
|
||||||
|
throws IOException {
|
||||||
|
if (message.getTransactionId() != null) {
|
||||||
|
getTx(message.getTransactionId()).trackStore(transactionStore);
|
||||||
|
destination.addMessage(context, message);
|
||||||
|
return AbstractMessageStore.FUTURE;
|
||||||
|
} else {
|
||||||
|
return destination.asyncAddQueueMessage(context, message);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<Object> asyncAddTopicMessage(final TransactionStore transactionStore, ConnectionContext context, final MessageStore destination, final Message message)
|
||||||
|
throws IOException {
|
||||||
|
|
||||||
|
if (message.getTransactionId() != null) {
|
||||||
|
getTx(message.getTransactionId()).trackStore(transactionStore);
|
||||||
|
destination.addMessage(context, message);
|
||||||
|
return AbstractMessageStore.FUTURE;
|
||||||
|
} else {
|
||||||
|
return destination.asyncAddTopicMessage(context, message);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
final void removeMessage(final TransactionStore transactionStore, ConnectionContext context, final MessageStore destination, final MessageAck ack)
|
||||||
|
throws IOException {
|
||||||
|
if (ack.getTransactionId() != null) {
|
||||||
|
getTx(ack.getTransactionId()).trackStore(transactionStore);
|
||||||
|
}
|
||||||
|
destination.removeMessage(context, ack);
|
||||||
|
}
|
||||||
|
|
||||||
|
final void removeAsyncMessage(final TransactionStore transactionStore, ConnectionContext context, final MessageStore destination, final MessageAck ack)
|
||||||
|
throws IOException {
|
||||||
|
if (ack.getTransactionId() != null) {
|
||||||
|
getTx(ack.getTransactionId()).trackStore(transactionStore);
|
||||||
|
}
|
||||||
|
destination.removeAsyncMessage(context, ack);
|
||||||
|
}
|
||||||
|
|
||||||
|
final void acknowledge(final TransactionStore transactionStore, ConnectionContext context, final TopicMessageStore destination,
|
||||||
|
final String clientId, final String subscriptionName,
|
||||||
|
final MessageId messageId, final MessageAck ack) throws IOException {
|
||||||
|
if (ack.getTransactionId() != null) {
|
||||||
|
getTx(ack.getTransactionId()).trackStore(transactionStore);
|
||||||
|
}
|
||||||
|
destination.acknowledge(context, clientId, subscriptionName, messageId, ack);
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,77 @@
|
||||||
|
/**
|
||||||
|
* 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.store.kahadb;
|
||||||
|
|
||||||
|
import org.apache.activemq.command.ConnectionId;
|
||||||
|
import org.apache.activemq.command.LocalTransactionId;
|
||||||
|
import org.apache.activemq.command.TransactionId;
|
||||||
|
import org.apache.activemq.command.XATransactionId;
|
||||||
|
import org.apache.activemq.protobuf.Buffer;
|
||||||
|
import org.apache.activemq.store.kahadb.data.KahaLocalTransactionId;
|
||||||
|
import org.apache.activemq.store.kahadb.data.KahaTransactionInfo;
|
||||||
|
import org.apache.activemq.store.kahadb.data.KahaXATransactionId;
|
||||||
|
|
||||||
|
public class TransactionIdConversion {
|
||||||
|
|
||||||
|
static KahaTransactionInfo convertToLocal(TransactionId tx) {
|
||||||
|
KahaTransactionInfo rc = new KahaTransactionInfo();
|
||||||
|
LocalTransactionId t = (LocalTransactionId) tx;
|
||||||
|
KahaLocalTransactionId kahaTxId = new KahaLocalTransactionId();
|
||||||
|
kahaTxId.setConnectionId(t.getConnectionId().getValue());
|
||||||
|
kahaTxId.setTransacitonId(t.getValue());
|
||||||
|
rc.setLocalTransacitonId(kahaTxId);
|
||||||
|
return rc;
|
||||||
|
}
|
||||||
|
|
||||||
|
static KahaTransactionInfo convert(TransactionId txid) {
|
||||||
|
if (txid == null) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
KahaTransactionInfo rc;
|
||||||
|
|
||||||
|
if (txid.isLocalTransaction()) {
|
||||||
|
rc = convertToLocal(txid);
|
||||||
|
} else {
|
||||||
|
rc = new KahaTransactionInfo();
|
||||||
|
XATransactionId t = (XATransactionId) txid;
|
||||||
|
KahaXATransactionId kahaTxId = new KahaXATransactionId();
|
||||||
|
kahaTxId.setBranchQualifier(new Buffer(t.getBranchQualifier()));
|
||||||
|
kahaTxId.setGlobalTransactionId(new Buffer(t.getGlobalTransactionId()));
|
||||||
|
kahaTxId.setFormatId(t.getFormatId());
|
||||||
|
rc.setXaTransacitonId(kahaTxId);
|
||||||
|
}
|
||||||
|
return rc;
|
||||||
|
}
|
||||||
|
|
||||||
|
static TransactionId convert(KahaTransactionInfo transactionInfo) {
|
||||||
|
if (transactionInfo.hasLocalTransacitonId()) {
|
||||||
|
KahaLocalTransactionId tx = transactionInfo.getLocalTransacitonId();
|
||||||
|
LocalTransactionId rc = new LocalTransactionId();
|
||||||
|
rc.setConnectionId(new ConnectionId(tx.getConnectionId()));
|
||||||
|
rc.setValue(tx.getTransacitonId());
|
||||||
|
return rc;
|
||||||
|
} else {
|
||||||
|
KahaXATransactionId tx = transactionInfo.getXaTransacitonId();
|
||||||
|
XATransactionId rc = new XATransactionId();
|
||||||
|
rc.setBranchQualifier(tx.getBranchQualifier().toByteArray());
|
||||||
|
rc.setGlobalTransactionId(tx.getGlobalTransactionId().toByteArray());
|
||||||
|
rc.setFormatId(tx.getFormatId());
|
||||||
|
return rc;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,8 @@
|
||||||
|
package org.apache.activemq.store.kahadb;
|
||||||
|
|
||||||
|
import org.apache.activemq.command.TransactionId;
|
||||||
|
import org.apache.activemq.store.kahadb.data.KahaTransactionInfo;
|
||||||
|
|
||||||
|
public interface TransactionIdTransformer {
|
||||||
|
KahaTransactionInfo transform(TransactionId txid);
|
||||||
|
}
|
|
@ -37,6 +37,8 @@ import org.apache.activemq.command.TransactionId;
|
||||||
import org.apache.activemq.command.TransactionInfo;
|
import org.apache.activemq.command.TransactionInfo;
|
||||||
import org.apache.activemq.command.XATransactionId;
|
import org.apache.activemq.command.XATransactionId;
|
||||||
import org.apache.activemq.util.JMXSupport;
|
import org.apache.activemq.util.JMXSupport;
|
||||||
|
import org.slf4j.Logger;
|
||||||
|
import org.slf4j.LoggerFactory;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Used to simulate the recovery that occurs when a broker shuts down.
|
* Used to simulate the recovery that occurs when a broker shuts down.
|
||||||
|
@ -44,7 +46,7 @@ import org.apache.activemq.util.JMXSupport;
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public class XARecoveryBrokerTest extends BrokerRestartTestSupport {
|
public class XARecoveryBrokerTest extends BrokerRestartTestSupport {
|
||||||
|
protected static final Logger LOG = LoggerFactory.getLogger(XARecoveryBrokerTest.class);
|
||||||
public void testPreparedJmxView() throws Exception {
|
public void testPreparedJmxView() throws Exception {
|
||||||
|
|
||||||
ActiveMQDestination destination = createDestination();
|
ActiveMQDestination destination = createDestination();
|
||||||
|
@ -202,7 +204,7 @@ public class XARecoveryBrokerTest extends BrokerRestartTestSupport {
|
||||||
}
|
}
|
||||||
|
|
||||||
// We should get the committed transactions.
|
// We should get the committed transactions.
|
||||||
for (int i = 0; i < 4; i++) {
|
for (int i = 0; i < expectedMessageCount(4, destination); i++) {
|
||||||
Message m = receiveMessage(connection);
|
Message m = receiveMessage(connection);
|
||||||
assertNotNull(m);
|
assertNotNull(m);
|
||||||
}
|
}
|
||||||
|
@ -249,7 +251,7 @@ public class XARecoveryBrokerTest extends BrokerRestartTestSupport {
|
||||||
ConsumerInfo consumerInfo = createConsumerInfo(sessionInfo, destination);
|
ConsumerInfo consumerInfo = createConsumerInfo(sessionInfo, destination);
|
||||||
connection.send(consumerInfo);
|
connection.send(consumerInfo);
|
||||||
|
|
||||||
for (int i = 0; i < 4; i++) {
|
for (int i = 0; i < expectedMessageCount(4, destination); i++) {
|
||||||
Message m = receiveMessage(connection);
|
Message m = receiveMessage(connection);
|
||||||
assertNotNull(m);
|
assertNotNull(m);
|
||||||
}
|
}
|
||||||
|
@ -276,14 +278,17 @@ public class XARecoveryBrokerTest extends BrokerRestartTestSupport {
|
||||||
connection.send(message);
|
connection.send(message);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Setup the consumer and receive the message.
|
|
||||||
ConsumerInfo consumerInfo = createConsumerInfo(sessionInfo, destination);
|
|
||||||
connection.send(consumerInfo);
|
|
||||||
|
|
||||||
// Begin the transaction.
|
// Begin the transaction.
|
||||||
XATransactionId txid = createXATransaction(sessionInfo);
|
XATransactionId txid = createXATransaction(sessionInfo);
|
||||||
connection.send(createBeginTransaction(connectionInfo, txid));
|
connection.send(createBeginTransaction(connectionInfo, txid));
|
||||||
|
|
||||||
|
ConsumerInfo consumerInfo;
|
||||||
Message m = null;
|
Message m = null;
|
||||||
|
for (ActiveMQDestination dest : destinationList(destination)) {
|
||||||
|
// Setup the consumer and receive the message.
|
||||||
|
consumerInfo = createConsumerInfo(sessionInfo, dest);
|
||||||
|
connection.send(consumerInfo);
|
||||||
|
|
||||||
for (int i = 0; i < 4; i++) {
|
for (int i = 0; i < 4; i++) {
|
||||||
m = receiveMessage(connection);
|
m = receiveMessage(connection);
|
||||||
assertNotNull(m);
|
assertNotNull(m);
|
||||||
|
@ -292,6 +297,7 @@ public class XARecoveryBrokerTest extends BrokerRestartTestSupport {
|
||||||
MessageAck ack = createAck(consumerInfo, m, 4, MessageAck.STANDARD_ACK_TYPE);
|
MessageAck ack = createAck(consumerInfo, m, 4, MessageAck.STANDARD_ACK_TYPE);
|
||||||
ack.setTransactionId(txid);
|
ack.setTransactionId(txid);
|
||||||
connection.send(ack);
|
connection.send(ack);
|
||||||
|
}
|
||||||
|
|
||||||
// Commit
|
// Commit
|
||||||
connection.request(createCommitTransaction1Phase(connectionInfo, txid));
|
connection.request(createCommitTransaction1Phase(connectionInfo, txid));
|
||||||
|
@ -334,14 +340,17 @@ public class XARecoveryBrokerTest extends BrokerRestartTestSupport {
|
||||||
connection.send(message);
|
connection.send(message);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Setup the consumer and receive the message.
|
|
||||||
ConsumerInfo consumerInfo = createConsumerInfo(sessionInfo, destination);
|
|
||||||
connection.send(consumerInfo);
|
|
||||||
|
|
||||||
// Begin the transaction.
|
// Begin the transaction.
|
||||||
XATransactionId txid = createXATransaction(sessionInfo);
|
XATransactionId txid = createXATransaction(sessionInfo);
|
||||||
connection.send(createBeginTransaction(connectionInfo, txid));
|
connection.send(createBeginTransaction(connectionInfo, txid));
|
||||||
|
|
||||||
|
ConsumerInfo consumerInfo;
|
||||||
Message m = null;
|
Message m = null;
|
||||||
|
for (ActiveMQDestination dest : destinationList(destination)) {
|
||||||
|
// Setup the consumer and receive the message.
|
||||||
|
consumerInfo = createConsumerInfo(sessionInfo, dest);
|
||||||
|
connection.send(consumerInfo);
|
||||||
|
|
||||||
for (int i = 0; i < 4; i++) {
|
for (int i = 0; i < 4; i++) {
|
||||||
m = receiveMessage(connection);
|
m = receiveMessage(connection);
|
||||||
assertNotNull(m);
|
assertNotNull(m);
|
||||||
|
@ -351,6 +360,7 @@ public class XARecoveryBrokerTest extends BrokerRestartTestSupport {
|
||||||
MessageAck ack = createAck(consumerInfo, m, 4, MessageAck.STANDARD_ACK_TYPE);
|
MessageAck ack = createAck(consumerInfo, m, 4, MessageAck.STANDARD_ACK_TYPE);
|
||||||
ack.setTransactionId(txid);
|
ack.setTransactionId(txid);
|
||||||
connection.send(ack);
|
connection.send(ack);
|
||||||
|
}
|
||||||
|
|
||||||
connection.request(createPrepareTransaction(connectionInfo, txid));
|
connection.request(createPrepareTransaction(connectionInfo, txid));
|
||||||
|
|
||||||
|
@ -404,14 +414,17 @@ public class XARecoveryBrokerTest extends BrokerRestartTestSupport {
|
||||||
connection.send(message);
|
connection.send(message);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Setup the consumer and receive the message.
|
|
||||||
ConsumerInfo consumerInfo = createConsumerInfo(sessionInfo, destination);
|
|
||||||
connection.send(consumerInfo);
|
|
||||||
|
|
||||||
// Begin the transaction.
|
// Begin the transaction.
|
||||||
XATransactionId txid = createXATransaction(sessionInfo);
|
XATransactionId txid = createXATransaction(sessionInfo);
|
||||||
connection.send(createBeginTransaction(connectionInfo, txid));
|
connection.send(createBeginTransaction(connectionInfo, txid));
|
||||||
|
|
||||||
|
ConsumerInfo consumerInfo;
|
||||||
Message message = null;
|
Message message = null;
|
||||||
|
for (ActiveMQDestination dest : destinationList(destination)) {
|
||||||
|
// Setup the consumer and receive the message.
|
||||||
|
consumerInfo = createConsumerInfo(sessionInfo, dest);
|
||||||
|
connection.send(consumerInfo);
|
||||||
|
|
||||||
for (int i = 0; i < 4; i++) {
|
for (int i = 0; i < 4; i++) {
|
||||||
message = receiveMessage(connection);
|
message = receiveMessage(connection);
|
||||||
assertNotNull(message);
|
assertNotNull(message);
|
||||||
|
@ -421,6 +434,7 @@ public class XARecoveryBrokerTest extends BrokerRestartTestSupport {
|
||||||
MessageAck ack = createAck(consumerInfo, message, 4, MessageAck.STANDARD_ACK_TYPE);
|
MessageAck ack = createAck(consumerInfo, message, 4, MessageAck.STANDARD_ACK_TYPE);
|
||||||
ack.setTransactionId(txid);
|
ack.setTransactionId(txid);
|
||||||
connection.send(ack);
|
connection.send(ack);
|
||||||
|
}
|
||||||
|
|
||||||
connection.request(createPrepareTransaction(connectionInfo, txid));
|
connection.request(createPrepareTransaction(connectionInfo, txid));
|
||||||
|
|
||||||
|
@ -454,13 +468,20 @@ public class XARecoveryBrokerTest extends BrokerRestartTestSupport {
|
||||||
// Begin new transaction for redelivery
|
// Begin new transaction for redelivery
|
||||||
txid = createXATransaction(sessionInfo);
|
txid = createXATransaction(sessionInfo);
|
||||||
connection.send(createBeginTransaction(connectionInfo, txid));
|
connection.send(createBeginTransaction(connectionInfo, txid));
|
||||||
|
|
||||||
|
for (ActiveMQDestination dest : destinationList(destination)) {
|
||||||
|
// Setup the consumer and receive the message.
|
||||||
|
consumerInfo = createConsumerInfo(sessionInfo, dest);
|
||||||
|
connection.send(consumerInfo);
|
||||||
|
|
||||||
for (int i = 0; i < 4; i++) {
|
for (int i = 0; i < 4; i++) {
|
||||||
message = receiveMessage(connection);
|
message = receiveMessage(connection);
|
||||||
assertNotNull(message);
|
assertNotNull(message);
|
||||||
}
|
}
|
||||||
ack = createAck(consumerInfo, message, 4, MessageAck.STANDARD_ACK_TYPE);
|
MessageAck ack = createAck(consumerInfo, message, 4, MessageAck.STANDARD_ACK_TYPE);
|
||||||
ack.setTransactionId(txid);
|
ack.setTransactionId(txid);
|
||||||
connection.send(ack);
|
connection.send(ack);
|
||||||
|
}
|
||||||
|
|
||||||
// Commit
|
// Commit
|
||||||
connection.request(createCommitTransaction1Phase(connectionInfo, txid));
|
connection.request(createCommitTransaction1Phase(connectionInfo, txid));
|
||||||
|
@ -470,6 +491,14 @@ public class XARecoveryBrokerTest extends BrokerRestartTestSupport {
|
||||||
assertEquals("there are no prepared tx", 0, dataArrayResponse.getData().length);
|
assertEquals("there are no prepared tx", 0, dataArrayResponse.getData().length);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private ActiveMQDestination[] destinationList(ActiveMQDestination dest) {
|
||||||
|
return dest.isComposite() ? dest.getCompositeDestinations() : new ActiveMQDestination[]{dest};
|
||||||
|
}
|
||||||
|
|
||||||
|
private int expectedMessageCount(int i, ActiveMQDestination destination) {
|
||||||
|
return i * (destination.isComposite() ? destination.getCompositeDestinations().length : 1);
|
||||||
|
}
|
||||||
|
|
||||||
public void testQueuePersistentUncommittedAcksLostOnRestart() throws Exception {
|
public void testQueuePersistentUncommittedAcksLostOnRestart() throws Exception {
|
||||||
|
|
||||||
ActiveMQDestination destination = createDestination();
|
ActiveMQDestination destination = createDestination();
|
||||||
|
|
|
@ -0,0 +1,78 @@
|
||||||
|
/**
|
||||||
|
* 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;
|
||||||
|
|
||||||
|
import java.util.LinkedList;
|
||||||
|
import java.util.List;
|
||||||
|
import javax.jms.JMSException;
|
||||||
|
import javax.management.InstanceNotFoundException;
|
||||||
|
import javax.management.MalformedObjectNameException;
|
||||||
|
import javax.management.ObjectName;
|
||||||
|
import junit.framework.Test;
|
||||||
|
import org.apache.activemq.broker.jmx.RecoveredXATransactionViewMBean;
|
||||||
|
import org.apache.activemq.command.ActiveMQDestination;
|
||||||
|
import org.apache.activemq.command.ActiveMQQueue;
|
||||||
|
import org.apache.activemq.command.ConnectionInfo;
|
||||||
|
import org.apache.activemq.command.ConsumerInfo;
|
||||||
|
import org.apache.activemq.command.DataArrayResponse;
|
||||||
|
import org.apache.activemq.command.Message;
|
||||||
|
import org.apache.activemq.command.MessageAck;
|
||||||
|
import org.apache.activemq.command.ProducerInfo;
|
||||||
|
import org.apache.activemq.command.Response;
|
||||||
|
import org.apache.activemq.command.SessionInfo;
|
||||||
|
import org.apache.activemq.command.TransactionId;
|
||||||
|
import org.apache.activemq.command.TransactionInfo;
|
||||||
|
import org.apache.activemq.command.XATransactionId;
|
||||||
|
import org.apache.activemq.store.kahadb.FilteredKahaDBPersistenceAdapter;
|
||||||
|
import org.apache.activemq.store.kahadb.KahaDBPersistenceAdapter;
|
||||||
|
import org.apache.activemq.store.kahadb.MultiKahaDBPersistenceAdapter;
|
||||||
|
import org.apache.activemq.util.JMXSupport;
|
||||||
|
|
||||||
|
public class mKahaDBXARecoveryBrokerTest extends XARecoveryBrokerTest {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void configureBroker(BrokerService broker) throws Exception {
|
||||||
|
super.configureBroker(broker);
|
||||||
|
|
||||||
|
MultiKahaDBPersistenceAdapter mKahaDB = new MultiKahaDBPersistenceAdapter();
|
||||||
|
List adapters = new LinkedList<FilteredKahaDBPersistenceAdapter>();
|
||||||
|
FilteredKahaDBPersistenceAdapter defaultEntry = new FilteredKahaDBPersistenceAdapter();
|
||||||
|
defaultEntry.setPersistenceAdapter(new KahaDBPersistenceAdapter());
|
||||||
|
adapters.add(defaultEntry);
|
||||||
|
|
||||||
|
FilteredKahaDBPersistenceAdapter special = new FilteredKahaDBPersistenceAdapter();
|
||||||
|
special.setDestination(new ActiveMQQueue("special"));
|
||||||
|
special.setPersistenceAdapter(new KahaDBPersistenceAdapter());
|
||||||
|
adapters.add(special);
|
||||||
|
|
||||||
|
mKahaDB.setFilteredPersistenceAdapters(adapters);
|
||||||
|
broker.setPersistenceAdapter(mKahaDB);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static Test suite() {
|
||||||
|
return suite(mKahaDBXARecoveryBrokerTest.class);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void main(String[] args) {
|
||||||
|
junit.textui.TestRunner.run(suite());
|
||||||
|
}
|
||||||
|
|
||||||
|
protected ActiveMQDestination createDestination() {
|
||||||
|
return new ActiveMQQueue("test,special");
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -27,6 +27,8 @@ import org.apache.activemq.store.kahadb.KahaDBStore;
|
||||||
import org.apache.activemq.util.DefaultIOExceptionHandler;
|
import org.apache.activemq.util.DefaultIOExceptionHandler;
|
||||||
import org.junit.After;
|
import org.junit.After;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
|
||||||
|
|
||||||
import static org.junit.Assert.assertNotNull;
|
import static org.junit.Assert.assertNotNull;
|
||||||
import static org.junit.Assert.assertNull;
|
import static org.junit.Assert.assertNull;
|
||||||
|
|
||||||
|
@ -56,7 +58,7 @@ public class AMQ2736Test {
|
||||||
|
|
||||||
// test hack, close the journal to ensure no further journal updates when broker stops
|
// test hack, close the journal to ensure no further journal updates when broker stops
|
||||||
// mimic kill -9 in terms of no normal shutdown sequence
|
// mimic kill -9 in terms of no normal shutdown sequence
|
||||||
store.getJournalManager().close();
|
store.getJournal().close();
|
||||||
try {
|
try {
|
||||||
store.close();
|
store.close();
|
||||||
} catch (Exception expectedLotsAsJournalBorked) {
|
} catch (Exception expectedLotsAsJournalBorked) {
|
||||||
|
|
|
@ -16,7 +16,11 @@
|
||||||
*/
|
*/
|
||||||
package org.apache.activemq.bugs;
|
package org.apache.activemq.bugs;
|
||||||
|
|
||||||
|
import static org.junit.Assert.assertEquals;
|
||||||
|
import static org.junit.Assert.assertFalse;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
import java.net.URISyntaxException;
|
||||||
import java.util.concurrent.CountDownLatch;
|
import java.util.concurrent.CountDownLatch;
|
||||||
|
|
||||||
import javax.jms.BytesMessage;
|
import javax.jms.BytesMessage;
|
||||||
|
@ -28,6 +32,7 @@ import javax.jms.MessageConsumer;
|
||||||
import javax.jms.MessageListener;
|
import javax.jms.MessageListener;
|
||||||
import javax.jms.MessageProducer;
|
import javax.jms.MessageProducer;
|
||||||
import javax.jms.Session;
|
import javax.jms.Session;
|
||||||
|
|
||||||
import org.apache.activemq.ActiveMQConnectionFactory;
|
import org.apache.activemq.ActiveMQConnectionFactory;
|
||||||
import org.apache.activemq.RedeliveryPolicy;
|
import org.apache.activemq.RedeliveryPolicy;
|
||||||
import org.apache.activemq.broker.BrokerService;
|
import org.apache.activemq.broker.BrokerService;
|
||||||
|
@ -37,8 +42,6 @@ import org.junit.After;
|
||||||
import org.junit.Assert;
|
import org.junit.Assert;
|
||||||
import org.junit.Before;
|
import org.junit.Before;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
import static org.junit.Assert.assertEquals;
|
|
||||||
import static org.junit.Assert.assertFalse;
|
|
||||||
|
|
||||||
public class AMQ2982Test {
|
public class AMQ2982Test {
|
||||||
|
|
||||||
|
@ -62,7 +65,7 @@ public class AMQ2982Test {
|
||||||
// ensure save memory publishing, use the right lock
|
// ensure save memory publishing, use the right lock
|
||||||
indexLock.readLock().lock();
|
indexLock.readLock().lock();
|
||||||
try {
|
try {
|
||||||
return getJournalManager().getFileMap().size();
|
return getJournal().getFileMap().size();
|
||||||
} finally {
|
} finally {
|
||||||
indexLock.readLock().unlock();
|
indexLock.readLock().unlock();
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,6 +16,10 @@
|
||||||
*/
|
*/
|
||||||
package org.apache.activemq.bugs;
|
package org.apache.activemq.bugs;
|
||||||
|
|
||||||
|
import static org.junit.Assert.assertEquals;
|
||||||
|
import static org.junit.Assert.assertFalse;
|
||||||
|
import static org.junit.Assert.assertTrue;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
@ -30,6 +34,7 @@ import javax.jms.Message;
|
||||||
import javax.jms.MessageConsumer;
|
import javax.jms.MessageConsumer;
|
||||||
import javax.jms.MessageProducer;
|
import javax.jms.MessageProducer;
|
||||||
import javax.jms.Session;
|
import javax.jms.Session;
|
||||||
|
|
||||||
import org.apache.activemq.ActiveMQConnectionFactory;
|
import org.apache.activemq.ActiveMQConnectionFactory;
|
||||||
import org.apache.activemq.broker.BrokerService;
|
import org.apache.activemq.broker.BrokerService;
|
||||||
import org.apache.activemq.store.kahadb.KahaDBStore;
|
import org.apache.activemq.store.kahadb.KahaDBStore;
|
||||||
|
@ -37,7 +42,6 @@ import org.junit.After;
|
||||||
import org.junit.Assert;
|
import org.junit.Assert;
|
||||||
import org.junit.Before;
|
import org.junit.Before;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
import static org.junit.Assert.*;
|
|
||||||
|
|
||||||
public class AMQ2983Test {
|
public class AMQ2983Test {
|
||||||
|
|
||||||
|
@ -63,7 +67,7 @@ public class AMQ2983Test {
|
||||||
// ensure save memory publishing, use the right lock
|
// ensure save memory publishing, use the right lock
|
||||||
indexLock.readLock().lock();
|
indexLock.readLock().lock();
|
||||||
try {
|
try {
|
||||||
return getJournalManager().getFileMap().size();
|
return getJournal().getFileMap().size();
|
||||||
} finally {
|
} finally {
|
||||||
indexLock.readLock().unlock();
|
indexLock.readLock().unlock();
|
||||||
}
|
}
|
||||||
|
|
|
@ -31,9 +31,9 @@ public class SimpleDurableTopicTest extends SimpleTopicTest {
|
||||||
protected long initialConsumerDelay = 0;
|
protected long initialConsumerDelay = 0;
|
||||||
@Override
|
@Override
|
||||||
protected void setUp() throws Exception {
|
protected void setUp() throws Exception {
|
||||||
numberOfDestinations=10;
|
numberOfDestinations=1;
|
||||||
numberOfConsumers = 1;
|
numberOfConsumers = 1;
|
||||||
numberofProducers = Integer.parseInt(System.getProperty("SimpleDurableTopicTest.numberofProducers", "1"));
|
numberofProducers = Integer.parseInt(System.getProperty("SimpleDurableTopicTest.numberofProducers", "20"), 20);
|
||||||
sampleCount= Integer.parseInt(System.getProperty("SimpleDurableTopicTest.sampleCount", "1000"), 10);
|
sampleCount= Integer.parseInt(System.getProperty("SimpleDurableTopicTest.sampleCount", "1000"), 10);
|
||||||
playloadSize = 1024;
|
playloadSize = 1024;
|
||||||
super.setUp();
|
super.setUp();
|
||||||
|
|
|
@ -0,0 +1,282 @@
|
||||||
|
/**
|
||||||
|
* 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.store;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Vector;
|
||||||
|
import java.util.concurrent.ExecutorService;
|
||||||
|
import java.util.concurrent.Executors;
|
||||||
|
import java.util.concurrent.TimeUnit;
|
||||||
|
import javax.jms.Connection;
|
||||||
|
import javax.jms.JMSException;
|
||||||
|
import javax.jms.MessageConsumer;
|
||||||
|
import javax.jms.MessageProducer;
|
||||||
|
import javax.jms.Session;
|
||||||
|
import org.apache.activemq.ActiveMQConnectionFactory;
|
||||||
|
import org.apache.activemq.broker.BrokerService;
|
||||||
|
import org.apache.activemq.command.ActiveMQQueue;
|
||||||
|
import org.apache.activemq.command.TransactionId;
|
||||||
|
import org.apache.activemq.store.kahadb.FilteredKahaDBPersistenceAdapter;
|
||||||
|
import org.apache.activemq.store.kahadb.KahaDBPersistenceAdapter;
|
||||||
|
import org.apache.activemq.store.kahadb.MultiKahaDBPersistenceAdapter;
|
||||||
|
import org.apache.activemq.store.kahadb.MultiKahaDBTransactionStore;
|
||||||
|
import org.apache.activemq.usage.SystemUsage;
|
||||||
|
import org.apache.activemq.util.Wait;
|
||||||
|
import org.junit.After;
|
||||||
|
import org.junit.Before;
|
||||||
|
import org.junit.Test;
|
||||||
|
import org.slf4j.Logger;
|
||||||
|
import org.slf4j.LoggerFactory;
|
||||||
|
|
||||||
|
import static org.junit.Assert.assertEquals;
|
||||||
|
import static org.junit.Assert.assertTrue;
|
||||||
|
|
||||||
|
public class StorePerDestinationTest {
|
||||||
|
static final Logger LOG = LoggerFactory.getLogger(StorePerDestinationTest.class);
|
||||||
|
final static int maxFileLength = 1024*100;
|
||||||
|
final static int numToSend = 10000;
|
||||||
|
final Vector<Throwable> exceptions = new Vector<Throwable>();
|
||||||
|
BrokerService brokerService;
|
||||||
|
|
||||||
|
protected BrokerService createBroker(PersistenceAdapter kaha) throws Exception {
|
||||||
|
|
||||||
|
BrokerService broker = new BrokerService();
|
||||||
|
broker.setUseJmx(false);
|
||||||
|
broker.setPersistenceAdapter(kaha);
|
||||||
|
return broker;
|
||||||
|
}
|
||||||
|
|
||||||
|
private KahaDBPersistenceAdapter createStore(boolean delete) throws IOException {
|
||||||
|
KahaDBPersistenceAdapter kaha = new KahaDBPersistenceAdapter();
|
||||||
|
kaha.setJournalMaxFileLength(maxFileLength);
|
||||||
|
kaha.setCleanupInterval(5000);
|
||||||
|
if (delete) {
|
||||||
|
kaha.deleteAllMessages();
|
||||||
|
}
|
||||||
|
return kaha;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Before
|
||||||
|
public void prepareCleanBrokerWithMultiStore() throws Exception {
|
||||||
|
prepareBrokerWithMultiStore(true);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void prepareBrokerWithMultiStore(boolean deleteAllMessages) throws Exception {
|
||||||
|
|
||||||
|
MultiKahaDBPersistenceAdapter multiKahaDBPersistenceAdapter = new MultiKahaDBPersistenceAdapter();
|
||||||
|
if (deleteAllMessages) {
|
||||||
|
multiKahaDBPersistenceAdapter.deleteAllMessages();
|
||||||
|
}
|
||||||
|
ArrayList<FilteredKahaDBPersistenceAdapter> adapters = new ArrayList<FilteredKahaDBPersistenceAdapter>();
|
||||||
|
|
||||||
|
FilteredKahaDBPersistenceAdapter theRest = new FilteredKahaDBPersistenceAdapter();
|
||||||
|
theRest.setPersistenceAdapter(createStore(deleteAllMessages));
|
||||||
|
// default destination when not set is a match for all
|
||||||
|
adapters.add(theRest);
|
||||||
|
|
||||||
|
// separate store for FastQ
|
||||||
|
FilteredKahaDBPersistenceAdapter fastQStore = new FilteredKahaDBPersistenceAdapter();
|
||||||
|
fastQStore.setPersistenceAdapter(createStore(deleteAllMessages));
|
||||||
|
fastQStore.setDestination(new ActiveMQQueue("FastQ"));
|
||||||
|
adapters.add(fastQStore);
|
||||||
|
|
||||||
|
multiKahaDBPersistenceAdapter.setFilteredPersistenceAdapters(adapters);
|
||||||
|
brokerService = createBroker(multiKahaDBPersistenceAdapter);
|
||||||
|
}
|
||||||
|
|
||||||
|
@After
|
||||||
|
public void tearDown() throws Exception {
|
||||||
|
brokerService.stop();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testTransactedSendReceive() throws Exception {
|
||||||
|
brokerService.start();
|
||||||
|
sendMessages(true, "SlowQ", 1, 0);
|
||||||
|
assertEquals("got one", 1, receiveMessages(true, "SlowQ", 1));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testTransactedSendReceiveAcrossStores() throws Exception {
|
||||||
|
brokerService.start();
|
||||||
|
sendMessages(true, "SlowQ,FastQ", 1, 0);
|
||||||
|
assertEquals("got one", 2, receiveMessages(true, "SlowQ,FastQ", 2));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testCommitRecovery() throws Exception {
|
||||||
|
doTestRecovery(true);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testRollbackRecovery() throws Exception {
|
||||||
|
doTestRecovery(false);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void doTestRecovery(final boolean haveOutcome) throws Exception {
|
||||||
|
final MultiKahaDBPersistenceAdapter persistenceAdapter =
|
||||||
|
(MultiKahaDBPersistenceAdapter) brokerService.getPersistenceAdapter();
|
||||||
|
MultiKahaDBTransactionStore transactionStore =
|
||||||
|
new MultiKahaDBTransactionStore(persistenceAdapter) {
|
||||||
|
@Override
|
||||||
|
public void persistOutcome(Tx tx, TransactionId txid) throws IOException {
|
||||||
|
if (haveOutcome) {
|
||||||
|
super.persistOutcome(tx, txid);
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
// IOExceptions will stop the broker
|
||||||
|
persistenceAdapter.stop();
|
||||||
|
} catch (Exception e) {
|
||||||
|
LOG.error("ex on stop ", e);
|
||||||
|
exceptions.add(e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
persistenceAdapter.setTransactionStore(transactionStore);
|
||||||
|
brokerService.start();
|
||||||
|
|
||||||
|
ExecutorService executorService = Executors.newCachedThreadPool();
|
||||||
|
executorService.execute(new Runnable() {
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
try {
|
||||||
|
// commit will block
|
||||||
|
sendMessages(true, "SlowQ,FastQ", 1, 0);
|
||||||
|
} catch(Exception expected) {
|
||||||
|
LOG.info("expected", expected);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
brokerService.waitUntilStopped();
|
||||||
|
// interrupt the send thread
|
||||||
|
executorService.shutdownNow();
|
||||||
|
|
||||||
|
// verify auto recovery
|
||||||
|
prepareBrokerWithMultiStore(false);
|
||||||
|
brokerService.start();
|
||||||
|
|
||||||
|
assertEquals("expect to get the recovered message", haveOutcome ? 2 : 0, receiveMessages(false, "SlowQ,FastQ", 2));
|
||||||
|
assertEquals("all transactions are complete", 0, brokerService.getBroker().getPreparedTransactions(null).length);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testSlowFastDestinationsStoreUsage() throws Exception {
|
||||||
|
brokerService.start();
|
||||||
|
ExecutorService executorService = Executors.newCachedThreadPool();
|
||||||
|
executorService.execute(new Runnable() {
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
try {
|
||||||
|
sendMessages(false, "SlowQ", 50, 500);
|
||||||
|
} catch (Exception e) {
|
||||||
|
exceptions.add(e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
executorService.execute(new Runnable() {
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
try {
|
||||||
|
sendMessages(false, "FastQ", numToSend, 0);
|
||||||
|
} catch (Exception e) {
|
||||||
|
exceptions.add(e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
executorService.execute(new Runnable() {
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
try {
|
||||||
|
assertEquals("Got all sent", numToSend, receiveMessages(false, "FastQ", numToSend));
|
||||||
|
} catch (Exception e) {
|
||||||
|
exceptions.add(e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
executorService.shutdown();
|
||||||
|
assertTrue("consumers executor finished on time", executorService.awaitTermination(60, TimeUnit.SECONDS));
|
||||||
|
final SystemUsage usage = brokerService.getSystemUsage();
|
||||||
|
assertTrue("Store is not hogged", Wait.waitFor(new Wait.Condition() {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean isSatisified() throws Exception {
|
||||||
|
long storeUsage = usage.getStoreUsage().getUsage();
|
||||||
|
LOG.info("Store Usage: " + storeUsage);
|
||||||
|
return storeUsage < 5 * maxFileLength;
|
||||||
|
}
|
||||||
|
}));
|
||||||
|
assertTrue("no exceptions", exceptions.isEmpty());
|
||||||
|
}
|
||||||
|
|
||||||
|
private void sendMessages(boolean transacted, String destName, int count, long sleep) throws Exception {
|
||||||
|
ActiveMQConnectionFactory cf = new ActiveMQConnectionFactory("vm://localhost");
|
||||||
|
Connection connection = cf.createConnection();
|
||||||
|
try {
|
||||||
|
Session session = transacted ? connection.createSession(true, Session.SESSION_TRANSACTED) : connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
|
||||||
|
MessageProducer producer = session.createProducer(new ActiveMQQueue(destName));
|
||||||
|
for (int i = 0; i < count; i++) {
|
||||||
|
if (sleep > 0) {
|
||||||
|
TimeUnit.MILLISECONDS.sleep(sleep);
|
||||||
|
}
|
||||||
|
producer.send(session.createTextMessage(createContent(i)));
|
||||||
|
}
|
||||||
|
if (transacted) {
|
||||||
|
session.commit();
|
||||||
|
}
|
||||||
|
} finally {
|
||||||
|
connection.close();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private int receiveMessages(boolean transacted, String destName, int max) throws JMSException {
|
||||||
|
int rc = 0;
|
||||||
|
ActiveMQConnectionFactory cf = new ActiveMQConnectionFactory("vm://localhost");
|
||||||
|
Connection connection = cf.createConnection();
|
||||||
|
try {
|
||||||
|
connection.start();
|
||||||
|
Session session = transacted ? connection.createSession(true, Session.SESSION_TRANSACTED) : connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
|
||||||
|
MessageConsumer messageConsumer = session.createConsumer(new ActiveMQQueue(destName));
|
||||||
|
while (rc < max && messageConsumer.receive(4000) != null) {
|
||||||
|
rc++;
|
||||||
|
|
||||||
|
if (transacted && rc % 200 == 0) {
|
||||||
|
session.commit();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (transacted) {
|
||||||
|
session.commit();
|
||||||
|
}
|
||||||
|
return rc;
|
||||||
|
} finally {
|
||||||
|
connection.close();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private String createContent(int i) {
|
||||||
|
StringBuilder sb = new StringBuilder(i + ":");
|
||||||
|
while (sb.length() < 1024) {
|
||||||
|
sb.append("*");
|
||||||
|
}
|
||||||
|
return sb.toString();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -17,7 +17,6 @@
|
||||||
package org.apache.activemq.usecases;
|
package org.apache.activemq.usecases;
|
||||||
|
|
||||||
import java.util.Vector;
|
import java.util.Vector;
|
||||||
|
|
||||||
import javax.jms.Connection;
|
import javax.jms.Connection;
|
||||||
import javax.jms.JMSException;
|
import javax.jms.JMSException;
|
||||||
import javax.jms.Message;
|
import javax.jms.Message;
|
||||||
|
@ -604,7 +603,6 @@ public class DurableSubscriptionOfflineTest extends org.apache.activemq.TestSupp
|
||||||
}
|
}
|
||||||
|
|
||||||
private static String filter = "$a='A1' AND (($b=true AND $c=true) OR ($d='D1' OR $d='D2'))";
|
private static String filter = "$a='A1' AND (($b=true AND $c=true) OR ($d='D1' OR $d='D2'))";
|
||||||
|
|
||||||
public void testMixOfOnLineAndOfflineSubsGetAllMatched() throws Exception {
|
public void testMixOfOnLineAndOfflineSubsGetAllMatched() throws Exception {
|
||||||
// create offline subs 1
|
// create offline subs 1
|
||||||
Connection con = createConnection("offCli1");
|
Connection con = createConnection("offCli1");
|
||||||
|
@ -1243,7 +1241,7 @@ public class DurableSubscriptionOfflineTest extends org.apache.activemq.TestSupp
|
||||||
destroyBroker();
|
destroyBroker();
|
||||||
createBroker(false);
|
createBroker(false);
|
||||||
KahaDBPersistenceAdapter pa = (KahaDBPersistenceAdapter) broker.getPersistenceAdapter();
|
KahaDBPersistenceAdapter pa = (KahaDBPersistenceAdapter) broker.getPersistenceAdapter();
|
||||||
assertEquals("only one journal file left after restart", 1, pa.getStore().getJournalManager().getFileMap().size());
|
assertEquals("only one journal file left after restart", 1, pa.getStore().getJournal().getFileMap().size());
|
||||||
}
|
}
|
||||||
|
|
||||||
public static class Listener implements MessageListener {
|
public static class Listener implements MessageListener {
|
||||||
|
@ -1252,18 +1250,15 @@ public class DurableSubscriptionOfflineTest extends org.apache.activemq.TestSupp
|
||||||
|
|
||||||
Listener() {
|
Listener() {
|
||||||
}
|
}
|
||||||
|
|
||||||
Listener(String id) {
|
Listener(String id) {
|
||||||
this.id = id;
|
this.id = id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void onMessage(Message message) {
|
public void onMessage(Message message) {
|
||||||
count++;
|
count++;
|
||||||
if (id != null) {
|
if (id != null) {
|
||||||
try {
|
try {
|
||||||
LOG.info(id + ", " + message.getJMSMessageID());
|
LOG.info(id + ", " + message.getJMSMessageID());
|
||||||
} catch (Exception ignored) {
|
} catch (Exception ignored) {}
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1278,11 +1273,13 @@ public class DurableSubscriptionOfflineTest extends org.apache.activemq.TestSupp
|
||||||
if (b != null) {
|
if (b != null) {
|
||||||
boolean c = message.getBooleanProperty("$c");
|
boolean c = message.getBooleanProperty("$c");
|
||||||
assertTrue("", c);
|
assertTrue("", c);
|
||||||
} else {
|
}
|
||||||
|
else {
|
||||||
String d = message.getStringProperty("$d");
|
String d = message.getStringProperty("$d");
|
||||||
assertTrue("", "D1".equals(d) || "D2".equals(d));
|
assertTrue("", "D1".equals(d) || "D2".equals(d));
|
||||||
}
|
}
|
||||||
} catch (JMSException e) {
|
}
|
||||||
|
catch (JMSException e) {
|
||||||
exceptions.add(e);
|
exceptions.add(e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -382,7 +382,7 @@ public class Journal {
|
||||||
started = false;
|
started = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
synchronized void cleanup() {
|
protected synchronized void cleanup() {
|
||||||
if (accessorPool != null) {
|
if (accessorPool != null) {
|
||||||
accessorPool.disposeUnused();
|
accessorPool.disposeUnused();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue