Repository: ambari
Updated Branches:
refs/heads/branch-2.4 0ebe85494 -> 7461641b6
AMBARI-16757. Spark History Server heap size is not exposed (History Server crashed with OOM)
- Addendum patch (Weiqing Yang via srimanth)
Project: http://git-wip-us.apache.org/repos/asf/ambari/repo
Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/7461641b
Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/7461641b
Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/7461641b
Branch: refs/heads/branch-2.4
Commit: 7461641b64e7bd98e0cb9778b21c30e6fb0e9d20
Parents: 0ebe854
Author: Srimanth Gunturi <sgunturi@hortonworks.com>
Authored: Tue May 31 12:07:54 2016 -0700
Committer: Srimanth Gunturi <sgunturi@hortonworks.com>
Committed: Tue May 31 12:07:54 2016 -0700
----------------------------------------------------------------------
.../resources/common-services/SPARK/1.2.1/package/scripts/params.py | 1 +
1 file changed, 1 insertion(+)
----------------------------------------------------------------------
http://git-wip-us.apache.org/repos/asf/ambari/blob/7461641b/ambari-server/src/main/resources/common-services/SPARK/1.2.1/package/scripts/params.py
----------------------------------------------------------------------
diff --git a/ambari-server/src/main/resources/common-services/SPARK/1.2.1/package/scripts/params.py
b/ambari-server/src/main/resources/common-services/SPARK/1.2.1/package/scripts/params.py
index 314f014..dfbdb12 100644
--- a/ambari-server/src/main/resources/common-services/SPARK/1.2.1/package/scripts/params.py
+++ b/ambari-server/src/main/resources/common-services/SPARK/1.2.1/package/scripts/params.py
@@ -67,6 +67,7 @@ if stack_version_formatted and check_stack_feature(StackFeature.ROLLING_UPGRADE,
hadoop_home = stack_select.get_hadoop_dir("home")
spark_conf = format("{stack_root}/current/{component_directory}/conf")
spark_log_dir = config['configurations']['spark-env']['spark_log_dir']
+ spark_daemon_memory = config['configurations']['spark-env']['spark_daemon_memory']
spark_pid_dir = status_params.spark_pid_dir
spark_home = format("{stack_root}/current/{component_directory}")
|