Support Questions

Find answers, ask questions, and share your expertise
Announcements
Welcome to the upgraded Community! Read this blog to see What’s New!

Advance Configuration Snippet in Director Config

avatar
Explorer

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

 

1 ACCEPTED SOLUTION

avatar
Contributor

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.

View solution in original post

2 REPLIES 2

avatar
Contributor

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.

avatar
Explorer

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>
"""
}
...

Labels