HBASE-1458 64 commit logs as upper bound is too many -- make it half
git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@780322 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f43fba2216
commit
981d990af9
|
@ -287,6 +287,8 @@ Release 0.20.0 - Unreleased
|
||||||
HBASE-1017 Region balancing does not bring newly added node within
|
HBASE-1017 Region balancing does not bring newly added node within
|
||||||
acceptable range (Evgeny Ryabitskiy via Stack)
|
acceptable range (Evgeny Ryabitskiy via Stack)
|
||||||
HBASE-1454 HBaseAdmin.getClusterStatus
|
HBASE-1454 HBaseAdmin.getClusterStatus
|
||||||
|
HBASE-1236 Improve readability of table descriptions in the UI
|
||||||
|
(Lars George and Alex Newman via Stack)
|
||||||
|
|
||||||
OPTIMIZATIONS
|
OPTIMIZATIONS
|
||||||
HBASE-1412 Change values for delete column and column family in KeyValue
|
HBASE-1412 Change values for delete column and column family in KeyValue
|
||||||
|
|
|
@ -202,7 +202,7 @@ public class HLog implements HConstants, Syncable {
|
||||||
throw new IOException("Target HLog directory already exists: " + dir);
|
throw new IOException("Target HLog directory already exists: " + dir);
|
||||||
}
|
}
|
||||||
fs.mkdirs(dir);
|
fs.mkdirs(dir);
|
||||||
this.maxLogs = conf.getInt("hbase.regionserver.maxlogs", 64);
|
this.maxLogs = conf.getInt("hbase.regionserver.maxlogs", 32);
|
||||||
this.enabled = conf.getBoolean("hbase.regionserver.hlog.enabled", true);
|
this.enabled = conf.getBoolean("hbase.regionserver.hlog.enabled", true);
|
||||||
LOG.info("HLog configuration: blocksize=" + this.blocksize +
|
LOG.info("HLog configuration: blocksize=" + this.blocksize +
|
||||||
", rollsize=" + this.logrollsize +
|
", rollsize=" + this.logrollsize +
|
||||||
|
|
Loading…
Reference in New Issue