Repository: ambari Updated Branches: refs/heads/branch-2.4 2eb8b825f -> 34ce61497
AMBARI-17827. Spark thrift server should be stopped before RM stop (Jeff Zhang via smohanty) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/34ce6149 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/34ce6149 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/34ce6149 Branch: refs/heads/branch-2.4 Commit: 34ce61497444fb55347d7c7caa4b5986be1e2ddf Parents: 2eb8b82 Author: Sumit Mohanty <[email protected]> Authored: Wed Jul 20 18:54:24 2016 -0700 Committer: Sumit Mohanty <[email protected]> Committed: Wed Jul 20 18:55:42 2016 -0700 ---------------------------------------------------------------------- .../src/main/resources/stacks/HDP/2.3/role_command_order.json | 1 + .../src/main/resources/stacks/HDP/2.5/role_command_order.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/34ce6149/ambari-server/src/main/resources/stacks/HDP/2.3/role_command_order.json ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/resources/stacks/HDP/2.3/role_command_order.json b/ambari-server/src/main/resources/stacks/HDP/2.3/role_command_order.json index 624decd..ba7c884 100755 --- a/ambari-server/src/main/resources/stacks/HDP/2.3/role_command_order.json +++ b/ambari-server/src/main/resources/stacks/HDP/2.3/role_command_order.json @@ -11,6 +11,7 @@ "ATLAS_SERVICE_CHECK-SERVICE_CHECK": ["ATLAS_SERVER-START"], "ATLAS_SERVER-START": ["KAFKA_BROKER-START", "LOGSEARCH_SOLR-START"], "SPARK_THRIFTSERVER-START" : ["NAMENODE-START", "HIVE_METASTORE-START"], + "RESOURCEMANAGER-STOP" : ["SPARK_THRIFTSERVER-STOP"] "HAWQMASTER-START" : ["NAMENODE-START", "DATANODE-START", "NODEMANAGER-START"], "HAWQSTANDBY-START" : ["HAWQMASTER-START"], "HAWQSTANDBY-RESTART" : ["HAWQMASTER-RESTART"], http://git-wip-us.apache.org/repos/asf/ambari/blob/34ce6149/ambari-server/src/main/resources/stacks/HDP/2.5/role_command_order.json ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/resources/stacks/HDP/2.5/role_command_order.json b/ambari-server/src/main/resources/stacks/HDP/2.5/role_command_order.json index 34848ec..3f1ef66 100644 --- a/ambari-server/src/main/resources/stacks/HDP/2.5/role_command_order.json +++ b/ambari-server/src/main/resources/stacks/HDP/2.5/role_command_order.json @@ -6,7 +6,7 @@ "ZEPPELIN_MASTER-START" : ["NAMENODE-START", "SPARK_JOBHISTORYSERVER-START"], "ZEPPELIN_SERVICE_CHECK-SERVICE_CHECK" : ["ZEPPELIN_MASTER-START"], "HIVE_SERVER_INTERACTIVE-START": ["NODEMANAGER-START", "MYSQL_SERVER-START"], - "RESOURCEMANAGER-STOP": ["HIVE_SERVER_INTERACTIVE-STOP"], + "RESOURCEMANAGER-STOP": ["HIVE_SERVER_INTERACTIVE-STOP", "SPARK_THRIFTSERVER-STOP", "SPARK2_THRIFTSERVER-STOP"], "NAMENODE-STOP": ["HIVE_SERVER_INTERACTIVE-STOP"], "HIVE_SERVER_INTERACTIVE-RESTART": ["NODEMANAGER-RESTART", "MYSQL_SERVER-RESTART"], "HIVE_SERVICE_CHECK-SERVICE_CHECK": ["HIVE_SERVER-START", "HIVE_METASTORE-START", "WEBHCAT_SERVER-START", "HIVE_SERVER_INTERACTIVE-START"],
