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:
parent
85f562ebea
commit
d2c38ff650
|
@ -47,6 +47,8 @@ Hbase Change Log
|
||||||
HBASE-662 UI in table.jsp gives META locations, not the table's regions
|
HBASE-662 UI in table.jsp gives META locations, not the table's regions
|
||||||
location (Jean-Daniel Cryans via Stack)
|
location (Jean-Daniel Cryans via Stack)
|
||||||
HBASE-676 Bytes.getInt returns a long (Clint Morgan 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
|
IMPROVEMENTS
|
||||||
HBASE-559 MR example job to count table rows
|
HBASE-559 MR example job to count table rows
|
||||||
|
|
|
@ -707,7 +707,7 @@ public class HStoreFile implements HConstants {
|
||||||
// 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.index.interval", 128));
|
setIndexInterval(conf.getInt("hbase.io.index.interval", 128));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue