Unverified 提交 19767b0d authored 作者: Noel Grandin's avatar Noel Grandin 提交者: GitHub

Merge pull request #1120 from grandinj/1097_slow_querygroup

#1097 reduce memory overhead of the group by data structures
...@@ -283,8 +283,7 @@ public class Aggregate extends Expression { ...@@ -283,8 +283,7 @@ public class Aggregate extends Expression {
// if (on != null) { // if (on != null) {
// on.updateAggregate(); // on.updateAggregate();
// } // }
HashMap<Expression, Object> group = select.getCurrentGroup(); if (!select.isCurrentGroup()) {
if (group == null) {
// this is a different level (the enclosing query) // this is a different level (the enclosing query)
return; return;
} }
...@@ -296,10 +295,10 @@ public class Aggregate extends Expression { ...@@ -296,10 +295,10 @@ public class Aggregate extends Expression {
} }
lastGroupRowId = groupRowId; lastGroupRowId = groupRowId;
AggregateData data = (AggregateData) group.get(this); AggregateData data = (AggregateData) select.getCurrentGroupExprData(this);
if (data == null) { if (data == null) {
data = AggregateData.create(type); data = AggregateData.create(type);
group.put(this, data); select.setCurrentGroupExprData(this, data);
} }
Value v = on == null ? null : on.getValue(session); Value v = on == null ? null : on.getValue(session);
if (type == AggregateType.GROUP_CONCAT) { if (type == AggregateType.GROUP_CONCAT) {
...@@ -372,13 +371,13 @@ public class Aggregate extends Expression { ...@@ -372,13 +371,13 @@ public class Aggregate extends Expression {
DbException.throwInternalError("type=" + type); DbException.throwInternalError("type=" + type);
} }
} }
HashMap<Expression, Object> group = select.getCurrentGroup(); if (!select.isCurrentGroup()) {
if (group == null) { throw DbException.get(ErrorCode.INVALID_USE_OF_AGGREGATE_FUNCTION_1, getSQL());
throw DbException.get(ErrorCode.INVALID_USE_OF_AGGREGATE_FUNCTION_1, getSQL());
} }
AggregateData data = (AggregateData) group.get(this); AggregateData data = (AggregateData)select.getCurrentGroupExprData(this);
if (data == null) { if (data == null) {
data = AggregateData.create(type); data = AggregateData.create(type);
select.setCurrentGroupExprData(this, data);
} }
if (type == AggregateType.GROUP_CONCAT) { if (type == AggregateType.GROUP_CONCAT) {
Value[] array = ((AggregateDataCollecting) data).getArray(); Value[] array = ((AggregateDataCollecting) data).getArray();
......
...@@ -7,6 +7,7 @@ package org.h2.expression; ...@@ -7,6 +7,7 @@ package org.h2.expression;
import java.util.Arrays; import java.util.Arrays;
import java.util.Comparator; import java.util.Comparator;
import java.util.Map;
import org.h2.engine.Constants; import org.h2.engine.Constants;
import org.h2.engine.Database; import org.h2.engine.Database;
import org.h2.util.ValueHashMap; import org.h2.util.ValueHashMap;
...@@ -47,9 +48,9 @@ class AggregateDataHistogram extends AggregateData { ...@@ -47,9 +48,9 @@ class AggregateDataHistogram extends AggregateData {
} }
ValueArray[] values = new ValueArray[distinctValues.size()]; ValueArray[] values = new ValueArray[distinctValues.size()];
int i = 0; int i = 0;
for (Value dv : distinctValues.keys()) { for (Map.Entry<Value,AggregateDataHistogram> entry : distinctValues.entries()) {
AggregateDataHistogram d = distinctValues.get(dv); AggregateDataHistogram d = entry.getValue();
values[i] = ValueArray.get(new Value[] { dv, ValueLong.get(d.count) }); values[i] = ValueArray.get(new Value[] { entry.getKey(), ValueLong.get(d.count) });
i++; i++;
} }
final CompareMode compareMode = database.getCompareMode(); final CompareMode compareMode = database.getCompareMode();
......
...@@ -159,14 +159,13 @@ public class ExpressionColumn extends Expression { ...@@ -159,14 +159,13 @@ public class ExpressionColumn extends Expression {
if (select == null) { if (select == null) {
throw DbException.get(ErrorCode.MUST_GROUP_BY_COLUMN_1, getSQL()); throw DbException.get(ErrorCode.MUST_GROUP_BY_COLUMN_1, getSQL());
} }
HashMap<Expression, Object> values = select.getCurrentGroup(); if (!select.isCurrentGroup()) {
if (values == null) {
// this is a different level (the enclosing query) // this is a different level (the enclosing query)
return; return;
} }
Value v = (Value) values.get(this); Value v = (Value) select.getCurrentGroupExprData(this);
if (v == null) { if (v == null) {
values.put(this, now); select.setCurrentGroupExprData(this, now);
} else { } else {
if (!database.areEqual(now, v)) { if (!database.areEqual(now, v)) {
throw DbException.get(ErrorCode.MUST_GROUP_BY_COLUMN_1, getSQL()); throw DbException.get(ErrorCode.MUST_GROUP_BY_COLUMN_1, getSQL());
...@@ -178,9 +177,8 @@ public class ExpressionColumn extends Expression { ...@@ -178,9 +177,8 @@ public class ExpressionColumn extends Expression {
public Value getValue(Session session) { public Value getValue(Session session) {
Select select = columnResolver.getSelect(); Select select = columnResolver.getSelect();
if (select != null) { if (select != null) {
HashMap<Expression, Object> values = select.getCurrentGroup(); if (select.isCurrentGroup()) {
if (values != null) { Value v = (Value) select.getCurrentGroupExprData(this);
Value v = (Value) values.get(this);
if (v != null) { if (v != null) {
return v; return v;
} }
......
...@@ -167,15 +167,14 @@ public class JavaAggregate extends Expression { ...@@ -167,15 +167,14 @@ public class JavaAggregate extends Expression {
@Override @Override
public Value getValue(Session session) { public Value getValue(Session session) {
HashMap<Expression, Object> group = select.getCurrentGroup(); if (!select.isCurrentGroup()) {
if (group == null) {
throw DbException.get(ErrorCode.INVALID_USE_OF_AGGREGATE_FUNCTION_1, getSQL()); throw DbException.get(ErrorCode.INVALID_USE_OF_AGGREGATE_FUNCTION_1, getSQL());
} }
try { try {
Aggregate agg; Aggregate agg;
if (distinct) { if (distinct) {
agg = getInstance(); agg = getInstance();
AggregateDataCollecting data = (AggregateDataCollecting) group.get(this); AggregateDataCollecting data = (AggregateDataCollecting) select.getCurrentGroupExprData(this);
if (data != null) { if (data != null) {
for (Value value : data.values) { for (Value value : data.values) {
if (args.length == 1) { if (args.length == 1) {
...@@ -191,7 +190,7 @@ public class JavaAggregate extends Expression { ...@@ -191,7 +190,7 @@ public class JavaAggregate extends Expression {
} }
} }
} else { } else {
agg = (Aggregate) group.get(this); agg = (Aggregate) select.getCurrentGroupExprData(this);
if (agg == null) { if (agg == null) {
agg = getInstance(); agg = getInstance();
} }
...@@ -208,8 +207,7 @@ public class JavaAggregate extends Expression { ...@@ -208,8 +207,7 @@ public class JavaAggregate extends Expression {
@Override @Override
public void updateAggregate(Session session) { public void updateAggregate(Session session) {
HashMap<Expression, Object> group = select.getCurrentGroup(); if (!select.isCurrentGroup()) {
if (group == null) {
// this is a different level (the enclosing query) // this is a different level (the enclosing query)
return; return;
} }
...@@ -229,10 +227,10 @@ public class JavaAggregate extends Expression { ...@@ -229,10 +227,10 @@ public class JavaAggregate extends Expression {
try { try {
if (distinct) { if (distinct) {
AggregateDataCollecting data = (AggregateDataCollecting) group.get(this); AggregateDataCollecting data = (AggregateDataCollecting) select.getCurrentGroupExprData(this);
if (data == null) { if (data == null) {
data = new AggregateDataCollecting(); data = new AggregateDataCollecting();
group.put(this, data); select.setCurrentGroupExprData(this, data);
} }
Value[] argValues = new Value[args.length]; Value[] argValues = new Value[args.length];
Value arg = null; Value arg = null;
...@@ -243,10 +241,10 @@ public class JavaAggregate extends Expression { ...@@ -243,10 +241,10 @@ public class JavaAggregate extends Expression {
} }
data.add(session.getDatabase(), dataType, true, args.length == 1 ? arg : ValueArray.get(argValues)); data.add(session.getDatabase(), dataType, true, args.length == 1 ? arg : ValueArray.get(argValues));
} else { } else {
Aggregate agg = (Aggregate) group.get(this); Aggregate agg = (Aggregate) select.getCurrentGroupExprData(this);
if (agg == null) { if (agg == null) {
agg = getInstance(); agg = getInstance();
group.put(this, agg); select.setCurrentGroupExprData(this, agg);
} }
Object[] argValues = new Object[args.length]; Object[] argValues = new Object[args.length];
Object arg = null; Object arg = null;
......
...@@ -5,20 +5,38 @@ ...@@ -5,20 +5,38 @@
*/ */
package org.h2.util; package org.h2.util;
import java.util.AbstractMap;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Iterator;
import java.util.Map;
import java.util.NoSuchElementException;
import org.h2.message.DbException; import org.h2.message.DbException;
import org.h2.value.Value; import org.h2.value.Value;
import org.h2.value.ValueNull; import org.h2.value.ValueNull;
/** /**
* This hash map supports keys of type Value. * This hash map supports keys of type Value.
* <p>
* ValueHashMap is a very simple implementation without allocation of additional
* objects for entries. It's very fast with good distribution of hashes, but if
* hashes have a lot of collisions this implementation tends to be very slow.
* <p>
* HashMap in archaic versions of Java have some overhead for allocation of
* entries, but slightly better behaviour with limited number of collisions,
* because collisions have no impact on non-colliding entries. HashMap in modern
* versions of Java also have the same overhead, but it builds a trees of keys
* with colliding hashes, that's why even if the all keys have exactly the same
* hash code it still offers a good performance similar to TreeMap. So
* ValueHashMap is faster in typical cases, but may behave really bad in some
* cases. HashMap is slower in typical cases, but its performance does not
* degrade too much even in the worst possible case (if keys are comparable).
* *
* @param <V> the value type * @param <V> the value type
*/ */
public class ValueHashMap<V> extends HashBase { public class ValueHashMap<V> extends HashBase {
private Value[] keys; Value[] keys;
private V[] values; V[] values;
/** /**
* Create a new value hash map. * Create a new value hash map.
...@@ -174,6 +192,51 @@ public class ValueHashMap<V> extends HashBase { ...@@ -174,6 +192,51 @@ public class ValueHashMap<V> extends HashBase {
} }
return list; return list;
} }
public Iterable<Map.Entry<Value, V>> entries() {
return new EntryIterable();
}
private final class EntryIterable implements Iterable<Map.Entry<Value, V>> {
EntryIterable() {
}
@Override
public Iterator<Map.Entry<Value, V>> iterator() {
return new EntryIterator();
}
}
private final class EntryIterator implements Iterator<Map.Entry<Value, V>> {
private int keysIndex = -1;
private int left = size;
EntryIterator() {
}
@Override
public boolean hasNext() {
return left > 0;
}
@Override
public Map.Entry<Value, V> next() {
if (left <= 0)
throw new NoSuchElementException();
left--;
for (;;) {
keysIndex++;
Value key = keys[keysIndex];
if (key != null && key != ValueNull.DELETED)
return new AbstractMap.SimpleImmutableEntry<Value, V>(key, values[keysIndex]);
}
}
@Override
public void remove() {
throw new UnsupportedOperationException();
}
}
/** /**
* Get the list of values. * Get the list of values.
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论