Gateway
Categories:
Advanced
Display Name | Description | Related Name | Default Value | API Name | Required |
---|---|---|---|---|---|
Deploy Directory | The directory where the client configs will be deployed | /etc/hadoop |
client_config_root_dir
|
true | |
Gateway Logging Advanced Configuration Snippet (Safety Valve) | For advanced use only, a string to be inserted into log4j.properties for this role only. |
log4j_safety_valve
|
false | ||
MapReduce Client Advanced Configuration Snippet (Safety Valve) for mapred-site.xml | For advanced use only, a string to be inserted into the client configuration for mapred-site.xml. |
mapreduce_client_config_safety_valve
|
false | ||
Gateway Client Environment Advanced Configuration Snippet (Safety Valve) for hadoop-env.sh | For advanced use only, key-value pairs (one on each line) to be inserted into the client configuration for hadoop-env.sh |
mapreduce_client_env_safety_valve
|
false | ||
Client Java Configuration Options | These are Java command-line arguments. Commonly, garbage collection flags, PermGen, or extra debugging flags would be passed here. | -Djava.net.preferIPv4Stack=true |
mapreduce_client_java_opts
|
false | |
YARN Client Advanced Configuration Snippet (Safety Valve) for yarn-site.xml | For advanced use only, a string to be inserted into the client configuration for yarn-site.xml. |
yarn_client_config_safety_valve
|
false |
Compression
Display Name | Description | Related Name | Default Value | API Name | Required |
---|---|---|---|---|---|
Compression Level of Codecs | Compression level for the codec used to compress MapReduce outputs. Default compression is a balance between speed and compression ratio. |
zlib.compress.level
|
DEFAULT_COMPRESSION |
zlib_compress_level
|
false |
Logs
Display Name | Description | Related Name | Default Value | API Name | Required |
---|---|---|---|---|---|
Gateway Logging Threshold | The minimum log level for Gateway logs | INFO |
log_threshold
|
false |
Monitoring
Display Name | Description | Related Name | Default Value | API Name | Required |
---|---|---|---|---|---|
Enable Log Event Capture | When set, each role identifies important log events and forwards them to Cloudera Manager. | true |
catch_events
|
false | |
Enable Configuration Change Alerts | When set, Cloudera Manager will send alerts when this entity's configuration changes. | false |
enable_config_alerts
|
false |
Other
Display Name | Description | Related Name | Default Value | API Name | Required |
---|---|---|---|---|---|
Alternatives Priority | The priority level that the client configuration will have in the Alternatives system on the hosts. Higher priority levels will cause Alternatives to prefer this configuration over any others. | 92 |
client_config_priority
|
true | |
Client Failover Sleep Base Time | Base sleep time between failover attempts. Used only if RM HA is enabled. |
yarn.client.failover-sleep-base-ms
|
100 millisecond(s) |
client_failover_sleep_base
|
false |
Client Failover Sleep Max Time | Maximum sleep time between failover attempts. Used only if RM HA is enabled. |
yarn.client.failover-sleep-max-ms
|
2 second(s) |
client_failover_sleep_max
|
false |
Running Job History Location | Location to store the job history files of running jobs. This is a path on the host where the JobTracker is running. |
hadoop.job.history.location
|
/var/log/hadoop-mapreduce/history |
hadoop_job_history_dir
|
false |
SequenceFile I/O Buffer Size | Size of buffer for read and write operations of SequenceFiles. |
io.file.buffer.size
|
64 KiB |
io_file_buffer_size
|
false |
I/O Sort Factor | The number of streams to merge at the same time while sorting files. That is, the number of sort heads to use during the merge sort on the reducer side. This determines the number of open file handles. Merging more files in parallel reduces merge sort iterations and improves run time by eliminating disk I/O. Note that merging more files in parallel uses more memory. If 'io.sort.factor' is set too high or the maximum JVM heap is set too low, excessive garbage collection will occur. The Hadoop default is 10, but Cloudera recommends a higher value. Will be part of generated client configuration. |
mapreduce.task.io.sort.factor
|
64 |
io_sort_factor
|
false |
I/O Sort Memory Buffer (MiB) | The total amount of memory buffer, in megabytes, to use while sorting files. Note that this memory comes out of the user JVM heap size (meaning total user JVM heap - this amount of memory = total user usable heap space. Note that Cloudera's default differs from Hadoop's default; Cloudera uses a bigger buffer by default because modern machines often have more RAM. The smallest value across all TaskTrackers will be part of generated client configuration. |
mapreduce.task.io.sort.mb
|
256 MiB |
io_sort_mb
|
false |
I/O Sort Spill Percent | The soft limit in either the buffer or record collection buffers. When this limit is reached, a thread will begin to spill the contents to disk in the background. Note that this does not imply any chunking of data to the spill. A value less than 0.5 is not recommended. The syntax is in decimal units; the default is 80% and is formatted 0.8. Will be part of generated client configuration. |
mapreduce.map.sort.spill.percent
|
0.8 |
io_sort_spill_percent
|
false |
Use Compression on Map Outputs | If enabled, uses compression on the map outputs before they are sent across the network. Will be part of generated client configuration. |
mapreduce.map.output.compress
|
true |
mapred_compress_map_output
|
false |
Compression Codec of MapReduce Map Output | For MapReduce map outputs that are compressed, specify the compression codec to use. Will be part of generated client configuration. |
mapreduce.map.output.compress.codec
|
org.apache.hadoop.io.compress.SnappyCodec |
mapred_map_output_compression_codec
|
false |
Map Tasks Speculative Execution | If enabled, multiple instances of some map tasks may be executed in parallel. |
mapreduce.map.speculative
|
false |
mapred_map_tasks_speculative_execution
|
false |
Compress MapReduce Job Output | Compress the output of MapReduce jobs. Will be part of generated client configuration. |
mapreduce.output.fileoutputformat.compress
|
false |
mapred_output_compress
|
false |
Compression Codec of MapReduce Job Output | For MapReduce job outputs that are compressed, specify the compression codec to use. Will be part of generated client configuration. |
mapreduce.output.fileoutputformat.compress.codec
|
org.apache.hadoop.io.compress.DefaultCodec |
mapred_output_compression_codec
|
false |
Compression Type of MapReduce Job Output | For MapReduce job outputs that are compressed as SequenceFiles, you can select one of these compression type options: NONE, RECORD or BLOCK. Cloudera recommends BLOCK. Will be part of generated client configuration. |
mapreduce.output.fileoutputformat.compress.type
|
BLOCK |
mapred_output_compression_type
|
false |
Default Number of Parallel Transfers During Shuffle | The default number of parallel transfers run by reduce during the copy (shuffle) phase. This number is calculated by the following formula: min(number_of_nodes, n * min(number_of_cores_per_node, number_of_spindles_per_node)) where the n represents how many streams you want to run per core/spindle. A value of 10 for n is appropriate in most cases. Will be part of generated client configuration. |
mapreduce.reduce.shuffle.parallelcopies
|
10 |
mapred_reduce_parallel_copies
|
false |
Number of Map Tasks to Complete Before Reduce Tasks | Fraction of the number of map tasks in the job which should be completed before reduce tasks are scheduled for the job. |
mapreduce.job.reduce.slowstart.completedmaps
|
0.8 |
mapred_reduce_slowstart_completed_maps
|
false |
Default Number of Reduce Tasks per Job | The default number of reduce tasks per job. Will be part of generated client configuration. |
mapreduce.job.reduces
|
1 |
mapred_reduce_tasks
|
false |
Reduce Tasks Speculative Execution | If enabled, multiple instances of some reduce tasks may be executed in parallel. |
mapreduce.reduce.speculative
|
false |
mapred_reduce_tasks_speculative_execution
|
false |
Mapreduce Submit Replication | The replication level for submitted job files. |
mapreduce.client.submit.file.replication
|
10 |
mapred_submit_replication
|
false |
Mapreduce Task Timeout | The number of milliseconds before a task will be terminated if it neither reads an input, writes an output, nor updates its status string. |
mapreduce.task.timeout
|
10 minute(s) |
mapred_task_timeout
|
false |
MR Application Environment | Additional execution environment entries for map and reduce task processes. |
mapreduce.admin.user.env
|
LD_LIBRARY_PATH=$HADOOP_COMMON_HOME/lib/native:$JAVA_LIBRARY_PATH |
mapreduce_admin_user_env
|
false |
Maximum Number of Attempts for MapReduce Jobs | The maximum number of application attempts for MapReduce jobs. The value of this parameter overrides ApplicationMaster Maximum Attempts for MapReduce jobs. |
mapreduce.am.max-attempts
|
2 |
mapreduce_am_max_attempts
|
false |
MR Application Classpath | Classpaths to include for MapReduce applications. During evaluation, the string '{version}' in the value of this parameter will be replaced by the actual MapReduce version. |
mapreduce.application.classpath
|
$HADOOP_CLIENT_CONF_DIR $PWD/mr-framework/* $MR2_CLASSPATH |
mapreduce_application_classpath
|
false |
MR Application Framework Path | Path for MapReduce application framework. During evaluation, the string '{version}' in the value of this parameter will be replaced by the actual MapReduce version. |
mapreduce.application.framework.path
|
/user/yarn/mapreduce/mr-framework/version-mr-framework.tar.gz#mr-framework |
mapreduce_application_framework_path
|
false |
Application Framework | The application framework to run jobs with. If not set, jobs will be run with the local job runner. |
mapreduce.framework.name
|
yarn |
mapreduce_framework_name
|
false |
ACL For Modifying A Job | Specifies a list of users and/or groups that are allowed to modify job operations. For specifying a list of users and groups the format to use is "user1,user2 group1,group". If set to '*', it allows all users/groups to modify this job. If set to ' '(i.e. space), it allows none. Irrespective of this ACL configuration, (a) job-owner, (b) the user who started the cluster, (c) members of an admin configured supergroup configured via mapreduce.cluster.permissions.supergroup and (d) queue administrators of the queue to which this job was submitted to configured via acl-administer-jobs for the specific queue in mapred-queues.xml can do all the modification operations on a job. Ignored unless mapreduce.clouster.acls.enabled is true. |
mapreduce.job.acl-modify-job
|
mapreduce_job_acl_modify_job
|
false | |
ACL For Viewing A Job | Specifies a list of users and/or groups that are allowed to view private job details. For specifying a list of users and groups the format to use is "user1,user2 group1,group". If set to '*', it allows all users/groups to modify this job. If set to ' '(i.e. space), it allows none. Irrespective of this ACL configuration, (a) job-owner, (b) the user who started the cluster, (c) members of an admin configured supergroup configured via mapreduce.cluster.permissions.supergroup and (d) queue administrators of the queue to which this job was submitted to configured via acl-administer-jobs for the specific queue in mapred-queues.xml can do all the view operations on a job. Ignored unless mapreduce.cluster.acls.enabled is true. |
mapreduce.job.acl-view-job
|
mapreduce_job_acl_view_job
|
false | |
Redacted MapReduce Job Properties | A comma-separated list of job properties to redact in MapReduce. |
mapreduce.job.redacted-properties
|
fs.s3a.access.key fs.s3a.secret.key fs.adl.oauth2.credential dfs.adls.oauth2.credential fs.azure.account.oauth2.client.secret |
mapreduce_job_redacted_properties
|
false |
JobTracker MetaInfo Maxsize | The maximum permissible size of the split metainfo file. The JobTracker won't attempt to read split metainfo files bigger than the configured value. No limits if set to -1. |
mapreduce.job.split.metainfo.maxsize
|
10000000 |
mapreduce_jobtracker_split_metainfo_maxsize
|
false |
Map Task Java Opts Base | Java opts for the map processes. The following symbol, if present, will be interpolated: @taskid@ is replaced by current TaskID. Any other occurrences of '@' will go unchanged. For example, to enable verbose gc logging to a file named for the taskid in /tmp pass a value of: "-verbose:gc -Xloggc:/tmp/@taskid@.gc". The configuration variable 'Map Task Memory' can be used to control the maximum memory of the map processes. |
mapreduce.map.java.opts
|
-Djava.net.preferIPv4Stack=true |
mapreduce_map_java_opts
|
false |
Reduce Task Java Opts Base | Java opts for the reduce processes. The following symbol, if present, will be interpolated: @taskid@ is replaced by current TaskID. Any other occurrences of '@' will go unchanged. For example, to enable verbose gc logging to a file named for the taskid in /tmp pass a value of: "-verbose:gc -Xloggc:/tmp/@taskid@.gc". The configuration variable 'Reduce Task Memory' can be used to control the maximum memory of the reduce processes. |
mapreduce.reduce.java.opts
|
-Djava.net.preferIPv4Stack=true |
mapreduce_reduce_java_opts
|
false |
ApplicationMaster Environment | Environment variables for the MapReduce ApplicationMaster. These settings can be overridden in the ApplicationMaster User Environment (yarn.app.mapreduce.am.env). |
yarn.app.mapreduce.am.admin.user.env
|
LD_LIBRARY_PATH=$HADOOP_COMMON_HOME/lib/native:$JAVA_LIBRARY_PATH |
yarn_app_mapreduce_am_admin_user_env
|
false |
ApplicationMaster Java Opts Base | Java command line arguments passed to the MapReduce ApplicationMaster. |
yarn.app.mapreduce.am.command-opts
|
-Djava.net.preferIPv4Stack=true |
yarn_app_mapreduce_am_command_opts
|
false |
Performance
Display Name | Description | Related Name | Default Value | API Name | Required |
---|---|---|---|---|---|
JHist File Format | File format the AM will use when generating the .jhist file. Valid values are "json" for text output and "binary" for faster parsing. |
mapreduce.jobhistory.jhist.format
|
binary |
mapred_jobhistory_jhist_format
|
false |
Enable Optimized Map-side Output Collector | Whether map tasks should attempt to use the optimized native implementation of the map-side output collector. This can improve performance of many jobs that are shuffle-intensive. Experimental in CDH 5.2. | false |
mapreduce_enable_native_map_output_collector
|
false | |
Job Counter Groups Limit | Limit on the number of counter groups allowed per job. |
mapreduce.job.counters.groups.max
|
50 |
mapreduce_job_counter_groups_limit
|
false |
Job Counters Limit | Limit on the number of counters allowed per job. |
mapreduce.job.counters.max
|
120 |
mapreduce_job_counters_limit
|
false |
Enable Ubertask Optimization | Whether to enable ubertask optimization, which runs "sufficiently small" jobs sequentially within a single JVM. "Small" is defined by the mapreduce.job.ubertask.maxmaps, mapreduce.job.ubertask.maxreduces, and mapreduce.job.ubertask.maxbytes settings. |
mapreduce.job.ubertask.enable
|
false |
mapreduce_job_ubertask_enabled
|
false |
Ubertask Maximum Job Size | Threshold for number of input bytes, beyond which a job is considered too big for ubertask optimization. If no value is specified, dfs.block.size is used as a default. |
mapreduce.job.ubertask.maxbytes
|
mapreduce_job_ubertask_maxbytes
|
false | |
Ubertask Maximum Maps | Threshold for number of maps, beyond which a job is considered too big for ubertask optimization. |
mapreduce.job.ubertask.maxmaps
|
9 |
mapreduce_job_ubertask_maxmaps
|
false |
Ubertask Maximum Reduces | Threshold for number of reduces, beyond which a job is considered too big for ubertask optimization. Note: As of CDH 5, MR2 does not support more than one reduce in an ubertask. (Zero is valid.) |
mapreduce.job.ubertask.maxreduces
|
1 |
mapreduce_job_ubertask_maxreduces
|
false |
Resource Management
Display Name | Description | Related Name | Default Value | API Name | Required |
---|---|---|---|---|---|
Client Java Heap Size in Bytes | Maximum size in bytes for the Java process heap memory. Passed to Java -Xmx. | 825955249 B |
mapreduce_client_java_heapsize
|
false | |
Heap to Container Size Ratio | The ratio of heap size to container size for both map and reduce tasks. The heap should be smaller than the container size to allow for some overhead of the JVM. |
mapreduce.job.heap.memory-mb.ratio
|
0.8 |
mapreduce_job_heap_memory_mb_ratio
|
false |
Map Task CPU Virtual Cores | The number of virtual CPU cores allocated for each map task of a job. This parameter has no effect prior to CDH 4.4. |
mapreduce.map.cpu.vcores
|
1 |
mapreduce_map_cpu_vcores
|
false |
Map Task Maximum Heap Size | The maximum Java heap size, in bytes, of the map processes. This number will be formatted and concatenated with 'Map Task Java Opts Base' to pass to Hadoop. | 0 B |
mapreduce_map_java_opts_max_heap
|
false | |
Map Task Memory | The amount of physical memory, in MiB, allocated for each map task of a job. For versions before CDH 5.5, if not specified, by default it is set to 1024. For CDH 5.5 and higher, a value less than 128 is not supported but if it is specified as 0, the amount of physical memory to request is inferred from Map Task Maximum Heap Size and Heap to Container Size Ratio. If Map Task Maximum Heap Size is not specified, by default the amount of physical memory to request is set to 1024. |
mapreduce.map.memory.mb
|
0 B |
mapreduce_map_memory_mb
|
false |
Reduce Task CPU Virtual Cores | The number of virtual CPU cores for each reduce task of a job. |
mapreduce.reduce.cpu.vcores
|
1 |
mapreduce_reduce_cpu_vcores
|
false |
Reduce Task Maximum Heap Size | The maximum Java heap size, in bytes, of the reduce processes. This number will be formatted and concatenated with 'Reduce Task Java Opts Base' to pass to Hadoop. | 0 B |
mapreduce_reduce_java_opts_max_heap
|
false | |
Reduce Task Memory | The amount of physical memory, in MiB, allocated for each reduce task of a job. For versions before CDH 5.5, if not specified, by default it is set to 1024. For CDH 5.5 and higher, a value less than 128 is not supported but if it is specified as 0, the amount of physical memory to request is inferred from Reduce Task Maximum Heap Size and Heap to Container Size Ratio. If Reduce Task Maximum Heap Size is not specified, by default the amount of physical memory to request is set to 1024. This parameter has no effect prior to CDH 4.4. |
mapreduce.reduce.memory.mb
|
0 B |
mapreduce_reduce_memory_mb
|
false |
ApplicationMaster Java Maximum Heap Size | The maximum heap size, in bytes, of the Java MapReduce ApplicationMaster. This number will be formatted and concatenated with 'ApplicationMaster Java Opts Base' to pass to Hadoop. | 825955249 B |
yarn_app_mapreduce_am_max_heap
|
false | |
ApplicationMaster Virtual CPU Cores | The virtual CPU cores requirement, for the ApplicationMaster. This parameter has no effect prior to CDH 4.4. |
yarn.app.mapreduce.am.resource.cpu-vcores
|
1 |
yarn_app_mapreduce_am_resource_cpu_vcores
|
false |
ApplicationMaster Memory | The physical memory requirement, in MiB, for the ApplicationMaster. |
yarn.app.mapreduce.am.resource.mb
|
1 GiB |
yarn_app_mapreduce_am_resource_mb
|
false |
Suppressions
Display Name | Description | Related Name | Default Value | API Name | Required |
---|---|---|---|---|---|
Suppress Configuration Validator: Version Validator | Whether to suppress configuration warnings produced by the Version Validator configuration validator. | false |
role_config_suppression_cdh_version_validator
|
true | |
Suppress Parameter Validation: Deploy Directory | Whether to suppress configuration warnings produced by the built-in parameter validation for the Deploy Directory parameter. | false |
role_config_suppression_client_config_root_dir
|
true | |
Suppress Parameter Validation: Running Job History Location | Whether to suppress configuration warnings produced by the built-in parameter validation for the Running Job History Location parameter. | false |
role_config_suppression_hadoop_job_history_dir
|
true | |
Suppress Parameter Validation: I/O Sort Factor | Whether to suppress configuration warnings produced by the built-in parameter validation for the I/O Sort Factor parameter. | false |
role_config_suppression_io_sort_factor
|
true | |
Suppress Parameter Validation: Gateway Logging Advanced Configuration Snippet (Safety Valve) | Whether to suppress configuration warnings produced by the built-in parameter validation for the Gateway Logging Advanced Configuration Snippet (Safety Valve) parameter. | false |
role_config_suppression_log4j_safety_valve
|
true | |
Suppress Parameter Validation: Compression Codec of MapReduce Map Output | Whether to suppress configuration warnings produced by the built-in parameter validation for the Compression Codec of MapReduce Map Output parameter. | false |
role_config_suppression_mapred_map_output_compression_codec
|
true | |
Suppress Parameter Validation: Compression Codec of MapReduce Job Output | Whether to suppress configuration warnings produced by the built-in parameter validation for the Compression Codec of MapReduce Job Output parameter. | false |
role_config_suppression_mapred_output_compression_codec
|
true | |
Suppress Parameter Validation: MR Application Environment | Whether to suppress configuration warnings produced by the built-in parameter validation for the MR Application Environment parameter. | false |
role_config_suppression_mapreduce_admin_user_env
|
true | |
Suppress Parameter Validation: Maximum Number of Attempts for MapReduce Jobs | Whether to suppress configuration warnings produced by the built-in parameter validation for the Maximum Number of Attempts for MapReduce Jobs parameter. | false |
role_config_suppression_mapreduce_am_max_attempts
|
true | |
Suppress Parameter Validation: MR Application Classpath | Whether to suppress configuration warnings produced by the built-in parameter validation for the MR Application Classpath parameter. | false |
role_config_suppression_mapreduce_application_classpath
|
true | |
Suppress Parameter Validation: MR Application Framework Path | Whether to suppress configuration warnings produced by the built-in parameter validation for the MR Application Framework Path parameter. | false |
role_config_suppression_mapreduce_application_framework_path
|
true | |
Suppress Parameter Validation: MapReduce Client Advanced Configuration Snippet (Safety Valve) for mapred-site.xml | Whether to suppress configuration warnings produced by the built-in parameter validation for the MapReduce Client Advanced Configuration Snippet (Safety Valve) for mapred-site.xml parameter. | false |
role_config_suppression_mapreduce_client_config_safety_valve
|
true | |
Suppress Parameter Validation: Gateway Client Environment Advanced Configuration Snippet (Safety Valve) for hadoop-env.sh | Whether to suppress configuration warnings produced by the built-in parameter validation for the Gateway Client Environment Advanced Configuration Snippet (Safety Valve) for hadoop-env.sh parameter. | false |
role_config_suppression_mapreduce_client_env_safety_valve
|
true | |
Suppress Parameter Validation: Client Java Configuration Options | Whether to suppress configuration warnings produced by the built-in parameter validation for the Client Java Configuration Options parameter. | false |
role_config_suppression_mapreduce_client_java_opts
|
true | |
Suppress Parameter Validation: ACL For Modifying A Job | Whether to suppress configuration warnings produced by the built-in parameter validation for the ACL For Modifying A Job parameter. | false |
role_config_suppression_mapreduce_job_acl_modify_job
|
true | |
Suppress Parameter Validation: ACL For Viewing A Job | Whether to suppress configuration warnings produced by the built-in parameter validation for the ACL For Viewing A Job parameter. | false |
role_config_suppression_mapreduce_job_acl_view_job
|
true | |
Suppress Parameter Validation: Redacted MapReduce Job Properties | Whether to suppress configuration warnings produced by the built-in parameter validation for the Redacted MapReduce Job Properties parameter. | false |
role_config_suppression_mapreduce_job_redacted_properties
|
true | |
Suppress Parameter Validation: Map Task Java Opts Base | Whether to suppress configuration warnings produced by the built-in parameter validation for the Map Task Java Opts Base parameter. | false |
role_config_suppression_mapreduce_map_java_opts
|
true | |
Suppress Configuration Validator: Map Task Maximum Heap Size Validator | Whether to suppress configuration warnings produced by the Map Task Maximum Heap Size Validator configuration validator. | false |
role_config_suppression_mapreduce_map_java_opts_max_heap_mapreduce_map_memory_mb_validator
|
true | |
Suppress Parameter Validation: Reduce Task Java Opts Base | Whether to suppress configuration warnings produced by the built-in parameter validation for the Reduce Task Java Opts Base parameter. | false |
role_config_suppression_mapreduce_reduce_java_opts
|
true | |
Suppress Configuration Validator: Reduce Task Maximum Heap Size Validator | Whether to suppress configuration warnings produced by the Reduce Task Maximum Heap Size Validator configuration validator. | false |
role_config_suppression_mapreduce_reduce_java_opts_max_heap_mapreduce_reduce_memory_mb_validator
|
true | |
Suppress Configuration Validator: Job Submit Replication Validator | Whether to suppress configuration warnings produced by the Job Submit Replication Validator configuration validator. | false |
role_config_suppression_mapreduce_replication_validator
|
true | |
Suppress Parameter Validation: ApplicationMaster Environment | Whether to suppress configuration warnings produced by the built-in parameter validation for the ApplicationMaster Environment parameter. | false |
role_config_suppression_yarn_app_mapreduce_am_admin_user_env
|
true | |
Suppress Parameter Validation: ApplicationMaster Java Opts Base | Whether to suppress configuration warnings produced by the built-in parameter validation for the ApplicationMaster Java Opts Base parameter. | false |
role_config_suppression_yarn_app_mapreduce_am_command_opts
|
true | |
Suppress Configuration Validator: ApplicationMaster Java Maximum Heap Size Validator | Whether to suppress configuration warnings produced by the ApplicationMaster Java Maximum Heap Size Validator configuration validator. | false |
role_config_suppression_yarn_app_mapreduce_am_max_heap_yarn_app_mapreduce_am_resource_mb_validator
|
true | |
Suppress Parameter Validation: YARN Client Advanced Configuration Snippet (Safety Valve) for yarn-site.xml | Whether to suppress configuration warnings produced by the built-in parameter validation for the YARN Client Advanced Configuration Snippet (Safety Valve) for yarn-site.xml parameter. | false |
role_config_suppression_yarn_client_config_safety_valve
|
true |