HBASE-680 config parameter hbase.io.index.interval should be hbase.index.interval, accroding to HBaseMapFile.HbaseWriter

git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@667159 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2008-06-12 16:59:31 +00:00
parent 85f562ebea
commit d2c38ff650
2 changed files with 3 additions and 1 deletions

View File

@ -47,6 +47,8 @@ Hbase Change Log
HBASE-662 UI in table.jsp gives META locations, not the table's regions
location (Jean-Daniel Cryans via Stack)
HBASE-676 Bytes.getInt returns a long (Clint Morgan via Stack)
HBASE-680 config parameter hbase.io.index.interval should be
hbase.index.interval, according to HBaseMapFile.HbaseWriter
IMPROVEMENTS
HBASE-559 MR example job to count table rows

View File

@ -707,7 +707,7 @@ public class HStoreFile implements HConstants {
// 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.index.interval", 128));
setIndexInterval(conf.getInt("hbase.io.index.interval", 128));
}
}
}