Created on 03-19-2017 12:06 PM - edited 09-16-2022 08:43 AM
Is there any way to set advanced configuration snippets in Director's cluster.config?
(that are not listed here https://www.cloudera.com/documentation/enterprise/properties/5-9-x/topics/cm_props_cdh590.html)
e.g.
yarn.nodemanager.log-aggregation.roll-monitoring-interval-seconds=3600
Created 03-20-2017 04:52 PM
Hi,
If that property does not exist in the CM properties already, then you should find the "safety valve" configuration for the file that it should live in. Example: Safety valve of core-site.xml. You can find the configuration key in the same link, and then use that in the Director config file. Hope this helps.
Created 03-20-2017 04:52 PM
Hi,
If that property does not exist in the CM properties already, then you should find the "safety valve" configuration for the file that it should live in. Example: Safety valve of core-site.xml. You can find the configuration key in the same link, and then use that in the Director config file. Hope this helps.
Created 03-21-2017 01:13 AM
Thanks!
I will put this in the cluster config and try:
...
YARN {
yarn_service_config_safety_valve: """
<property>
<name>yarn.nodemanager.log-aggregation.roll-monitoring-interval-seconds</name>
<value>3600</value>
</property>
"""
}
...