mirror of https://github.com/apache/activemq.git
https://issues.apache.org/activemq/browse/AMQ-2042 - kahadb cleaning up after io exception
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@881221 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a15b39569b
commit
5cf4d83556
|
@ -178,6 +178,10 @@ public class PageFile {
|
|||
return current == null;
|
||||
}
|
||||
|
||||
boolean isDone() {
|
||||
return diskBound == null && current == null;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -939,10 +943,7 @@ public class PageFile {
|
|||
|
||||
batch = new ArrayList<PageWrite>(writes.size());
|
||||
// build a write batch from the current write cache.
|
||||
Iterator<Long> it = writes.keySet().iterator();
|
||||
while (it.hasNext()) {
|
||||
Long key = it.next();
|
||||
PageWrite write = writes.get(key);
|
||||
for (PageWrite write : writes.values()) {
|
||||
batch.add(write);
|
||||
// Move the current write to the diskBound write, this lets folks update the
|
||||
// page again without blocking for this write.
|
||||
|
@ -958,23 +959,26 @@ public class PageFile {
|
|||
this.checkpointLatch=null;
|
||||
}
|
||||
|
||||
|
||||
try {
|
||||
if (enableRecoveryFile) {
|
||||
|
||||
// Using Adler-32 instead of CRC-32 because it's much faster and it's
|
||||
// weakness for short messages with few hundred bytes is not a factor in this case since we know
|
||||
// Using Adler-32 instead of CRC-32 because it's much faster and
|
||||
// it's
|
||||
// weakness for short messages with few hundred bytes is not a
|
||||
// factor in this case since we know
|
||||
// our write batches are going to much larger.
|
||||
Checksum checksum = new Adler32();
|
||||
for (PageWrite w : batch) {
|
||||
try {
|
||||
checksum.update(w.diskBound, 0, pageSize);
|
||||
} catch (Throwable t) {
|
||||
throw IOExceptionSupport.create("Cannot create recovery file. Reason: " + t, t);
|
||||
throw IOExceptionSupport.create(
|
||||
"Cannot create recovery file. Reason: " + t, t);
|
||||
}
|
||||
}
|
||||
|
||||
// Can we shrink the recovery buffer??
|
||||
if( recoveryPageCount > recoveryFileMaxPageCount ) {
|
||||
if (recoveryPageCount > recoveryFileMaxPageCount) {
|
||||
int t = Math.max(recoveryFileMinPageCount, batch.size());
|
||||
recoveryFile.setLength(recoveryFileSizeForPages(t));
|
||||
}
|
||||
|
@ -983,15 +987,16 @@ public class PageFile {
|
|||
recoveryFile.seek(0);
|
||||
// Store the next tx id...
|
||||
recoveryFile.writeLong(nextTxid.get());
|
||||
// Store the checksum for thw write batch so that on recovery we know if we have a consistent
|
||||
// Store the checksum for thw write batch so that on recovery we
|
||||
// know if we have a consistent
|
||||
// write batch on disk.
|
||||
recoveryFile.writeLong(checksum.getValue());
|
||||
// Write the # of pages that will follow
|
||||
recoveryFile.writeInt(batch.size());
|
||||
|
||||
|
||||
// Write the pages.
|
||||
recoveryFile.seek(RECOVERY_FILE_HEADER_SIZE);
|
||||
|
||||
for (PageWrite w : batch) {
|
||||
recoveryFile.writeLong(w.page.getPageId());
|
||||
recoveryFile.write(w.diskBound, 0, pageSize);
|
||||
|
@ -1005,21 +1010,23 @@ public class PageFile {
|
|||
recoveryPageCount = batch.size();
|
||||
}
|
||||
|
||||
|
||||
for (PageWrite w : batch) {
|
||||
writeFile.seek(toOffset(w.page.getPageId()));
|
||||
writeFile.write(w.diskBound, 0, pageSize);
|
||||
w.done();
|
||||
}
|
||||
|
||||
// Sync again
|
||||
if( enableDiskSyncs ) {
|
||||
if (enableDiskSyncs) {
|
||||
writeFile.getFD().sync();
|
||||
}
|
||||
|
||||
synchronized( writes ) {
|
||||
} finally {
|
||||
synchronized (writes) {
|
||||
for (PageWrite w : batch) {
|
||||
// If there are no more pending writes, then remove it from the write cache.
|
||||
if( w.done() ) {
|
||||
// If there are no more pending writes, then remove it from
|
||||
// the write cache.
|
||||
if (w.isDone()) {
|
||||
writes.remove(w.page.getPageId());
|
||||
}
|
||||
}
|
||||
|
@ -1029,6 +1036,7 @@ public class PageFile {
|
|||
checkpointLatch.countDown();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private long recoveryFileSizeForPages(int pageCount) {
|
||||
return RECOVERY_FILE_HEADER_SIZE+((pageSize+8)*pageCount);
|
||||
|
|
Loading…
Reference in New Issue