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-1646 Scan-s can't set a Filter (Doğacan Güney via Stack)
|
||||||
HBASE-1649 ValueFilter may not reset its internal state
|
HBASE-1649 ValueFilter may not reset its internal state
|
||||||
(Doğacan Güney via Stack)
|
(Doğacan Güney via Stack)
|
||||||
HBASE-1651 client is broken, it requests ROOT region location from ZK too
|
HBASE-1651 client is broken, it requests ROOT region location from ZK too
|
||||||
much
|
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
|
IMPROVEMENTS
|
||||||
HBASE-1089 Add count of regions on filesystem to master UI; add percentage
|
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
|
command=$2
|
||||||
case $command in
|
case $command in
|
||||||
(regionserver)
|
|
||||||
exec "$bin/regionservers.sh" $args
|
|
||||||
;;
|
|
||||||
(zookeeper)
|
(zookeeper)
|
||||||
exec "$bin/zookeepers.sh" $args
|
exec "$bin/zookeepers.sh" $args
|
||||||
;;
|
;;
|
||||||
(*)
|
(*)
|
||||||
echo $usage
|
exec "$bin/regionservers.sh" $args
|
||||||
exit 1
|
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue