HBASE-1635 PerformanceEvaluation should use scanner prefetching

git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@792619 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jean-Daniel Cryans 2009-07-09 17:55:50 +00:00
parent 051bc689be
commit 2a08fa99ad
2 changed files with 2 additions and 0 deletions

View File

@ -458,6 +458,7 @@ Release 0.20.0 - Unreleased
HBASE-1535 Add client ability to perform mutations without the WAL
(Jon Gray via Stack)
HBASE-1460 Concurrent LRU Block Cache (Jon Gray via Stack)
HBASE-1635 PerformanceEvaluation should use scanner prefetching
Release 0.19.0 - 01/21/2009
INCOMPATIBLE CHANGES

View File

@ -383,6 +383,7 @@ public class PerformanceEvaluation implements HConstants {
this.table = new HTable(conf, TABLE_DESCRIPTOR.getName());
this.table.setAutoFlush(false);
this.table.setWriteBufferSize(1024*1024*12);
this.table.setScannerCaching(30);
}
void testTakedown() throws IOException {