Compress HashIndex on startup - only way to ensure the index

pages are loaded in correct order without changing the wire format

git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@632964 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Davies 2008-03-03 07:18:00 +00:00
parent b67f61df98
commit e376456111
4 changed files with 96 additions and 45 deletions

View File

@ -92,7 +92,7 @@ class HashBin {
return size; return size;
} }
HashPageInfo addHashPageInfo(long id, int size) { HashPageInfo addHashPageInfo(long id, int size) throws IOException {
HashPageInfo info = new HashPageInfo(hashIndex); HashPageInfo info = new HashPageInfo(hashIndex);
info.setId(id); info.setId(id);
info.setSize(size); info.setSize(size);
@ -305,6 +305,15 @@ class HashBin {
private void doUnderFlow(int index) { private void doUnderFlow(int index) {
} }
String dump() throws IOException {
String str = "[" + hashPages.size()+"]";
for (HashPageInfo page : hashPages) {
page.begin();
str +=page.dump();
page.end();
}
return str;
}
private void end() throws IOException { private void end() throws IOException {
for (HashPageInfo info : hashPages) { for (HashPageInfo info : hashPages) {
info.end(); info.end();

View File

@ -17,8 +17,10 @@
package org.apache.activemq.kaha.impl.index.hash; package org.apache.activemq.kaha.impl.index.hash;
import java.io.File; import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException; import java.io.IOException;
import java.io.RandomAccessFile; import java.io.RandomAccessFile;
import java.util.Arrays;
import java.util.LinkedList; import java.util.LinkedList;
import java.util.concurrent.atomic.AtomicBoolean; import java.util.concurrent.atomic.AtomicBoolean;
import org.apache.activemq.kaha.Marshaller; import org.apache.activemq.kaha.Marshaller;
@ -198,23 +200,9 @@ public class HashIndex implements Index, HashIndexMBean {
readBuffer = new byte[pageSize]; readBuffer = new byte[pageSize];
try { try {
openIndexFile(); openIndexFile();
long offset = 0; if (indexFile.length() > 0) {
while ((offset + pageSize) <= indexFile.length()) { doCompress();
indexFile.seek(offset);
indexFile.readFully(readBuffer, 0, HashPage.PAGE_HEADER_SIZE);
dataIn.restart(readBuffer);
HashPage page = new HashPage(keysPerPage);
page.setId(offset);
page.readHeader(dataIn);
if (!page.isActive()) {
freeList.add(page);
} else {
addToBin(page);
size+=page.size();
} }
offset += pageSize;
}
length = offset;
} catch (IOException e) { } catch (IOException e) {
LOG.error("Failed to load index ", e); LOG.error("Failed to load index ", e);
throw new RuntimeException(e); throw new RuntimeException(e);
@ -222,12 +210,15 @@ public class HashIndex implements Index, HashIndexMBean {
} }
} }
public synchronized void unload() throws IOException { public synchronized void unload() throws IOException {
if (loaded.compareAndSet(true, false)) { if (loaded.compareAndSet(true, false)) {
if (indexFile != null) { if (indexFile != null) {
indexFile.close(); indexFile.close();
indexFile = null; indexFile = null;
freeList.clear(); freeList.clear();
pageCache.clear();
bins = new HashBin[bins.length]; bins = new HashBin[bins.length];
} }
} }
@ -330,6 +321,7 @@ public class HashIndex implements Index, HashIndexMBean {
result = freeList.removeFirst(); result = freeList.removeFirst();
result.setActive(true); result.setActive(true);
result.reset(); result.reset();
writePageHeader(result);
} }
return result; return result;
} }
@ -371,7 +363,7 @@ public class HashIndex implements Index, HashIndexMBean {
return page; return page;
} }
void addToBin(HashPage page) { void addToBin(HashPage page) throws IOException {
HashBin bin = getBin(page.getBinId()); HashBin bin = getBin(page.getBinId());
bin.addHashPageInfo(page.getId(), page.getPersistedSize()); bin.addHashPageInfo(page.getId(), page.getPersistedSize());
} }
@ -420,6 +412,61 @@ public class HashIndex implements Index, HashIndexMBean {
} }
} }
private void doLoad() throws IOException {
long offset = 0;
if (loaded.compareAndSet(false, true)) {
while ((offset + pageSize) <= indexFile.length()) {
indexFile.seek(offset);
indexFile.readFully(readBuffer, 0, HashPage.PAGE_HEADER_SIZE);
dataIn.restart(readBuffer);
HashPage page = new HashPage(keysPerPage);
page.setId(offset);
page.readHeader(dataIn);
if (!page.isActive()) {
page.reset();
freeList.add(page);
} else {
addToBin(page);
size+=page.size();
}
offset += pageSize;
}
length=offset;
}
}
private void doCompress() throws IOException {
String backFileName = name + "-COMPRESS";
HashIndex backIndex = new HashIndex(directory,backFileName,indexManager);
backIndex.setKeyMarshaller(keyMarshaller);
backIndex.setKeySize(getKeySize());
backIndex.setNumberOfBins(getNumberOfBins());
backIndex.setPageSize(getPageSize());
backIndex.load();
File backFile = backIndex.file;
long offset = 0;
while ((offset + pageSize) <= indexFile.length()) {
indexFile.seek(offset);
HashPage page = getFullPage(offset);
if (page.isActive()) {
for (HashEntry entry : page.getEntries()) {
backIndex.getBin(entry.getKey()).put(entry);
backIndex.size++;
}
}
offset += pageSize;
}
backIndex.unload();
unload();
IOHelper.deleteFile(file);
IOHelper.copyFile(backFile, file);
IOHelper.deleteFile(backFile);
openIndexFile();
doLoad();
}
static int hash(Object x) { static int hash(Object x) {
int h = x.hashCode(); int h = x.hashCode();
h += ~(h << 9); h += ~(h << 9);

View File

@ -38,8 +38,8 @@ class HashPage {
private int maximumEntries; private int maximumEntries;
private long id; private long id;
private int binId; private int binId;
private int persistedSize;
private List<HashEntry> hashIndexEntries; private List<HashEntry> hashIndexEntries;
private int persistedSize;
/* /*
* for persistence only * for persistence only
*/ */
@ -71,7 +71,7 @@ class HashPage {
} }
public String toString() { public String toString() {
return "HashPage[" + getId() + ":" + binId + ":" + id+"] size = " + hashIndexEntries.size(); return "HashPage[" + getId() + ":" + binId + ":" + id+"] size = " + persistedSize;
} }
public boolean equals(Object o) { public boolean equals(Object o) {
@ -95,13 +95,6 @@ class HashPage {
this.active = active; this.active = active;
} }
long getNextFreePageId() {
return this.nextFreePageId;
}
void setNextFreePageId(long nextPageId) {
this.nextFreePageId = nextPageId;
}
long getId() { long getId() {
return id; return id;
@ -116,8 +109,9 @@ class HashPage {
} }
void write(Marshaller keyMarshaller, DataOutput dataOut) throws IOException { void write(Marshaller keyMarshaller, DataOutput dataOut) throws IOException {
persistedSize=hashIndexEntries.size();
writeHeader(dataOut); writeHeader(dataOut);
dataOut.writeInt(hashIndexEntries.size()); dataOut.writeInt(persistedSize);
for (HashEntry entry : hashIndexEntries) { for (HashEntry entry : hashIndexEntries) {
entry.write(keyMarshaller, dataOut); entry.write(keyMarshaller, dataOut);
} }
@ -125,7 +119,8 @@ class HashPage {
void read(Marshaller keyMarshaller, DataInput dataIn) throws IOException { void read(Marshaller keyMarshaller, DataInput dataIn) throws IOException {
readHeader(dataIn); readHeader(dataIn);
int size = dataIn.readInt(); dataIn.readInt();
int size = persistedSize;
hashIndexEntries.clear(); hashIndexEntries.clear();
for (int i = 0; i < size; i++) { for (int i = 0; i < size; i++) {
HashEntry entry = new HashEntry(); HashEntry entry = new HashEntry();
@ -145,9 +140,11 @@ class HashPage {
dataOut.writeBoolean(isActive()); dataOut.writeBoolean(isActive());
dataOut.writeLong(nextFreePageId); dataOut.writeLong(nextFreePageId);
dataOut.writeInt(binId); dataOut.writeInt(binId);
dataOut.writeInt(size()); persistedSize=hashIndexEntries.size();
dataOut.writeInt(persistedSize);
} }
boolean isEmpty() { boolean isEmpty() {
return hashIndexEntries.isEmpty(); return hashIndexEntries.isEmpty();
} }
@ -186,12 +183,10 @@ class HashPage {
void reset() throws IOException { void reset() throws IOException {
hashIndexEntries.clear(); hashIndexEntries.clear();
setNextFreePageId(HashEntry.NOT_SET); persistedSize=0;
} }
void addHashEntry(int index, HashEntry entry) throws IOException { void addHashEntry(int index, HashEntry entry) throws IOException {
// index = index >= 0 ? index : 0;
// index = (index == 0 || index< size()) ? index : size()-1;
hashIndexEntries.add(index, entry); hashIndexEntries.add(index, entry);
} }
@ -227,7 +222,7 @@ class HashPage {
this.binId = binId; this.binId = binId;
} }
void dump() { String dump() {
StringBuffer str = new StringBuffer(32); StringBuffer str = new StringBuffer(32);
str.append(toString()); str.append(toString());
@ -236,6 +231,6 @@ class HashPage {
str.append(entry); str.append(entry);
str.append(","); str.append(",");
} }
LOG.info(str); return str.toString();
} }
} }

View File

@ -86,8 +86,8 @@ class HashPageInfo {
return result; return result;
} }
void dump() { String dump() {
page.dump(); return page.dump();
} }
void begin() throws IOException { void begin() throws IOException {