stack created HBASE-12955:
-----------------------------
Summary: Make ITBLL less of a wuss
Key: HBASE-12955
URL: https://issues.apache.org/jira/browse/HBASE-12955
Project: HBase
Issue Type: Task
Reporter: stack
Assignee: stack
ITBLL avoids rolling restart and kill of the server hosting meta by default.
{code}
Action[] actions1 = new Action[] {
- new RestartRandomRsExceptMetaAction(60000),
+ new RestartRandomRsAction(60000),
new RestartActiveMasterAction(5000),
- new RollingBatchRestartRsExceptMetaAction(5000, 1.0f, 2), //only allow
2 servers to be dead
+ new RollingBatchRestartRsAction(5000, 1.0f, 2), //only allow 2 servers
to be dead
new ForceBalancerAction()
{code}
Enable killing of meta.
Running tests over the w/e against 1.0, all seems to work w/ this enabled
(splits were disabled).
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)