HBASE-1650 HBASE-1551 broke the ability to manage non-regionserver start-up/shut down. ie: you cant start/stop thrift on a cluster anymore
git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@794011 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
6c7ef5bfc7
commit
e9c8ea8156
|
@ -260,8 +260,11 @@ Release 0.20.0 - Unreleased
|
|||
HBASE-1646 Scan-s can't set a Filter (Doğacan Güney via Stack)
|
||||
HBASE-1649 ValueFilter may not reset its internal state
|
||||
(Doğacan Güney via Stack)
|
||||
HBASE-1651 client is broken, it requests ROOT region location from ZK too
|
||||
much
|
||||
HBASE-1651 client is broken, it requests ROOT region location from ZK too
|
||||
much
|
||||
HBASE-1650 HBASE-1551 broke the ability to manage non-regionserver
|
||||
start-up/shut down. ie: you cant start/stop thrift on a cluster
|
||||
anymore
|
||||
|
||||
IMPROVEMENTS
|
||||
HBASE-1089 Add count of regions on filesystem to master UI; add percentage
|
||||
|
|
|
@ -42,15 +42,11 @@ args="--config ${HBASE_CONF_DIR} $remote_cmd"
|
|||
|
||||
command=$2
|
||||
case $command in
|
||||
(regionserver)
|
||||
exec "$bin/regionservers.sh" $args
|
||||
;;
|
||||
(zookeeper)
|
||||
exec "$bin/zookeepers.sh" $args
|
||||
;;
|
||||
(*)
|
||||
echo $usage
|
||||
exit 1
|
||||
exec "$bin/regionservers.sh" $args
|
||||
;;
|
||||
esac
|
||||
|
||||
|
|
Loading…
Reference in New Issue