HBASE-5014 PutSortReducer should adhere to memory limits

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1214968 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Kannan Muthukkaruppan 2011-12-15 22:09:44 +00:00
parent 7e095fa615
commit 3772951b9d
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ public class PutSortReducer extends
for (List<KeyValue> kvs : p.getFamilyMap().values()) {
for (KeyValue kv : kvs) {
map.add(kv);
curSize += kv.getValueLength();
curSize += kv.getLength();
}
}
}