HBASE-2375 Make decision to split based on aggregate size of all StoreFiles and revisit related config param
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1041689 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
8d1240087d
commit
ab1969fb36
|
@ -1220,6 +1220,8 @@ Release 0.90.0 - Unreleased
|
||||||
and output side.
|
and output side.
|
||||||
HBASE-3223 Get VersionInfo for Running HBase Process
|
HBASE-3223 Get VersionInfo for Running HBase Process
|
||||||
(Nicolas Spiegelberg via Stack)
|
(Nicolas Spiegelberg via Stack)
|
||||||
|
HBASE-2375 Make decision to split based on aggregate size of all StoreFiles
|
||||||
|
and revisit related config param
|
||||||
|
|
||||||
|
|
||||||
NEW FEATURES
|
NEW FEATURES
|
||||||
|
|
|
@ -190,7 +190,7 @@ implements HMasterInterface, HMasterRegionInterface, MasterServices, Server {
|
||||||
* The RPC server ports can be ephemeral. Create a ZKW instance.
|
* The RPC server ports can be ephemeral. Create a ZKW instance.
|
||||||
*/
|
*/
|
||||||
HServerAddress a = new HServerAddress(getMyAddress(this.conf));
|
HServerAddress a = new HServerAddress(getMyAddress(this.conf));
|
||||||
int numHandlers = conf.getInt("hbase.regionserver.handler.count", 25);
|
int numHandlers = conf.getInt("hbase.regionserver.handler.count", 10);
|
||||||
this.rpcServer = HBaseRPC.getServer(this,
|
this.rpcServer = HBaseRPC.getServer(this,
|
||||||
new Class<?>[]{HMasterInterface.class, HMasterRegionInterface.class},
|
new Class<?>[]{HMasterInterface.class, HMasterRegionInterface.class},
|
||||||
a.getBindAddress(), a.getPort(),
|
a.getBindAddress(), a.getPort(),
|
||||||
|
|
|
@ -324,7 +324,7 @@ public class HRegionServer implements HRegionInterface, HBaseRPCErrorHandler,
|
||||||
new Class<?>[]{HRegionInterface.class, HBaseRPCErrorHandler.class,
|
new Class<?>[]{HRegionInterface.class, HBaseRPCErrorHandler.class,
|
||||||
OnlineRegions.class},
|
OnlineRegions.class},
|
||||||
address.getBindAddress(),
|
address.getBindAddress(),
|
||||||
address.getPort(), conf.getInt("hbase.regionserver.handler.count", 25),
|
address.getPort(), conf.getInt("hbase.regionserver.handler.count", 10),
|
||||||
conf.getInt("hbase.regionserver.metahandler.count", 10),
|
conf.getInt("hbase.regionserver.metahandler.count", 10),
|
||||||
false, conf, QOS_THRESHOLD);
|
false, conf, QOS_THRESHOLD);
|
||||||
this.server.setErrorHandler(this);
|
this.server.setErrorHandler(this);
|
||||||
|
|
|
@ -163,10 +163,10 @@
|
||||||
</property>
|
</property>
|
||||||
<property>
|
<property>
|
||||||
<name>hbase.regionserver.handler.count</name>
|
<name>hbase.regionserver.handler.count</name>
|
||||||
<value>25</value>
|
<value>10</value>
|
||||||
<description>Count of RPC Server instances spun up on RegionServers
|
<description>Count of RPC Server instances spun up on RegionServers
|
||||||
Same property is used by the Master for count of master handlers.
|
Same property is used by the Master for count of master handlers.
|
||||||
Default is 25.
|
Default is 10.
|
||||||
</description>
|
</description>
|
||||||
</property>
|
</property>
|
||||||
<property>
|
<property>
|
||||||
|
|
Loading…
Reference in New Issue