From f4bad4418e4c13ed806afb02262a1fcd91736f29 Mon Sep 17 00:00:00 2001 From: Michael Stack Date: Sat, 20 Dec 2008 05:36:54 +0000 Subject: [PATCH] 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 --- src/java/org/apache/hadoop/hbase/io/HBaseMapFile.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/java/org/apache/hadoop/hbase/io/HBaseMapFile.java b/src/java/org/apache/hadoop/hbase/io/HBaseMapFile.java index 1ed66becd9f..7fbb8843242 100644 --- a/src/java/org/apache/hadoop/hbase/io/HBaseMapFile.java +++ b/src/java/org/apache/hadoop/hbase/io/HBaseMapFile.java @@ -129,7 +129,7 @@ public class HBaseMapFile extends MapFile { // Default for mapfiles is 128. Makes random reads faster if we // have more keys indexed and we're not 'next'-ing around in the // mapfile. - setIndexInterval(conf.getInt("hbase.io.index.interval", 32)); + setIndexInterval(conf.getInt("hbase.io.index.interval", 128)); } } -} \ No newline at end of file +}