提交 a1622ab3 authored 作者: Thomas Mueller's avatar Thomas Mueller

Data modifications (inserts, updates, and deletes) are now faster for existing…

Data modifications (inserts, updates, and deletes) are now faster for existing tables because converting objects to byte arrays is avoided if possible.
上级 e8b84983
......@@ -18,7 +18,11 @@ Change Log
<h1>Change Log</h1>
<h2>Next Version (unreleased)</h2>
<ul><li>-
<ul><li>Data modifications (inserts, updates, and deletes) are now faster for existing tables
because converting objects to byte arrays is avoided if possible.
</li><li>LOG=0 is now a bit faster (previously undo log entries were still written).
</li><li>The command line tools now say so if the source directory of an option doesn't exist.
</li><li>It is now allowed to truncate a table if referential integrity has been disabled for this table or database.
</li></ul>
<h2>Version 1.2.140 (2010-07-25)</h2>
......
......@@ -469,6 +469,12 @@ public class SysProperties {
*/
public static final boolean OPTIMIZE_DISTINCT = getBooleanSetting("h2.optimizeDistinct", true);
/**
* System property <code>h2.optimizeUpdate</code> (default: true).<br />
* Speed up inserts, updates, and deletes by not reading all rows from a page unless necessary.
*/
public static final boolean OPTIMIZE_UPDATE = getBooleanSetting("h2.optimizeUpdate", true);
/**
* System property <code>h2.optimizeEvaluatableSubqueries</code> (default:
* true).<br />
......
......@@ -68,6 +68,8 @@ public class PageDataLeaf extends PageData {
private int memoryData;
private boolean writtenData;
private PageDataLeaf(PageDataIndex index, int pageId, Data data) {
super(index, pageId, data);
}
......@@ -132,6 +134,7 @@ public class PageDataLeaf extends PageData {
}
start = data.length();
written = true;
writtenData = true;
}
private int getRowLength(Row row) {
......@@ -183,7 +186,9 @@ public class PageDataLeaf extends PageData {
if (entryCount == 0) {
x = 0;
} else {
if (!SysProperties.OPTIMIZE_UPDATE) {
readAllRows();
}
x = findInsertionPoint(row.getKey());
System.arraycopy(offsets, 0, newOffsets, 0, x);
System.arraycopy(keys, 0, newKeys, 0, x);
......@@ -209,7 +214,20 @@ public class PageDataLeaf extends PageData {
keys = newKeys;
rows = newRows;
index.getPageStore().update(this);
if (SysProperties.OPTIMIZE_UPDATE) {
if (writtenData && offset >= start) {
byte[] d = data.getBytes();
int dataStart = offsets[entryCount - 1] + rowLength;
int dataEnd = offsets[x];
System.arraycopy(d, dataStart, d, dataStart - rowLength, dataEnd - dataStart + rowLength);
data.setPos(dataEnd);
for (int j = 0; j < columnCount; j++) {
data.writeValue(row.getValue(j));
}
}
}
if (offset < start) {
writtenData = false;
if (entryCount > 1) {
DbException.throwInternalError();
}
......@@ -264,8 +282,10 @@ public class PageDataLeaf extends PageData {
index.getPageStore().logUndo(this, data);
written = false;
changeCount = index.getPageStore().getChangeCount();
if (!SysProperties.OPTIMIZE_UPDATE) {
readAllRows();
Row r = rows[i];
}
Row r = getRow(i);
if (r != null) {
memoryChange(false, r);
}
......@@ -286,8 +306,17 @@ public class PageDataLeaf extends PageData {
System.arraycopy(rows, 0, newRows, 0, i);
int startNext = i > 0 ? offsets[i - 1] : index.getPageStore().getPageSize();
int rowLength = startNext - offsets[i];
if (SysProperties.OPTIMIZE_UPDATE) {
if (writtenData) {
byte[] d = data.getBytes();
int dataStart = offsets[entryCount];
System.arraycopy(d, dataStart, d, dataStart + rowLength, offsets[i] - dataStart);
Arrays.fill(d, dataStart, dataStart + rowLength, (byte) 0);
}
} else {
int clearStart = offsets[entryCount];
Arrays.fill(data.getBytes(), clearStart, clearStart + rowLength, (byte) 0);
}
for (int j = i; j < entryCount; j++) {
newOffsets[j] = offsets[j + 1] + rowLength;
}
......@@ -476,7 +505,9 @@ public class PageDataLeaf extends PageData {
if (written) {
return;
}
if (!SysProperties.OPTIMIZE_UPDATE) {
readAllRows();
}
writeHead();
if (firstOverflowPageId != 0) {
data.writeInt(firstOverflowPageId);
......@@ -486,6 +517,7 @@ public class PageDataLeaf extends PageData {
data.writeVarLong(keys[i]);
data.writeShortInt(offsets[i]);
}
if (!writtenData || !SysProperties.OPTIMIZE_UPDATE) {
for (int i = 0; i < entryCount; i++) {
data.setPos(offsets[i]);
Row r = getRowAt(i);
......@@ -493,6 +525,8 @@ public class PageDataLeaf extends PageData {
data.writeValue(r.getValue(j));
}
}
writtenData = true;
}
written = true;
}
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论