mirror of https://github.com/apache/activemq.git
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@955179 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
37b7d9cfbd
commit
47181b7b07
|
@ -455,6 +455,20 @@ public class KahaDBPersistenceAdapter implements PersistenceAdapter, BrokerServi
|
|||
public void setMaxAsyncJobs(int maxAsyncJobs) {
|
||||
letter.setMaxAsyncJobs(maxAsyncJobs);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the databaseLockedWaitDelay
|
||||
*/
|
||||
public int getDatabaseLockedWaitDelay() {
|
||||
return letter.getDatabaseLockedWaitDelay();
|
||||
}
|
||||
|
||||
/**
|
||||
* @param databaseLockedWaitDelay the databaseLockedWaitDelay to set
|
||||
*/
|
||||
public void setDatabaseLockedWaitDelay(int databaseLockedWaitDelay) {
|
||||
letter.setDatabaseLockedWaitDelay(databaseLockedWaitDelay);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
|
|
|
@ -88,7 +88,7 @@ public class MessageDatabase extends ServiceSupport implements BrokerServiceAwar
|
|||
public static final int LOG_SLOW_ACCESS_TIME = Integer.parseInt(System.getProperty(PROPERTY_LOG_SLOW_ACCESS_TIME, "500"));
|
||||
|
||||
private static final Log LOG = LogFactory.getLog(MessageDatabase.class);
|
||||
private static final int DATABASE_LOCKED_WAIT_DELAY = 10 * 1000;
|
||||
private static final int DEFAULT_DATABASE_LOCKED_WAIT_DELAY = 10 * 1000;
|
||||
|
||||
public static final int CLOSED_STATE = 1;
|
||||
public static final int OPEN_STATE = 2;
|
||||
|
@ -177,6 +177,7 @@ public class MessageDatabase extends ServiceSupport implements BrokerServiceAwar
|
|||
private int indexCacheSize = 10000;
|
||||
private boolean checkForCorruptJournalFiles = false;
|
||||
private boolean checksumJournalFiles = false;
|
||||
private int databaseLockedWaitDelay = DEFAULT_DATABASE_LOCKED_WAIT_DELAY;
|
||||
|
||||
|
||||
public MessageDatabase() {
|
||||
|
@ -294,9 +295,9 @@ public class MessageDatabase extends ServiceSupport implements BrokerServiceAwar
|
|||
lockFile.lock();
|
||||
break;
|
||||
} catch (IOException e) {
|
||||
LOG.info("Database "+lockFileName+" is locked... waiting " + (DATABASE_LOCKED_WAIT_DELAY / 1000) + " seconds for the database to be unlocked. Reason: " + e);
|
||||
LOG.info("Database "+lockFileName+" is locked... waiting " + (getDatabaseLockedWaitDelay() / 1000) + " seconds for the database to be unlocked. Reason: " + e);
|
||||
try {
|
||||
Thread.sleep(DATABASE_LOCKED_WAIT_DELAY);
|
||||
Thread.sleep(getDatabaseLockedWaitDelay());
|
||||
} catch (InterruptedException e1) {
|
||||
}
|
||||
}
|
||||
|
@ -1616,4 +1617,18 @@ public class MessageDatabase extends ServiceSupport implements BrokerServiceAwar
|
|||
public void setDirectoryArchive(File directoryArchive) {
|
||||
this.directoryArchive = directoryArchive;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the databaseLockedWaitDelay
|
||||
*/
|
||||
public int getDatabaseLockedWaitDelay() {
|
||||
return this.databaseLockedWaitDelay;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param databaseLockedWaitDelay the databaseLockedWaitDelay to set
|
||||
*/
|
||||
public void setDatabaseLockedWaitDelay(int databaseLockedWaitDelay) {
|
||||
this.databaseLockedWaitDelay = databaseLockedWaitDelay;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue