forked from opensourceplayer/ambari-release
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
AMBARI-21121: Missing storm-site.xml in HDP-2.6 stack (Sriharsha Chin…
…talapani via jluniya) Change-Id: I43c0d6fadaff1bdac8533a0e77bd9f10c83c61a1
- Loading branch information
1 parent
c28d028
commit 5f1f802
Showing
1 changed file
with
61 additions
and
0 deletions.
There are no files selected for viewing
61 changes: 61 additions & 0 deletions
61
ambari-server/src/main/resources/stacks/HDP/2.6/services/STORM/configuration/storm-site.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
<?xml version="1.0"?> | ||
<!-- | ||
censed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
--> | ||
<configuration xmlns:xi="http://www.w3.org/2001/XInclude" supports_final="true"> | ||
<property> | ||
<name>java.library.path</name> | ||
<value>/usr/local/lib:/opt/local/lib:/usr/lib:/usr/hdp/current/storm-client/lib</value> | ||
<description>This value is passed to spawned JVMs (e.g., Nimbus, Supervisor, and Workers) | ||
for the java.library.path value. java.library.path tells the JVM where | ||
to look for native libraries. It is necessary to set this config correctly since | ||
Storm uses the ZeroMQ and JZMQ native libs. </description> | ||
<on-ambari-upgrade add="true"/> | ||
</property> | ||
<property> | ||
<name>nimbus.childopts</name> | ||
<value>-Xmx1024m _JAAS_PLACEHOLDER -javaagent:/usr/hdp/current/storm-nimbus/contrib/storm-jmxetric/lib/jmxetric-1.0.4.jar=host=localhost,port=8649,wireformat31x=true,mode=multicast,config=/usr/hdp/current/storm-nimbus/contrib/storm-jmxetric/conf/jmxetric-conf.xml,process=Nimbus_JVM</value> | ||
<description>This parameter is used by the storm-deploy project to configure the jvm options for the nimbus daemon.</description> | ||
<value-attributes> | ||
<overridable>false</overridable> | ||
</value-attributes> | ||
<on-ambari-upgrade add="true"/> | ||
</property> | ||
<property> | ||
<name>worker.childopts</name> | ||
<value>-Xmx768m _JAAS_PLACEHOLDER -javaagent:/usr/hdp/current/storm-client/contrib/storm-jmxetric/lib/jmxetric-1.0.4.jar=host=localhost,port=8650,wireformat31x=true,mode=multicast,config=/usr/hdp/current/storm-client/contrib/storm-jmxetric/conf/jmxetric-conf.xml,process=Worker_%ID%_JVM</value> | ||
<description>The jvm opts provided to workers launched by this supervisor. All \"%ID%\" substrings are replaced with an identifier for this worker.</description> | ||
<value-attributes> | ||
<type>multiLine</type> | ||
</value-attributes> | ||
<on-ambari-upgrade add="true"/> | ||
</property> | ||
<property> | ||
<name>supervisor.childopts</name> | ||
<value>-Xmx256m _JAAS_PLACEHOLDER -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.port={{jmxremote_port}} -javaagent:/usr/hdp/current/storm-supervisor/contrib/storm-jmxetric/lib/jmxetric-1.0.4.jar=host=localhost,port=8650,wireformat31x=true,mode=multicast,config=/usr/hdp/current/storm-supervisor/contrib/storm-jmxetric/conf/jmxetric-conf.xml,process=Supervisor_JVM</value> | ||
<description>This parameter is used by the storm-deploy project to configure the jvm options for the supervisor daemon.</description> | ||
<value-attributes> | ||
<overridable>false</overridable> | ||
</value-attributes> | ||
<on-ambari-upgrade add="true"/> | ||
</property> | ||
<property> | ||
<name>metrics.reporter.register</name> | ||
<on-ambari-upgrade delete="true"/> | ||
</property> | ||
</configuration> |