HBASE-1070 Up default index interval in TRUNK and branch

git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@728240 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2008-12-20 05:36:54 +00:00
parent fc98eacd67
commit f4bad4418e
1 changed files with 2 additions and 2 deletions

View File

@ -129,7 +129,7 @@ public class HBaseMapFile extends MapFile {
// Default for mapfiles is 128. Makes random reads faster if we // Default for mapfiles is 128. Makes random reads faster if we
// have more keys indexed and we're not 'next'-ing around in the // have more keys indexed and we're not 'next'-ing around in the
// mapfile. // mapfile.
setIndexInterval(conf.getInt("hbase.io.index.interval", 32)); setIndexInterval(conf.getInt("hbase.io.index.interval", 128));
} }
} }
} }