From eaa60cde96ea1951183577d2e6fa2406c3b9c439 Mon Sep 17 00:00:00 2001 From: yuanfei2 Date: Wed, 30 Nov 2022 21:47:34 -0600 Subject: [PATCH 01/15] add hadoop yarn common to identify_param --- core/identify_param/add_project.sh | 2 ++ core/identify_param/identify_param.sh | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/core/identify_param/add_project.sh b/core/identify_param/add_project.sh index 954dbab8..538f16dc 100755 --- a/core/identify_param/add_project.sh +++ b/core/identify_param/add_project.sh @@ -11,6 +11,8 @@ function setup_hadoop() { mvn clean install -DskipTests cd $home_dir/hadoop-hdfs-project/hadoop-hdfs mvn package -DskipTests + cd $home_dir/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common + mvn package -DskipTests } function setup_hbase() { diff --git a/core/identify_param/identify_param.sh b/core/identify_param/identify_param.sh index 76963419..b33607bf 100755 --- a/core/identify_param/identify_param.sh +++ b/core/identify_param/identify_param.sh @@ -12,7 +12,7 @@ function main() { usage else case $project in - hadoop-common | hadoop-hdfs | hbase-server | zookeeper-server | alluxio-core) python3 runner.py $project; python3 collector.py $project ;; + hadoop-common | hadoop-hdfs | hbase-server | zookeeper-server | alluxio-core | hadoop-yarn-common) python3 runner.py $project; python3 collector.py $project ;; -h | --help) usage ;; *) echo "Unexpected project: $project - only support hadoop-common, hadoop-hdfs, hbase-server, zookeeper-server and alluxio-core." ;; esac From da876d4fdb3fd647f8b420b2d5a3cb48cd50ae4e Mon Sep 17 00:00:00 2001 From: yuanfei2 Date: Wed, 30 Nov 2022 21:52:37 -0600 Subject: [PATCH 02/15] add hadoop-yarn-common to constant.py --- core/identify_param/constant.py | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/core/identify_param/constant.py b/core/identify_param/constant.py index a0b2d067..72a7c4a5 100644 --- a/core/identify_param/constant.py +++ b/core/identify_param/constant.py @@ -12,7 +12,8 @@ "hadoop-common": CTEST_HADOOP_DIR, "hadoop-hdfs": CTEST_HADOOP_DIR, "hbase-server": CTEST_HBASE_DIR, - "alluxio-core": CTEST_ALLUXIO_DIR + "alluxio-core": CTEST_ALLUXIO_DIR, + "hadoop-yarn-common": CTEST_HADOOP_DIR } SRC_SUBDIR = { @@ -20,7 +21,8 @@ "hadoop-hdfs": "hadoop-hdfs-project/hadoop-hdfs", "hbase-server": "hbase-server", "zookeeper-server": "zookeeper-server", - "alluxio-core": "core" + "alluxio-core": "core", + "hadoop-yarn-common": "hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common" } MVN_TEST_PATH = { @@ -29,6 +31,7 @@ "hbase-server": os.path.join(CTEST_HBASE_DIR, SRC_SUBDIR["hbase-server"]), "zookeeper-server": os.path.join(CTEST_ZOOKEEPER_DIR, SRC_SUBDIR["zookeeper-server"]), "alluxio-core": os.path.join(CTEST_ALLUXIO_DIR, SRC_SUBDIR["alluxio-core"]), + "hadoop-yarn-common": os.path.join(CTEST_HADOOP_DIR, SRC_SUBDIR["hadoop-yarn-common"]), } LOCAL_CONF_PATH = { @@ -36,7 +39,8 @@ "hadoop-hdfs": "results/hadoop-hdfs/conf_params.txt", "hbase-server": "results/hbase-server/conf_params.txt", "zookeeper-server": "results/zookeeper-server/conf_params.txt", - "alluxio-core": "results/alluxio-core/conf_params.txt" + "alluxio-core": "results/alluxio-core/conf_params.txt", + "hadoop-yarn-common": "results/hadoop-yarn-common/conf_params.txt", } SUREFIRE_SUBDIR = "target/surefire-reports/*" @@ -63,7 +67,10 @@ os.path.join(CTEST_ALLUXIO_DIR, "core/server/proxy", SUREFIRE_SUBDIR), os.path.join(CTEST_ALLUXIO_DIR, "core/server/worker", SUREFIRE_SUBDIR), os.path.join(CTEST_ALLUXIO_DIR, "core/server/master", SUREFIRE_SUBDIR) - ] + ], + "hadoop-yarn-common": [ + os.path.join(CTEST_HADOOP_DIR, SRC_SUBDIR["hadoop-yarn-common"], SUREFIRE_SUBDIR) + ], } LOCAL_SUREFIRE_SUFFIX = "surefire-reports/*" @@ -83,5 +90,8 @@ ], "alluxio-core": [ os.path.join("surefire-reports/alluxio-core", LOCAL_SUREFIRE_SUFFIX) - ] + ], + "hadoop-yarn-common": [ + os.path.join("surefire-reports/yarn/hadoop-yarn", LOCAL_SUREFIRE_SUFFIX) + ], } From d547796d5769bcaa8f07ab622a55be8057a84130 Mon Sep 17 00:00:00 2001 From: yuanfei2 Date: Wed, 30 Nov 2022 22:01:32 -0600 Subject: [PATCH 03/15] add yarn-common-default.tsv and conf_params.txt --- .../hadoop-yarn-common-default.tsv | 574 ++++++++++++++++++ .../hadoop-yarn-common/conf_params.txt | 459 ++++++++++++++ 2 files changed, 1033 insertions(+) create mode 100644 core/default_configs/hadoop-yarn-common-default.tsv create mode 100644 core/identify_param/results/hadoop-yarn-common/conf_params.txt diff --git a/core/default_configs/hadoop-yarn-common-default.tsv b/core/default_configs/hadoop-yarn-common-default.tsv new file mode 100644 index 00000000..3ac1c9a8 --- /dev/null +++ b/core/default_configs/hadoop-yarn-common-default.tsv @@ -0,0 +1,574 @@ +yarn.ipc.client.factory.class Factory to create client IPC classes. +yarn.ipc.server.factory.class Factory to create server IPC classes. +yarn.ipc.record.factory.class Factory to create serializeable records. +yarn.ipc.rpc.class org.apache.hadoop.yarn.ipc.HadoopYarnProtoRPC RPC class implementation +yarn.resourcemanager.hostname 0.0.0.0 The hostname of the RM. +yarn.resourcemanager.address ${yarn.resourcemanager.hostname}:8032 The address of the applications manager interface in the RM. +yarn.resourcemanager.bind-host The actual address the server will bind to. If this optional address is set, the RPC and webapp servers will bind to this address and the port specified in yarn.resourcemanager.address and yarn.resourcemanager.webapp.address, respectively. This is most useful for making RM listen to all interfaces by setting to 0.0.0.0. +yarn.resourcemanager.auto-update.containers false If set to true, then ALL container updates will be automatically sent to the NM in the next heartbeat +yarn.resourcemanager.client.thread-count 50 The number of threads used to handle applications manager requests. +yarn.resourcemanager.amlauncher.thread-count 50 Number of threads used to launch/cleanup AM. +yarn.resourcemanager.nodemanager-connect-retries 10 Retry times to connect with NM. +yarn.dispatcher.drain-events.timeout 300000 Timeout in milliseconds when YARN dispatcher tries to drain the events. Typically, this happens when service is stopping. e.g. RM drains the ATS events dispatcher when stopping. +yarn.dispatcher.print-events-info.threshold 5000 The threshold used to trigger the logging of event types and counts in RM's main event dispatcher. Default length is 5000, which means RM will print events info when the queue size cumulatively reaches 5000 every time. Such info can be used to reveal what kind of events that RM is stuck at processing mostly, it can help to narrow down certain performance issues. +yarn.dispatcher.cpu-monitor.samples-per-min 60 Resource manager dispatcher thread cpu monitor sampling rate. Units are samples per minute. This controls how often to sample the cpu utilization of the resource manager dispatcher thread. The cpu utilization is displayed on the RM UI as scheduler busy %. Set this to zero to disable the dispatcher thread monitor. Defaults to 60 samples per minute. +yarn.dispatcher.print-thread-pool.core-pool-size 1 Resource manager dispatcher has a thread pool that prints EventQueue, configure the corePoolSize of this thread pool, the meaning of corePoolSize is the number of threads to keep in the pool. the default value is 1. +yarn.dispatcher.print-thread-pool.maximum-pool-size 5 Resource manager dispatcher has a thread pool that prints EventQueue, configure the maximumPoolSize of this thread pool, the meaning of maximumPoolSize is the maximum number of threads to allow in the pool. the default value is 5. +yarn.dispatcher.print-thread-pool.keep-alive-time 10s Resource manager dispatcher has a thread pool that prints EventQueue, configure the keepAliveTime of this thread pool, The meaning of keepAliveTime is as follows when the number of threads is greater than the core, this is the maximum time that excess idle threads will wait for new tasks before terminating. the default value is 10s. +yarn.am.liveness-monitor.expiry-interval-ms 600000 The expiry interval for application master reporting. +yarn.resourcemanager.principal The Kerberos principal for the resource manager. +yarn.resourcemanager.scheduler.address ${yarn.resourcemanager.hostname}:8030 The address of the scheduler interface. +yarn.resourcemanager.scheduler.client.thread-count 50 Number of threads to handle scheduler interface. +yarn.resourcemanager.placement-constraints.handler disabled Specify which handler will be used to process PlacementConstraints. Acceptable values are: `placement-processor`, `scheduler` and `disabled`. For a detailed explanation of these values, please refer to documentation. +yarn.resourcemanager.placement-constraints.retry-attempts 3 Number of times to retry placing of rejected SchedulingRequests +yarn.resourcemanager.placement-constraints.algorithm.class org.apache.hadoop.yarn.server.resourcemanager.scheduler.constraint.algorithm.DefaultPlacementAlgorithm Constraint Placement Algorithm to be used. +yarn.resourcemanager.placement-constraints.algorithm.iterator SERIAL Placement Algorithm Requests Iterator to be used. +yarn.resourcemanager.placement-constraints.algorithm.pool-size 1 Threadpool size for the Algorithm used for placement constraint processing. +yarn.resourcemanager.placement-constraints.scheduler.pool-size 1 Threadpool size for the Scheduler invocation phase of placement constraint processing. +yarn.resourcemanager.application-master-service.processors Comma separated class names of ApplicationMasterServiceProcessor implementations. The processors will be applied in the order they are specified. +yarn.http.policy HTTP_ONLY This configures the HTTP endpoint for YARN Daemons.The following values are supported: - HTTP_ONLY : Service is provided only on http - HTTPS_ONLY : Service is provided only on https +yarn.resourcemanager.webapp.address ${yarn.resourcemanager.hostname}:8088 The http address of the RM web application. If only a host is provided as the value, the webapp will be served on a random port. +yarn.resourcemanager.webapp.https.address ${yarn.resourcemanager.hostname}:8090 The https address of the RM web application. If only a host is provided as the value, the webapp will be served on a random port. +yarn.resourcemanager.webapp.spnego-keytab-file The Kerberos keytab file to be used for spnego filter for the RM web interface. +yarn.resourcemanager.webapp.spnego-principal The Kerberos principal to be used for spnego filter for the RM web interface. +yarn.resourcemanager.webapp.ui-actions.enabled true Add button to kill application in the RM Application view. +yarn.webapp.ui2.enable false To enable RM web ui2 application. +yarn.webapp.ui1.tools.enable true Enable tools section in all ui1 webapp. +yarn.webapp.ui2.war-file-path Explicitly provide WAR file path for ui2 if needed. +yarn.webapp.api-service.enable false Enable services rest api on ResourceManager. +yarn.resourcemanager.resource-tracker.address ${yarn.resourcemanager.hostname}:8031 +yarn.resourcemanager.resource-tracker.nm.ip-hostname-check false +yarn.acl.enable false Are acls enabled. +yarn.acl.reservation-enable false Are reservation acls enabled. +yarn.admin.acl * ACL of who can be admin of the YARN cluster. +yarn.resourcemanager.admin.address ${yarn.resourcemanager.hostname}:8033 The address of the RM admin interface. +yarn.resourcemanager.admin.client.thread-count 1 Number of threads used to handle RM admin interface. +yarn.resourcemanager.connect.max-wait.ms 900000 Maximum time to wait to establish connection to ResourceManager. +yarn.resourcemanager.connect.retry-interval.ms 30000 How often to try connecting to the ResourceManager. +yarn.resourcemanager.am.max-attempts 2 The default maximum number of application attempts, if unset by the user. Each application master can specify its individual maximum number of application attempts via the API, but the individual number cannot be more than the global upper bound in yarn.resourcemanager.am.global.max-attempts. The default number is set to 2, to allow at least one retry for AM. +yarn.resourcemanager.container.liveness-monitor.interval-ms 600000 How often to check that containers are still alive. +yarn.resourcemanager.keytab /etc/krb5.keytab The keytab for the resource manager. +yarn.resourcemanager.webapp.delegation-token-auth-filter.enabled true Flag to enable override of the default kerberos authentication filter with the RM authentication filter to allow authentication using delegation tokens(fallback to kerberos if the tokens are missing). Only applicable when the http authentication type is kerberos. +yarn.resourcemanager.webapp.cross-origin.enabled false Flag to enable cross-origin (CORS) support in the RM. This flag requires the CORS filter initializer to be added to the filter initializers list in core-site.xml. +yarn.nm.liveness-monitor.expiry-interval-ms 600000 How long to wait until a node manager is considered dead. +yarn.resourcemanager.nodes.include-path Path to file with nodes to include. +yarn.resourcemanager.nodes.exclude-path Path to file with nodes to exclude. +yarn.resourcemanager.node-ip-cache.expiry-interval-secs -1 The expiry interval for node IP caching. -1 disables the caching +yarn.resourcemanager.resource-tracker.client.thread-count 50 Number of threads to handle resource tracker calls. +yarn.resourcemanager.scheduler.class org.apache.hadoop.yarn.server.resourcemanager.scheduler.capacity.CapacityScheduler The class to use as the resource scheduler. +yarn.scheduler.minimum-allocation-mb 1024 The minimum allocation for every container request at the RM in MBs. Memory requests lower than this will be set to the value of this property. Additionally, a node manager that is configured to have less memory than this value will be shut down by the resource manager. +yarn.scheduler.maximum-allocation-mb 8192 The maximum allocation for every container request at the RM in MBs. Memory requests higher than this will throw an InvalidResourceRequestException. +yarn.scheduler.minimum-allocation-vcores 1 The minimum allocation for every container request at the RM in terms of virtual CPU cores. Requests lower than this will be set to the value of this property. Additionally, a node manager that is configured to have fewer virtual cores than this value will be shut down by the resource manager. +yarn.scheduler.maximum-allocation-vcores 4 The maximum allocation for every container request at the RM in terms of virtual CPU cores. Requests higher than this will throw an InvalidResourceRequestException. +yarn.scheduler.include-port-in-node-name false Used by node labels. If set to true, the port should be included in the node name. Only usable if your scheduler supports node labels. +yarn.resourcemanager.recovery.enabled false Enable RM to recover state after starting. If true, then yarn.resourcemanager.store.class must be specified. +yarn.resourcemanager.fail-fast ${yarn.fail-fast} Should RM fail fast if it encounters any errors. By defalt, it points to ${yarn.fail-fast}. Errors include: 1) exceptions when state-store write/read operations fails. +yarn.fail-fast false Should YARN fail fast if it encounters any errors. This is a global config for all other components including RM,NM etc. If no value is set for component-specific config (e.g yarn.resourcemanager.fail-fast), this value will be the default. +yarn.resourcemanager.work-preserving-recovery.enabled true Enable RM work preserving recovery. This configuration is private to YARN for experimenting the feature. +yarn.resourcemanager.work-preserving-recovery.scheduling-wait-ms 10000 Set the amount of time RM waits before allocating new containers on work-preserving-recovery. Such wait period gives RM a chance to settle down resyncing with NMs in the cluster on recovery, before assigning new containers to applications. +yarn.resourcemanager.store.class org.apache.hadoop.yarn.server.resourcemanager.recovery.FileSystemRMStateStore The class to use as the persistent store. If org.apache.hadoop.yarn.server.resourcemanager.recovery.ZKRMStateStore is used, the store is implicitly fenced; meaning a single ResourceManager is able to use the store at any point in time. More details on this implicit fencing, along with setting up appropriate ACLs is discussed under yarn.resourcemanager.zk-state-store.root-node.acl. +yarn.resourcemanager.ha.failover-controller.active-standby-elector.zk.retries When automatic failover is enabled, number of zookeeper operation retry times in ActiveStandbyElector +yarn.resourcemanager.state-store.max-completed-applications ${yarn.resourcemanager.max-completed-applications} The maximum number of completed applications RM state store keeps, less than or equals to ${yarn.resourcemanager.max-completed-applications}. By default, it equals to ${yarn.resourcemanager.max-completed-applications}. This ensures that the applications kept in the state store are consistent with the applications remembered in RM memory. Any values larger than ${yarn.resourcemanager.max-completed-applications} will be reset to ${yarn.resourcemanager.max-completed-applications}. Note that this value impacts the RM recovery performance. Typically, a smaller value indicates better performance on RM recovery. +yarn.resourcemanager.zk-state-store.parent-path /rmstore Full path of the ZooKeeper znode where RM state will be stored. This must be supplied when using org.apache.hadoop.yarn.server.resourcemanager.recovery.ZKRMStateStore as the value for yarn.resourcemanager.store.class +yarn.resourcemanager.zk-state-store.root-node.acl ACLs to be used for the root znode when using ZKRMStateStore in an HA scenario for fencing. ZKRMStateStore supports implicit fencing to allow a single ResourceManager write-access to the store. For fencing, the ResourceManagers in the cluster share read-write-admin privileges on the root node, but the Active ResourceManager claims exclusive create-delete permissions. By default, when this property is not set, we use the ACLs from yarn.resourcemanager.zk-acl for shared admin access and rm-address:random-number for username-based exclusive create-delete access. This property allows users to set ACLs of their choice instead of using the default mechanism. For fencing to work, the ACLs should be carefully set differently on each ResourceManager such that all the ResourceManagers have shared admin access and the Active ResourceManager takes over (exclusively) the create-delete access. +yarn.resourcemanager.fs.state-store.uri ${hadoop.tmp.dir}/yarn/system/rmstore URI pointing to the location of the FileSystem path where RM state will be stored. This must be supplied when using org.apache.hadoop.yarn.server.resourcemanager.recovery.FileSystemRMStateStore as the value for yarn.resourcemanager.store.class +yarn.resourcemanager.fs.state-store.num-retries 0 the number of retries to recover from IOException in FileSystemRMStateStore. +yarn.resourcemanager.fs.state-store.retry-interval-ms 1000 Retry interval in milliseconds in FileSystemRMStateStore. +yarn.resourcemanager.leveldb-state-store.path ${hadoop.tmp.dir}/yarn/system/rmstore Local path where the RM state will be stored when using org.apache.hadoop.yarn.server.resourcemanager.recovery.LeveldbRMStateStore as the value for yarn.resourcemanager.store.class +yarn.resourcemanager.leveldb-state-store.compaction-interval-secs 3600 The time in seconds between full compactions of the leveldb database. Setting the interval to zero disables the full compaction cycles. +yarn.resourcemanager.ha.enabled false Enable RM high-availability. When enabled, (1) The RM starts in the Standby mode by default, and transitions to the Active mode when prompted to. (2) The nodes in the RM ensemble are listed in yarn.resourcemanager.ha.rm-ids (3) The id of each RM either comes from yarn.resourcemanager.ha.id if yarn.resourcemanager.ha.id is explicitly specified or can be figured out by matching yarn.resourcemanager.address.{id} with local address (4) The actual physical addresses come from the configs of the pattern - {rpc-config}.{id} +yarn.resourcemanager.ha.automatic-failover.enabled true Enable automatic failover. By default, it is enabled only when HA is enabled +yarn.resourcemanager.ha.automatic-failover.embedded true Enable embedded automatic failover. By default, it is enabled only when HA is enabled. The embedded elector relies on the RM state store to handle fencing, and is primarily intended to be used in conjunction with ZKRMStateStore. +yarn.resourcemanager.ha.automatic-failover.zk-base-path /yarn-leader-election The base znode path to use for storing leader information, when using ZooKeeper based leader election. +yarn.resourcemanager.zk-appid-node.split-index 0 Index at which last section of application id (with each section separated by _ in application id) will be split so that application znode stored in zookeeper RM state store will be stored as two different znodes (parent-child). Split is done from the end. For instance, with no split, appid znode will be of the form application_1352994193343_0001. If the value of this config is 1, the appid znode will be broken into two parts application_1352994193343_000 and 1 respectively with former being the parent node. application_1352994193343_0002 will then be stored as 2 under the parent node application_1352994193343_000. This config can take values from 0 to 4. 0 means there will be no split. If configuration value is outside this range, it will be treated as config value of 0(i.e. no split). A value larger than 0 (up to 4) should be configured if you are storing a large number of apps in ZK based RM state store and state store operations are failing due to LenError in Zookeeper. +yarn.resourcemanager.zk-delegation-token-node.split-index 0 Index at which the RM Delegation Token ids will be split so that the delegation token znodes stored in the zookeeper RM state store will be stored as two different znodes (parent-child). The split is done from the end. For instance, with no split, a delegation token znode will be of the form RMDelegationToken_123456789. If the value of this config is 1, the delegation token znode will be broken into two parts: RMDelegationToken_12345678 and 9 respectively with former being the parent node. This config can take values from 0 to 4. 0 means there will be no split. If the value is outside this range, it will be treated as 0 (i.e. no split). A value larger than 0 (up to 4) should be configured if you are running a large number of applications, with long-lived delegation tokens and state store operations (e.g. failover) are failing due to LenError in Zookeeper. +yarn.resourcemanager.zk-max-znode-size.bytes 1048576 Specifies the maximum size of the data that can be stored in a znode. Value should be same or less than jute.maxbuffer configured in zookeeper. Default value configured is 1MB. +yarn.resourcemanager.cluster-id Name of the cluster. In a HA setting, this is used to ensure the RM participates in leader election for this cluster and ensures it does not affect other clusters +yarn.resourcemanager.epoch.range 0 The range of values above base epoch that the RM will use before wrapping around +yarn.resourcemanager.ha.rm-ids The list of RM nodes in the cluster when HA is enabled. See description of yarn.resourcemanager.ha .enabled for full details on how this is used. +yarn.resourcemanager.ha.id The id (string) of the current RM. When HA is enabled, this is an optional config. The id of current RM can be set by explicitly specifying yarn.resourcemanager.ha.id or figured out by matching yarn.resourcemanager.address.{id} with local address See description of yarn.resourcemanager.ha.enabled for full details on how this is used. +yarn.client.failover-proxy-provider org.apache.hadoop.yarn.client.ConfiguredRMFailoverProxyProvider When HA is enabled, the class to be used by Clients, AMs and NMs to failover to the Active RM. It should extend org.apache.hadoop.yarn.client.RMFailoverProxyProvider +yarn.client.failover-no-ha-proxy-provider org.apache.hadoop.yarn.client.DefaultNoHARMFailoverProxyProvider When HA is not enabled, the class to be used by Clients, AMs and NMs to retry connecting to the Active RM. It should extend org.apache.hadoop.yarn.client.RMFailoverProxyProvider +yarn.client.failover-max-attempts When HA is enabled, the max number of times FailoverProxyProvider should attempt failover. When set, this overrides the yarn.resourcemanager.connect.max-wait.ms. When not set, this is inferred from yarn.resourcemanager.connect.max-wait.ms. +yarn.client.failover-sleep-base-ms When HA is enabled, the sleep base (in milliseconds) to be used for calculating the exponential delay between failovers. When set, this overrides the yarn.resourcemanager.connect.* settings. When not set, yarn.resourcemanager.connect.retry-interval.ms is used instead. +yarn.client.failover-sleep-max-ms When HA is enabled, the maximum sleep time (in milliseconds) between failovers. When set, this overrides the yarn.resourcemanager.connect.* settings. When not set, yarn.resourcemanager.connect.retry-interval.ms is used instead. +yarn.client.failover-retries 0 When HA is enabled, the number of retries per attempt to connect to a ResourceManager. In other words, it is the ipc.client.connect.max.retries to be used during failover attempts +yarn.client.failover-retries-on-socket-timeouts 0 When HA is enabled, the number of retries per attempt to connect to a ResourceManager on socket timeouts. In other words, it is the ipc.client.connect.max.retries.on.timeouts to be used during failover attempts +yarn.resourcemanager.max-completed-applications 1000 The maximum number of completed applications RM keeps. +yarn.resourcemanager.delayed.delegation-token.removal-interval-ms 30000 Interval at which the delayed token removal thread runs +yarn.resourcemanager.delegation-token.max-conf-size-bytes 12800 Maximum size in bytes for configurations that can be provided by application to RM for delegation token renewal. By experiment, its roughly 128 bytes per key-value pair. The default value 12800 allows roughly 100 configs, may be less. +yarn.resourcemanager.delegation-token.always-cancel false If true, ResourceManager will always try to cancel delegation tokens after the application completes, even if the client sets shouldCancelAtEnd false. References to delegation tokens are tracked, so they will not be canceled until all sub-tasks are done using them. +yarn.resourcemanager.proxy-user-privileges.enabled false If true, ResourceManager will have proxy-user privileges. Use case: In a secure cluster, YARN requires the user hdfs delegation-tokens to do localization and log-aggregation on behalf of the user. If this is set to true, ResourceManager is able to request new hdfs delegation tokens on behalf of the user. This is needed by long-running-service, because the hdfs tokens will eventually expire and YARN requires new valid tokens to do localization and log-aggregation. Note that to enable this use case, the corresponding HDFS NameNode has to configure ResourceManager as the proxy-user so that ResourceManager can itself ask for new tokens on behalf of the user when tokens are past their max-life-time. +yarn.resourcemanager.am-rm-tokens.master-key-rolling-interval-secs 86400 Interval for the roll over for the master key used to generate application tokens +yarn.resourcemanager.container-tokens.master-key-rolling-interval-secs 86400 Interval for the roll over for the master key used to generate container tokens. It is expected to be much greater than yarn.nm.liveness-monitor.expiry-interval-ms and yarn.resourcemanager.rm.container-allocation.expiry-interval-ms. Otherwise the behavior is undefined. +yarn.resourcemanager.nodemanagers.heartbeat-interval-ms 1000 The heart-beat interval in milliseconds for every NodeManager in the cluster. +yarn.resourcemanager.nodemanagers.heartbeat-interval-scaling-enable false Enables heart-beat interval scaling. The NodeManager heart-beat interval will scale based on the difference between the CPU utilization on the node and the cluster-wide average CPU utilization. +yarn.resourcemanager.nodemanagers.heartbeat-interval-min-ms 1000 If heart-beat interval scaling is enabled, this is the minimum heart-beat interval in milliseconds +yarn.resourcemanager.nodemanagers.heartbeat-interval-max-ms 1000 If heart-beat interval scaling is enabled, this is the maximum heart-beat interval in milliseconds +yarn.resourcemanager.nodemanagers.heartbeat-interval-speedup-factor 1.0 If heart-beat interval scaling is enabled, this controls the degree of adjustment when speeding up heartbeat intervals. At 1.0, 20% less than average CPU utilization will result in a 20% decrease in heartbeat interval. +yarn.resourcemanager.nodemanagers.heartbeat-interval-slowdown-factor 1.0 If heart-beat interval scaling is enabled, this controls the degree of adjustment when slowing down heartbeat intervals. At 1.0, 20% greater than average CPU utilization will result in a 20% increase in heartbeat interval. +yarn.scheduler.skip.node.multiplier 2 The Number of consecutive missed heartbeats after which node will be skipped from scheduling +yarn.resourcemanager.nodemanager.minimum.version NONE The minimum allowed version of a connecting nodemanager. The valid values are NONE (no version checking), EqualToRM (the nodemanager's version is equal to or greater than the RM version), or a Version String. +yarn.resourcemanager.scheduler.monitor.enable false Enable a set of periodic monitors (specified in yarn.resourcemanager.scheduler.monitor.policies) that affect the scheduler. +yarn.resourcemanager.scheduler.monitor.policies org.apache.hadoop.yarn.server.resourcemanager.monitor.capacity.ProportionalCapacityPreemptionPolicy The list of SchedulingEditPolicy classes that interact with the scheduler. A particular module may be incompatible with the scheduler, other policies, or a configuration of either. +yarn.resourcemanager.configuration.provider-class org.apache.hadoop.yarn.LocalConfigurationProvider The class to use as the configuration provider. If org.apache.hadoop.yarn.LocalConfigurationProvider is used, the local configuration will be loaded. If org.apache.hadoop.yarn.FileSystemBasedConfigurationProvider is used, the configuration which will be loaded should be uploaded to remote File system first. +yarn.resourcemanager.configuration.file-system-based-store /yarn/conf The value specifies the file system (e.g. HDFS) path where ResourceManager loads configuration if yarn.resourcemanager.configuration.provider-class is set to org.apache.hadoop.yarn.FileSystemBasedConfigurationProvider. +yarn.resourcemanager.system-metrics-publisher.enabled false The setting that controls whether yarn system metrics is published to the Timeline server (version one) or not, by RM. This configuration is now deprecated in favor of yarn.system-metrics-publisher.enabled. +yarn.system-metrics-publisher.enabled false The setting that controls whether yarn system metrics is published on the Timeline service or not by RM And NM. +yarn.rm.system-metrics-publisher.emit-container-events false The setting that controls whether yarn container events are published to the timeline service or not by RM. This configuration setting is for ATS V2. +yarn.resourcemanager.system-metrics-publisher.dispatcher.pool-size 10 Number of worker threads that send the yarn system metrics data. +yarn.resourcemanager.system-metrics-publisher.timeline-server-v1.enable-batch false This setting enables/disables timeline server v1 publisher to publish timeline events in batch. +yarn.resourcemanager.system-metrics-publisher.timeline-server-v1.batch-size 1000 The size of timeline server v1 publisher sending events in one request. +yarn.resourcemanager.system-metrics-publisher.timeline-server-v1.interval-seconds 60 When enable batch publishing in timeline server v1, we must avoid that the publisher waits for a batch to be filled up and hold events in buffer for long time. So we add another thread which send event's in the buffer periodically. This config sets the interval of the cyclical sending thread. +yarn.resourcemanager.max-log-aggregation-diagnostics-in-memory 10 Number of diagnostics/failure messages can be saved in RM for log aggregation. It also defines the number of diagnostics/failure messages can be shown in log aggregation web ui. +yarn.resourcemanager.delegation-token-renewer.thread-count 50 RM DelegationTokenRenewer thread count +yarn.resourcemanager.delegation.key.update-interval 86400000 RM secret key update interval in ms +yarn.resourcemanager.delegation.token.max-lifetime 604800000 RM delegation token maximum lifetime in ms +yarn.resourcemanager.delegation.token.renew-interval 86400000 RM delegation token update interval in ms +yarn.resourcemanager.delegation.token.remove-scan-interval 1h This configuration is used for how often the tokens are scanned for expired tokens in milliseconds. the background thread(delegation token remover thread) will delete expired tokens after the configured time. the default value is 1h. +yarn.resourcemanager.delegation-token-renewer.thread-timeout 60s RM DelegationTokenRenewer thread timeout +yarn.resourcemanager.delegation-token-renewer.thread-retry-max-attempts 10 Default maximum number of retries for each RM DelegationTokenRenewer thread +yarn.resourcemanager.delegation-token-renewer.thread-retry-interval 60s Time interval between each RM DelegationTokenRenewer thread retry attempt +yarn.resourcemanager.history-writer.multi-threaded-dispatcher.pool-size 10 Thread pool size for RMApplicationHistoryWriter. +yarn.resourcemanager.metrics.runtime.buckets 60,300,1440 Comma-separated list of values (in minutes) for schedule queue related metrics. +yarn.resourcemanager.nm-tokens.master-key-rolling-interval-secs 86400 Interval for the roll over for the master key used to generate NodeManager tokens. It is expected to be set to a value much larger than yarn.nm.liveness-monitor.expiry-interval-ms. +yarn.resourcemanager.reservation-system.enable false Flag to enable the ResourceManager reservation system. +yarn.resourcemanager.reservation-system.class The Java class to use as the ResourceManager reservation system. By default, is set to org.apache.hadoop.yarn.server.resourcemanager.reservation.CapacityReservationSystem when using CapacityScheduler and is set to org.apache.hadoop.yarn.server.resourcemanager.reservation.FairReservationSystem when using FairScheduler. +yarn.resourcemanager.reservation-system.plan.follower The plan follower policy class name to use for the ResourceManager reservation system. By default, is set to org.apache.hadoop.yarn.server.resourcemanager.reservation.CapacitySchedulerPlanFollower is used when using CapacityScheduler, and is set to org.apache.hadoop.yarn.server.resourcemanager.reservation.FairSchedulerPlanFollower when using FairScheduler. +yarn.resourcemanager.reservation-system.planfollower.time-step 1000 Step size of the reservation system in ms +yarn.resourcemanager.rm.container-allocation.expiry-interval-ms 600000 The expiry interval for a container +yarn.resourcemanager.resource-profiles.enabled false Flag to enable/disable resource profiles +yarn.resourcemanager.resource-profiles.source-file resource-profiles.json If resource profiles is enabled, source file for the profiles +yarn.nodemanager.hostname 0.0.0.0 The hostname of the NM. +yarn.nodemanager.address ${yarn.nodemanager.hostname}:0 The address of the container manager in the NM. +yarn.nodemanager.bind-host The actual address the server will bind to. If this optional address is set, the RPC and webapp servers will bind to this address and the port specified in yarn.nodemanager.address and yarn.nodemanager.webapp.address, respectively. This is most useful for making NM listen to all interfaces by setting to 0.0.0.0. +yarn.nodemanager.admin-env MALLOC_ARENA_MAX=$MALLOC_ARENA_MAX Environment variables that should be forwarded from the NodeManager's environment to the container's, specified as a comma separated list of VARNAME=value pairs. To define environment variables individually, you can specify multiple properties of the form yarn.nodemanager.admin-env.VARNAME, where VARNAME is the name of the environment variable. This is the only way to add a variable when its value contains commas. +yarn.nodemanager.force.path * PATH components that will be prepended to the user's path. * If this is defined and the user does not define PATH, NM will also * append ":$PATH" to prevent this from eclipsing the PATH defined in * the container. This feature is only available for Linux. +yarn.nodemanager.env-whitelist JAVA_HOME,HADOOP_COMMON_HOME,HADOOP_HDFS_HOME,HADOOP_CONF_DIR,CLASSPATH_PREPEND_DISTCACHE,HADOOP_YARN_HOME,HADOOP_HOME,PATH,LANG,TZ Environment variables that containers may override rather than use NodeManager's default. +yarn.nodemanager.container-executor.class org.apache.hadoop.yarn.server.nodemanager.DefaultContainerExecutor who will execute(launch) the containers. +yarn.nodemanager.container-state-transition-listener.classes Comma separated List of container state transition listeners. +yarn.nodemanager.container-manager.thread-count 20 Number of threads container manager uses. +yarn.nodemanager.collector-service.thread-count 5 Number of threads collector service uses. +yarn.nodemanager.delete.thread-count 4 Number of threads used in cleanup. +yarn.nodemanager.container-executor.exit-code-file.timeout-ms 2000 How long the container executor should wait for the exit code file to appear after a reacquired container has exited. +yarn.nodemanager.opportunistic-containers-queue-policy BY_QUEUE_LEN At the NM, the policy to determine whether to queue an OPPORTUNISTIC container or not. If set to BY_QUEUE_LEN, uses the queue capacity, as set by yarn.nodemanager.opportunistic-containers-max-queue-length to limit how many containers to accept/queue. If set to BY_RESOURCES, limits the number of containers accepted based on the resource capacity of the node. +yarn.nodemanager.opportunistic-containers-max-queue-length 0 Max number of OPPORTUNISTIC containers to queue at the nodemanager (NM). If the value is 0 or negative, NMs do not allow any OPPORTUNISTIC containers. If the value is positive, the NM caps the number of OPPORTUNISTIC containers that can be queued at the NM. +yarn.nodemanager.delete.debug-delay-sec 0 Number of seconds after an application finishes before the nodemanager's DeletionService will delete the application's localized file directory and log directory. To diagnose YARN application problems, set this property's value large enough (for example, to 600 = 10 minutes) to permit examination of these directories. After changing the property's value, you must restart the nodemanager in order for it to have an effect. The roots of YARN applications' work directories is configurable with the yarn.nodemanager.local-dirs property (see below), and the roots of the YARN applications' log directories is configurable with the yarn.nodemanager.log-dirs property (see also below). +yarn.nodemanager.keytab /etc/krb5.keytab Keytab for NM. +yarn.nodemanager.local-dirs ${hadoop.tmp.dir}/nm-local-dir List of directories to store localized files in. An application's localized file directory will be found in: ${yarn.nodemanager.local-dirs}/usercache/${user}/appcache/application_${appid}. Individual containers' work directories, called container_${contid}, will be subdirectories of this. +yarn.nodemanager.local-cache.max-files-per-directory 8192 It limits the maximum number of files which will be localized in a single local directory. If the limit is reached then sub-directories will be created and new files will be localized in them. If it is set to a value less than or equal to 36 [which are sub-directories (0-9 and then a-z)] then NodeManager will fail to start. For example; [for public cache] if this is configured with a value of 40 ( 4 files + 36 sub-directories) and the local-dir is "/tmp/local-dir1" then it will allow 4 files to be created directly inside "/tmp/local-dir1/filecache". For files that are localized further it will create a sub-directory "0" inside "/tmp/local-dir1/filecache" and will localize files inside it until it becomes full. If a file is removed from a sub-directory that is marked full, then that sub-directory will be used back again to localize files. +yarn.nodemanager.localizer.address ${yarn.nodemanager.hostname}:8040 Address where the localizer IPC is. +yarn.nodemanager.collector-service.address ${yarn.nodemanager.hostname}:8048 Address where the collector service IPC is. +yarn.nodemanager.emit-container-events true The setting that controls whether yarn container events are published to the timeline service or not by NM. This configuration setting is for ATS V2. +yarn.nodemanager.localizer.cache.cleanup.interval-ms 600000 Interval in between cache cleanups. +yarn.nodemanager.localizer.cache.target-size-mb 10240 Target size of localizer cache in MB, per nodemanager. It is a target retention size that only includes resources with PUBLIC and PRIVATE visibility and excludes resources with APPLICATION visibility +yarn.nodemanager.localizer.client.thread-count 5 Number of threads to handle localization requests. +yarn.nodemanager.localizer.fetch.thread-count 4 Number of threads to use for localization fetching. +yarn.nodemanager.container-localizer.java.opts -Xmx256m +yarn.nodemanager.container-localizer.log.level INFO The log level for container localizer while it is an independent process. +yarn.nodemanager.log-dirs ${yarn.log.dir}/userlogs Where to store container logs. An application's localized log directory will be found in ${yarn.nodemanager.log-dirs}/application_${appid}. Individual containers' log directories will be below this, in directories named container_{$contid}. Each container directory will contain the files stderr, stdin, and syslog generated by that container. +yarn.nodemanager.default-container-executor.log-dirs.permissions 710 The permissions settings used for the creation of container directories when using DefaultContainerExecutor. This follows standard user/group/all permissions format. +yarn.log-aggregation-enable false Whether to enable log aggregation. Log aggregation collects each container's logs and moves these logs onto a file-system, for e.g. HDFS, after the application completes. Users can configure the "yarn.nodemanager.remote-app-log-dir" and "yarn.nodemanager.remote-app-log-dir-suffix" properties to determine where these logs are moved to. Users can access the logs via the Application Timeline Server. +yarn.resourcemanager.application-tag-based-placement.enable false Whether to enable application placement based on user ID passed via application tags. When it is enabled, userid=<userId> pattern will be checked and if found, the application will be placed onto the found user's queue, if the original user has enough rights on the passed user's queue. +yarn.resourcemanager.application-tag-based-placement.username.whitelist Comma separated list of users who can use the application tag based placement, if it is enabled. +yarn.log-aggregation.retain-seconds -1 How long to keep aggregation logs before deleting them. -1 disables. Be careful set this too small and you will spam the name node. +yarn.log-aggregation.retain-check-interval-seconds -1 How long to wait between aggregated log retention checks. If set to 0 or a negative value then the value is computed as one-tenth of the aggregated log retention time. Be careful set this too small and you will spam the name node. +yarn.log-aggregation.debug.filesize 104857600 The log files created under NM Local Directories will be logged if it exceeds the configured bytes. This only takes effect if log4j level is at least Debug. +yarn.log-aggregation.file-formats TFile Specify which log file controllers we will support. The first file controller we add will be used to write the aggregated logs. This comma separated configuration will work with the configuration: yarn.log-aggregation.file-controller.%s.class which defines the supported file controller's class. By default, the TFile controller would be used. The user could override this configuration by adding more file controllers. To support back-ward compatibility, make sure that we always add TFile file controller. +yarn.log-aggregation.file-controller.TFile.class org.apache.hadoop.yarn.logaggregation.filecontroller.tfile.LogAggregationTFileController Class that supports TFile read and write operations. +yarn.log-aggregation-status.time-out.ms 600000 How long for ResourceManager to wait for NodeManager to report its log aggregation status. If waiting time of which the log aggregation status is reported from NodeManager exceeds the configured value, RM will report log aggregation status for this NodeManager as TIME_OUT. This configuration will be used in NodeManager as well to decide whether and when to delete the cached log aggregation status. +yarn.log-aggregation.enable-local-cleanup true Whether to clean up nodemanager logs when log aggregation is enabled. Setting to false disables the cleanup nodemanager logging, and it causes disk full in the long run. Users can set to false for test-only purpose. +yarn.nodemanager.log.retain-seconds 10800 Time in seconds to retain user logs. Only applicable if log aggregation is disabled +yarn.nodemanager.remote-app-log-dir /tmp/logs Where to aggregate logs to. +yarn.nodemanager.remote-app-log-dir-suffix logs The remote log dir will be created at {yarn.nodemanager.remote-app-log-dir}/${user}/{thisParam} +yarn.nodemanager.remote-app-log-dir-include-older true If set to true, the older application log directory will be considered while fetching application logs. +yarn.nodemanager.remote-app-log-dir.groupname If the NodeManager creates the remote-app-log-dir folder, it will be created with this groupname. +yarn.nodemanager.log-container-debug-info.enabled true Generate additional logs about container launches. Currently, this creates a copy of the launch script and lists the directory contents of the container work dir. When listing directory contents, we follow symlinks to a max-depth of 5(including symlinks which point to outside the container work dir) which may lead to a slowness in launching containers. +yarn.nodemanager.resource.memory-mb -1 Amount of physical memory, in MB, that can be allocated for containers. If set to -1 and yarn.nodemanager.resource.detect-hardware-capabilities is true, it is automatically calculated(in case of Windows and Linux). In other cases, the default is 8192MB. +yarn.nodemanager.resource.system-reserved-memory-mb -1 Amount of physical memory, in MB, that is reserved for non-YARN processes. This configuration is only used if yarn.nodemanager.resource.detect-hardware-capabilities is set to true and yarn.nodemanager.resource.memory-mb is -1. If set to -1, this amount is calculated as 20% of (system memory - 2*HADOOP_HEAPSIZE) +yarn.nodemanager.resource.memory.enabled false Whether YARN CGroups memory tracking is enabled. +yarn.nodemanager.resource.memory.enforced true Whether YARN CGroups strict memory enforcement is enabled. +yarn.nodemanager.resource.memory.cgroups.soft-limit-percentage 90.0 If memory limit is enforced, this the percentage of soft limit compared to the memory assigned to the container. If there is memory pressure container memory usage will be pushed back to its soft limit by swapping out memory. +yarn.nodemanager.resource.memory.cgroups.swappiness 0 Container swappiness is the likelihood a page will be swapped out compared to be kept in memory. Value is between 0-100. +yarn.nodemanager.pmem-check-enabled true Whether physical memory limits will be enforced for containers. +yarn.nodemanager.vmem-check-enabled true Whether virtual memory limits will be enforced for containers. +yarn.nodemanager.vmem-pmem-ratio 2.1 Ratio between virtual memory to physical memory when setting memory limits for containers. Container allocations are expressed in terms of physical memory, and virtual memory usage is allowed to exceed this allocation by this ratio. +yarn.nodemanager.resource.cpu-vcores -1 Number of vcores that can be allocated for containers. This is used by the RM scheduler when allocating resources for containers. This is not used to limit the number of CPUs used by YARN containers. If it is set to -1 and yarn.nodemanager.resource.detect-hardware-capabilities is true, it is automatically determined from the hardware in case of Windows and Linux. In other cases, number of vcores is 8 by default. +yarn.nodemanager.resource.count-logical-processors-as-cores false Flag to determine if logical processors(such as hyperthreads) should be counted as cores. Only applicable on Linux when yarn.nodemanager.resource.cpu-vcores is set to -1 and yarn.nodemanager.resource.detect-hardware-capabilities is true. +yarn.nodemanager.resource.pcores-vcores-multiplier 1.0 Multiplier to determine how to convert phyiscal cores to vcores. This value is used if yarn.nodemanager.resource.cpu-vcores is set to -1(which implies auto-calculate vcores) and yarn.nodemanager.resource.detect-hardware-capabilities is set to true. The number of vcores will be calculated as number of CPUs * multiplier. +yarn.nodemanager.logaggregation.threadpool-size-max 100 Thread pool size for LogAggregationService in Node Manager. +yarn.nodemanager.resource.percentage-physical-cpu-limit 100 Percentage of CPU that can be allocated for containers. This setting allows users to limit the amount of CPU that YARN containers use. Currently functional only on Linux using cgroups. The default is to use 100% of CPU. +yarn.nodemanager.resource.detect-hardware-capabilities false Enable auto-detection of node capabilities such as memory and CPU. +yarn.nodemanager.webapp.address ${yarn.nodemanager.hostname}:8042 NM Webapp address. +yarn.nodemanager.webapp.https.address 0.0.0.0:8044 The https adddress of the NM web application. +yarn.nodemanager.webapp.spnego-keytab-file The Kerberos keytab file to be used for spnego filter for the NM web interface. +yarn.nodemanager.webapp.spnego-principal The Kerberos principal to be used for spnego filter for the NM web interface. +yarn.nodemanager.resource-monitor.interval-ms 3000 How often to monitor the node and the containers. If 0 or negative, monitoring is disabled. +yarn.nodemanager.resource-calculator.class Class that calculates current resource utilization. +yarn.nodemanager.container-monitor.enabled true Enable container monitor +yarn.nodemanager.container-monitor.interval-ms How often to monitor containers. If not set, the value for yarn.nodemanager.resource-monitor.interval-ms will be used. If 0 or negative, container monitoring is disabled. +yarn.nodemanager.container-log-monitor.enable false Flag to enable the container log monitor which enforces container log directory size limits. +yarn.nodemanager.container-log-monitor.interval-ms 60000 How often to check the usage of a container's log directories in milliseconds +yarn.nodemanager.container-log-monitor.dir-size-limit-bytes 1000000000 The disk space limit, in bytes, for a single container log directory +yarn.nodemanager.container-log-monitor.total-size-limit-bytes 10000000000 The disk space limit, in bytes, for all of a container's logs +yarn.nodemanager.container-monitor.resource-calculator.class Class that calculates containers current resource utilization. If not set, the value for yarn.nodemanager.resource-calculator.class will be used. +yarn.nodemanager.health-checker.scripts script The nodemanager health check scripts to run. +yarn.nodemanager.health-checker.timeout-ms 1200000 Health check script time out period. +yarn.nodemanager.health-checker.run-before-startup false Whether or not to run the node health script before the NM starts up. +yarn.nodemanager.health-checker.interval-ms 600000 Frequency of running node health scripts. +yarn.nodemanager.disk-health-checker.interval-ms 120000 Frequency of running disk health checker code. +yarn.nodemanager.disk-health-checker.min-healthy-disks 0.25 The minimum fraction of number of disks to be healthy for the nodemanager to launch new containers. This correspond to both yarn.nodemanager.local-dirs and yarn.nodemanager.log-dirs. i.e. If there are less number of healthy local-dirs (or log-dirs) available, then new containers will not be launched on this node. +yarn.nodemanager.disk-health-checker.disk-utilization-threshold.enabled true Enable/Disable the disk utilisation percentage threshold for disk health checker. +yarn.nodemanager.disk-health-checker.disk-free-space-threshold.enabled true Enable/Disable the minimum disk free space threshold for disk health checker. +yarn.nodemanager.disk-health-checker.max-disk-utilization-per-disk-percentage 90.0 The maximum percentage of disk space utilization allowed after which a disk is marked as bad. Values can range from 0.0 to 100.0. If the value is greater than or equal to 100, the nodemanager will check for full disk. This applies to yarn.nodemanager.local-dirs and yarn.nodemanager.log-dirs when yarn.nodemanager.disk-health-checker.disk-utilization-threshold.enabled is true. +yarn.nodemanager.disk-health-checker.disk-utilization-watermark-low-per-disk-percentage The low threshold percentage of disk space used when a bad disk is marked as good. Values can range from 0.0 to 100.0. This applies to yarn.nodemanager.local-dirs and yarn.nodemanager.log-dirs. Note that if its value is more than yarn.nodemanager.disk-health-checker. max-disk-utilization-per-disk-percentage or not set, it will be set to the same value as yarn.nodemanager.disk-health-checker.max-disk-utilization-per-disk-percentage. +yarn.nodemanager.disk-health-checker.min-free-space-per-disk-mb 0 The minimum space in megabytes that must be available on a disk for it to be used. If space on a disk falls below this threshold, it will be marked as bad. This applies to yarn.nodemanager.local-dirs and yarn.nodemanager.log-dirs when yarn.nodemanager.disk-health-checker.disk-free-space-threshold.enabled is true. +yarn.nodemanager.disk-health-checker.min-free-space-per-disk-watermark-high-mb 0 The minimum space in megabytes that must be available on a bad disk for it to be marked as good. This value should not be less than yarn.nodemanager.disk-health-checker.min-free-space-per-disk-mb. If it is less than yarn.nodemanager.disk-health-checker.min-free-space-per-disk-mb, or it is not set, it will be set to the same value as yarn.nodemanager.disk-health-checker.min-free-space-per-disk-mb. This applies to yarn.nodemanager.local-dirs and yarn.nodemanager.log-dirs. +yarn.nodemanager.linux-container-executor.path The path to the Linux container executor. +yarn.nodemanager.linux-container-executor.resources-handler.class org.apache.hadoop.yarn.server.nodemanager.util.DefaultLCEResourcesHandler The class which should help the LCE handle resources. +yarn.nodemanager.linux-container-executor.cgroups.hierarchy /hadoop-yarn The cgroups hierarchy under which to place YARN proccesses (cannot contain commas). If yarn.nodemanager.linux-container-executor.cgroups.mount is false (that is, if cgroups have been pre-configured) and the YARN user has write access to the parent directory, then the directory will be created. If the directory already exists, the administrator has to give YARN write permissions to it recursively. This property only applies when the LCE resources handler is set to CgroupsLCEResourcesHandler. +yarn.nodemanager.linux-container-executor.cgroups.mount false Whether the LCE should attempt to mount cgroups if not found. This property only applies when the LCE resources handler is set to CgroupsLCEResourcesHandler. +yarn.nodemanager.linux-container-executor.cgroups.mount-path This property sets the path from which YARN will read the CGroups configuration. YARN has built-in functionality to discover the system CGroup mount paths, so use this property only if YARN's automatic mount path discovery does not work. The path specified by this property must exist before the NodeManager is launched. If yarn.nodemanager.linux-container-executor.cgroups.mount is set to true, YARN will first try to mount the CGroups at the specified path before reading them. If yarn.nodemanager.linux-container-executor.cgroups.mount is set to false, YARN will read the CGroups at the specified path. If this property is empty, YARN tries to detect the CGroups location. Please refer to NodeManagerCgroups.html in the documentation for further details. This property only applies when the LCE resources handler is set to CgroupsLCEResourcesHandler. +yarn.nodemanager.linux-container-executor.cgroups.delete-delay-ms 20 Delay in ms between attempts to remove linux cgroup +yarn.nodemanager.linux-container-executor.nonsecure-mode.limit-users true This determines which of the two modes that LCE should use on a non-secure cluster. If this value is set to true, then all containers will be launched as the user specified in yarn.nodemanager.linux-container-executor.nonsecure-mode.local-user. If this value is set to false, then containers will run as the user who submitted the application. +yarn.nodemanager.linux-container-executor.nonsecure-mode.local-user nobody The UNIX user that containers will run as when Linux-container-executor is used in nonsecure mode (a use case for this is using cgroups) if the yarn.nodemanager.linux-container-executor.nonsecure-mode.limit-users is set to true. +yarn.nodemanager.linux-container-executor.nonsecure-mode.user-pattern ^[_.A-Za-z0-9][-@_.A-Za-z0-9]{0,255}?[$]?$ The allowed pattern for UNIX user names enforced by Linux-container-executor when used in nonsecure mode (use case for this is using cgroups). The default value is taken from /usr/sbin/adduser +yarn.nodemanager.linux-container-executor.cgroups.strict-resource-usage false This flag determines whether apps should run with strict resource limits or be allowed to consume spare resources if they need them. For example, turning the flag on will restrict apps to use only their share of CPU, even if the node has spare CPU cycles. The default value is false i.e. use available resources. Please note that turning this flag on may reduce job throughput on the cluster. This setting does not apply to other subsystems like memory. +yarn.nodemanager.runtime.linux.allowed-runtimes default Comma separated list of runtimes that are allowed when using LinuxContainerExecutor. The allowed values are default, docker, runc, and javasandbox. +yarn.nodemanager.runtime.linux.type Default container runtime to use. +yarn.nodemanager.runtime.linux.docker.capabilities CHOWN,DAC_OVERRIDE,FSETID,FOWNER,MKNOD,NET_RAW,SETGID,SETUID,SETFCAP,SETPCAP,NET_BIND_SERVICE,SYS_CHROOT,KILL,AUDIT_WRITE This configuration setting determines the capabilities assigned to docker containers when they are launched. While these may not be case-sensitive from a docker perspective, it is best to keep these uppercase. To run without any capabilities, set this value to "none" or "NONE" +yarn.nodemanager.runtime.linux.docker.image-name Default docker image to be used when the docker runtime is selected. +yarn.nodemanager.runtime.linux.docker.image-update false Default option to decide whether to pull the latest image or not. +yarn.nodemanager.runtime.linux.docker.privileged-containers.allowed false This configuration setting determines if privileged docker containers are allowed on this cluster. Privileged containers are granted the complete set of capabilities and are not subject to the limitations imposed by the device cgroup controller. In other words, privileged containers can do almost everything that the host can do. Use with extreme care. +yarn.nodemanager.runtime.linux.docker.privileged-containers.acl This configuration setting determines who is allowed to run privileged docker containers on this cluster. Use with extreme care. +yarn.nodemanager.runtime.linux.docker.allowed-container-networks host,none,bridge The set of networks allowed when launching containers using the DockerContainerRuntime. +yarn.nodemanager.runtime.linux.docker.default-container-network host The network used when launching containers using the DockerContainerRuntime when no network is specified in the request . This network must be one of the (configurable) set of allowed container networks. +yarn.nodemanager.runtime.linux.docker.allowed-container-runtimes runc The set of runtimes allowed when launching containers using the DockerContainerRuntime. +yarn.nodemanager.runtime.linux.docker.host-pid-namespace.allowed false This configuration setting determines whether the host's PID namespace is allowed for docker containers on this cluster. Use with care. +yarn.nodemanager.runtime.linux.docker.enable-userremapping.allowed true Property to enable docker user remapping +yarn.nodemanager.runtime.linux.docker.userremapping-uid-threshold 1 lower limit for acceptable uids of user remapped user +yarn.nodemanager.runtime.linux.docker.userremapping-gid-threshold 1 lower limit for acceptable gids of user remapped user +yarn.nodemanager.runtime.linux.docker.delayed-removal.allowed false Whether or not users are allowed to request that Docker containers honor the debug deletion delay. This is useful for troubleshooting Docker container related launch failures. +yarn.nodemanager.runtime.linux.docker.stop.grace-period 10 A configurable value to pass to the Docker Stop command. This value defines the number of seconds between the docker stop command sending a SIGTERM and a SIGKILL. +yarn.nodemanager.runtime.linux.docker.default-ro-mounts The default list of read-only mounts to be bind-mounted into all Docker containers that use DockerContainerRuntime. +yarn.nodemanager.runtime.linux.docker.default-rw-mounts The default list of read-write mounts to be bind-mounted into all Docker containers that use DockerContainerRuntime. +yarn.nodemanager.runtime.linux.docker.default-tmpfs-mounts The default list of tmpfs mounts to be mounted into all Docker containers that use DockerContainerRuntime. +yarn.nodemanager.runtime.linux.runc.image-tag-to-manifest-plugin org.apache.hadoop.yarn.server.nodemanager.containermanager.linux.runtime.runc.ImageTagToManifestPlugin The runC image tag to manifest plugin class to be used. +yarn.nodemanager.runtime.linux.runc.manifest-to-resources-plugin org.apache.hadoop.yarn.server.nodemanager.containermanager.linux.runtime.runc.HdfsManifestToResourcesPlugin The runC manifest to resources plugin class to be used. +yarn.nodemanager.runtime.linux.runc.image-toplevel-dir /runc-root The HDFS location under which the oci image manifests, layers, and configs directories exist. +yarn.nodemanager.runtime.linux.runc.layer-mounts-to-keep 100 Target count of layer mounts that we should keep on disk at one time. +yarn.nodemanager.runtime.linux.runc.layer-mounts-interval-secs 600 The interval in seconds between executions of reaping layer mounts. +yarn.nodemanager.runtime.linux.runc.image-name Image to be used if no other image is specified. +yarn.nodemanager.runtime.linux.runc.privileged-containers.allowed false Allow or disallow privileged containers. +yarn.nodemanager.runtime.linux.runc.allowed-container-networks host,none,bridge The set of networks allowed when launching containers using the RuncContainerRuntime. +yarn.nodemanager.runtime.linux.runc.allowed-container-runtimes runc The set of runtimes allowed when launching containers using the RuncContainerRuntime. +yarn.nodemanager.runtime.linux.runc.privileged-containers.acl ACL list for users allowed to run privileged containers. +yarn.nodemanager.runtime.linux.runc.host-pid-namespace.allowed false Allow host pid namespace for runC containers. Use with care. +yarn.nodemanager.runtime.linux.runc.default-ro-mounts The default list of read-only mounts to be bind-mounted into all runC containers that use RuncContainerRuntime. +yarn.nodemanager.runtime.linux.runc.default-rw-mounts The default list of read-write mounts to be bind-mounted into all runC containers that use RuncContainerRuntime. +yarn.nodemanager.runtime.linux.runc.seccomp-profile Path to the seccomp profile to use with runC containers +yarn.nodemanager.runtime.linux.runc.image-tag-to-manifest-plugin.hdfs-hash-file /runc-root/image-tag-to-hash The HDFS location where the runC image tag to hash file exists. +yarn.nodemanager.runtime.linux.runc.image-tag-to-manifest-plugin.local-hash-file The local file system location where the runC image tag to hash file exists. +yarn.nodemanager.runtime.linux.runc.image-tag-to-manifest-plugin.cache-refresh-interval-secs 60 The interval in seconds between refreshing the hdfs image tag to hash cache. +yarn.nodemanager.runtime.linux.runc.image-tag-to-manifest-plugin.num-manifests-to-cache 10 The number of manifests to cache in the image tag to hash cache. +yarn.nodemanager.runtime.linux.runc.hdfs-manifest-to-resources-plugin.stat-cache-timeout-interval-secs 360 The timeout value in seconds for the values in the stat cache. +yarn.nodemanager.runtime.linux.runc.hdfs-manifest-to-resources-plugin.stat-cache-size 500 The size of the stat cache which stores stats of the layers and config. +yarn.nodemanager.runtime.linux.sandbox-mode disabled The mode in which the Java Container Sandbox should run detailed by the JavaSandboxLinuxContainerRuntime. +yarn.nodemanager.runtime.linux.sandbox-mode.local-dirs.permissions read Permissions for application local directories. +yarn.nodemanager.runtime.linux.sandbox-mode.policy Location for non-default java policy file. +yarn.nodemanager.runtime.linux.sandbox-mode.whitelist-group The group which will run by default without the java security manager. +yarn.nodemanager.windows-container.memory-limit.enabled false This flag determines whether memory limit will be set for the Windows Job Object of the containers launched by the default container executor. +yarn.nodemanager.windows-container.cpu-limit.enabled false This flag determines whether CPU limit will be set for the Windows Job Object of the containers launched by the default container executor. +yarn.nodemanager.linux-container-executor.cgroups.delete-timeout-ms 1000 Interval of time the linux container executor should try cleaning up cgroups entry when cleaning up a container. +yarn.nodemanager.log-aggregation.compression-type none T-file compression types used to compress aggregated logs. +yarn.nodemanager.principal The kerberos principal for the node manager. +yarn.nodemanager.aux-services A comma separated list of services where service name should only contain a-zA-Z0-9_ and can not start with numbers +yarn.nodemanager.aux-services.manifest.enabled false Boolean indicating whether loading aux services from a manifest is enabled. If enabled, aux services may be dynamically modified through reloading the manifest via filesystem changes or a REST API. When enabled, aux services configuration properties unrelated to the manifest will be ignored. +yarn.nodemanager.aux-services.manifest A file containing auxiliary service specifications. +yarn.nodemanager.aux-services.manifest.reload-ms 0 Length of time in ms to wait between reloading aux services manifest. If 0 or less, manifest will not be reloaded. +yarn.nodemanager.sleep-delay-before-sigkill.ms 250 No. of ms to wait between sending a SIGTERM and SIGKILL to a container +yarn.nodemanager.process-kill-wait.ms 5000 Max time to wait for a process to come up when trying to cleanup a container +yarn.nodemanager.resourcemanager.minimum.version NONE The minimum allowed version of a resourcemanager that a nodemanager will connect to. The valid values are NONE (no version checking), EqualToNM (the resourcemanager's version is equal to or greater than the NM version), or a Version String. +yarn.nodemanager.container-diagnostics-maximum-size 10000 Maximum size of contain's diagnostics to keep for relaunching container case. +yarn.nodemanager.container-retry-minimum-interval-ms 1000 Minimum container restart interval in milliseconds. +yarn.client.nodemanager-client-async.thread-pool-max-size 500 Max number of threads in NMClientAsync to process container management events +yarn.client.nodemanager-connect.max-wait-ms 180000 Max time to wait to establish a connection to NM +yarn.client.nodemanager-connect.retry-interval-ms 10000 Time interval between each attempt to connect to NM +yarn.nodemanager.resourcemanager.connect.max-wait.ms Max time to wait for NM to connect to RM. When not set, proxy will fall back to use value of yarn.resourcemanager.connect.max-wait.ms. +yarn.nodemanager.resourcemanager.connect.retry-interval.ms Time interval between each NM attempt to connect to RM. When not set, proxy will fall back to use value of yarn.resourcemanager.connect.retry-interval.ms. +yarn.client.max-cached-nodemanagers-proxies 0 Maximum number of proxy connections to cache for node managers. If set to a value greater than zero then the cache is enabled and the NMClient and MRAppMaster will cache the specified number of node manager proxies. There will be at max one proxy per node manager. Ex. configuring it to a value of 5 will make sure that client will at max have 5 proxies cached with 5 different node managers. These connections for these proxies will be timed out if idle for more than the system wide idle timeout period. Note that this could cause issues on large clusters as many connections could linger simultaneously and lead to a large number of connection threads. The token used for authentication will be used only at connection creation time. If a new token is received then the earlier connection should be closed in order to use the new token. This and (yarn.client.nodemanager-client-async.thread-pool-max-size) are related and should be in sync (no need for them to be equal). If the value of this property is zero then the connection cache is disabled and connections will use a zero idle timeout to prevent too many connection threads on large clusters. +yarn.nodemanager.recovery.enabled false Enable the node manager to recover after starting +yarn.nodemanager.recovery.dir ${hadoop.tmp.dir}/yarn-nm-recovery The local filesystem directory in which the node manager will store state when recovery is enabled. +yarn.nodemanager.recovery.compaction-interval-secs 3600 The time in seconds between full compactions of the NM state database. Setting the interval to zero disables the full compaction cycles. +yarn.nodemanager.recovery.supervised false Whether the nodemanager is running under supervision. A nodemanager that supports recovery and is running under supervision will not try to cleanup containers as it exits with the assumption it will be immediately be restarted and recover containers. +yarn.nodemanager.container-executor.os.sched.priority.adjustment Adjustment to the container OS scheduling priority. In Linux, passed directly to the nice command. If unspecified then containers are launched without any explicit OS priority. +yarn.nodemanager.container-metrics.enable true Flag to enable container metrics +yarn.nodemanager.container-metrics.period-ms -1 Container metrics flush period in ms. Set to -1 for flush on completion. +yarn.nodemanager.container-metrics.unregister-delay-ms 10000 The delay time ms to unregister container metrics after completion. +yarn.nodemanager.container-monitor.process-tree.class Class used to calculate current container resource utilization. +yarn.nodemanager.disk-health-checker.enable true Flag to enable NodeManager disk health checker +yarn.nodemanager.log.deletion-threads-count 4 Number of threads to use in NM log cleanup. Used when log aggregation is disabled. +yarn.nodemanager.windows-secure-container-executor.group The Windows group that the windows-container-executor should run as. +yarn.nodemanager.aux-services.mapreduce_shuffle.class org.apache.hadoop.mapred.ShuffleHandler +yarn.web-proxy.principal The kerberos principal for the proxy, if the proxy is not running as part of the RM. +yarn.web-proxy.keytab Keytab for WebAppProxy, if the proxy is not running as part of the RM. +yarn.web-proxy.address The address for the web proxy as HOST:PORT, if this is not given then the proxy will run as part of the RM +yarn.web-proxy.bind-host The actual address the web proxy will bind to. If this optional address is set, it overrides only the hostname portion of yarn.web-proxy.address. This is useful for making the web proxy server listen on all interfaces by setting it to 0.0.0.0 +yarn.resourcemanager.proxy.timeout.enabled true Enable the web proxy connection timeout, default is enabled. +yarn.resourcemanager.proxy.connection.timeout 60000 The web proxy connection timeout. +yarn.application.classpath CLASSPATH for YARN applications. A comma-separated list of CLASSPATH entries. When this value is empty, the following default CLASSPATH for YARN applications would be used. For Linux: $HADOOP_CONF_DIR, $HADOOP_COMMON_HOME/share/hadoop/common/*, $HADOOP_COMMON_HOME/share/hadoop/common/lib/*, $HADOOP_HDFS_HOME/share/hadoop/hdfs/*, $HADOOP_HDFS_HOME/share/hadoop/hdfs/lib/*, $HADOOP_YARN_HOME/share/hadoop/yarn/*, $HADOOP_YARN_HOME/share/hadoop/yarn/lib/* For Windows: %HADOOP_CONF_DIR%, %HADOOP_COMMON_HOME%/share/hadoop/common/*, %HADOOP_COMMON_HOME%/share/hadoop/common/lib/*, %HADOOP_HDFS_HOME%/share/hadoop/hdfs/*, %HADOOP_HDFS_HOME%/share/hadoop/hdfs/lib/*, %HADOOP_YARN_HOME%/share/hadoop/yarn/*, %HADOOP_YARN_HOME%/share/hadoop/yarn/lib/* +yarn.timeline-service.version 1.0f Indicate what is the current version of the running timeline service. For example, if "yarn.timeline-service.version" is 1.5, and "yarn.timeline-service.enabled" is true, it means the cluster will and should bring up the timeline service v.1.5 (and nothing else). On the client side, if the client uses the same version of timeline service, it should succeed. If the client chooses to use a smaller version in spite of this, then depending on how robust the compatibility story is between versions, the results may vary. +yarn.timeline-service.enabled false In the server side it indicates whether timeline service is enabled or not. And in the client side, users can enable it to indicate whether client wants to use timeline service. If its enabled in the client side along with security, then yarn client tries to fetch the delegation tokens for the timeline server. +yarn.timeline-service.hostname 0.0.0.0 The hostname of the timeline service web application. +yarn.timeline-service.address ${yarn.timeline-service.hostname}:10200 This is default address for the timeline server to start the RPC server. +yarn.timeline-service.webapp.address ${yarn.timeline-service.hostname}:8188 The http address of the timeline service web application. +yarn.timeline-service.webapp.https.address ${yarn.timeline-service.hostname}:8190 The https address of the timeline service web application. +yarn.timeline-service.bind-host The actual address the server will bind to. If this optional address is set, the RPC and webapp servers will bind to this address and the port specified in yarn.timeline-service.address and yarn.timeline-service.webapp.address, respectively. This is most useful for making the service listen to all interfaces by setting to 0.0.0.0. +yarn.timeline-service.generic-application-history.max-applications 10000 Defines the max number of applications could be fetched using REST API or application history protocol and shown in timeline server web ui. +yarn.timeline-service.store-class org.apache.hadoop.yarn.server.timeline.LeveldbTimelineStore Store class name for timeline store. +yarn.timeline-service.ttl-enable true Enable age off of timeline store data. +yarn.timeline-service.ttl-ms 604800000 Time to live for timeline store data in milliseconds. +yarn.timeline-service.leveldb-timeline-store.path ${hadoop.tmp.dir}/yarn/timeline Store file name for leveldb timeline store. +yarn.timeline-service.leveldb-timeline-store.ttl-interval-ms 300000 Length of time to wait between deletion cycles of leveldb timeline store in milliseconds. +yarn.timeline-service.leveldb-timeline-store.read-cache-size 104857600 Size of read cache for uncompressed blocks for leveldb timeline store in bytes. +yarn.timeline-service.leveldb-timeline-store.start-time-read-cache-size 10000 Size of cache for recently read entity start times for leveldb timeline store in number of entities. +yarn.timeline-service.leveldb-timeline-store.start-time-write-cache-size 10000 Size of cache for recently written entity start times for leveldb timeline store in number of entities. +yarn.timeline-service.handler-thread-count 10 Handler thread count to serve the client RPC requests. +yarn.timeline-service.http-authentication.type simple Defines authentication used for the timeline server HTTP endpoint. Supported values are: simple | kerberos | #AUTHENTICATION_HANDLER_CLASSNAME# +yarn.timeline-service.http-authentication.simple.anonymous.allowed true Indicates if anonymous requests are allowed by the timeline server when using 'simple' authentication. +yarn.timeline-service.principal The Kerberos principal for the timeline server. +yarn.timeline-service.keytab /etc/krb5.keytab The Kerberos keytab for the timeline server. +yarn.timeline-service.ui-names Comma separated list of UIs that will be hosted +yarn.timeline-service.client.max-retries 30 Default maximum number of retries for timeline service client and value -1 means no limit. +yarn.timeline-service.client.best-effort false Client policy for whether timeline operations are non-fatal. Should the failure to obtain a delegation token be considered an application failure (option = false), or should the client attempt to continue to publish information without it (option=true) +yarn.timeline-service.client.retry-interval-ms 1000 Default retry time interval for timeline servive client. +yarn.timeline-service.client.drain-entities.timeout.ms 2000 The time period for which timeline v2 client will wait for draining leftover entities after stop. +yarn.timeline-service.recovery.enabled false Enable timeline server to recover state after starting. If true, then yarn.timeline-service.state-store-class must be specified. +yarn.timeline-service.state-store-class org.apache.hadoop.yarn.server.timeline.recovery.LeveldbTimelineStateStore Store class name for timeline state store. +yarn.timeline-service.leveldb-state-store.path ${hadoop.tmp.dir}/yarn/timeline Store file name for leveldb state store. +yarn.timeline-service.entity-group-fs-store.cache-store-class org.apache.hadoop.yarn.server.timeline.MemoryTimelineStore Caching storage timeline server v1.5 is using. +yarn.timeline-service.entity-group-fs-store.active-dir /tmp/entity-file-history/active HDFS path to store active application’s timeline data +yarn.timeline-service.entity-group-fs-store.done-dir /tmp/entity-file-history/done/ HDFS path to store done application’s timeline data +yarn.timeline-service.entity-group-fs-store.group-id-plugin-classes Plugins that can translate a timeline entity read request into a list of timeline entity group ids, separated by commas. +yarn.timeline-service.entity-group-fs-store.group-id-plugin-classpath Classpath for all plugins defined in yarn.timeline-service.entity-group-fs-store.group-id-plugin-classes. +yarn.timeline-service.entity-group-fs-store.summary-store org.apache.hadoop.yarn.server.timeline.LeveldbTimelineStore Summary storage for ATS v1.5 +yarn.timeline-service.entity-group-fs-store.scan-interval-seconds 60 Scan interval for ATS v1.5 entity group file system storage reader.This value controls how frequent the reader will scan the HDFS active directory for application status. +yarn.timeline-service.entity-group-fs-store.cleaner-interval-seconds 3600 Scan interval for ATS v1.5 entity group file system storage cleaner.This value controls how frequent the reader will scan the HDFS done directory for stale application data. +yarn.timeline-service.entity-group-fs-store.retain-seconds 604800 How long the ATS v1.5 entity group file system storage will keep an application's data in the done directory. +yarn.timeline-service.entity-group-fs-store.leveldb-cache-read-cache-size 10485760 Read cache size for the leveldb cache storage in ATS v1.5 plugin storage. +yarn.timeline-service.entity-group-fs-store.app-cache-size 10 Size of the reader cache for ATS v1.5 reader. This value controls how many entity groups the ATS v1.5 server should cache. If the number of active read entity groups is greater than the number of caches items, some reads may return empty data. This value must be greater than 0. +yarn.timeline-service.client.fd-flush-interval-secs 10 Flush interval for ATS v1.5 writer. This value controls how frequent the writer will flush the HDFS FSStream for the entity/domain. +yarn.timeline-service.client.fd-clean-interval-secs 60 Scan interval for ATS v1.5 writer. This value controls how frequent the writer will scan the HDFS FSStream for the entity/domain. If the FSStream is stale for a long time, this FSStream will be close. +yarn.timeline-service.client.fd-retain-secs 300 How long the ATS v1.5 writer will keep an FSStream open. If this fsstream does not write anything for this configured time, it will be close. +yarn.timeline-service.writer.class org.apache.hadoop.yarn.server.timelineservice.storage.HBaseTimelineWriterImpl Storage implementation ATS v2 will use for the TimelineWriter service. +yarn.timeline-service.reader.class org.apache.hadoop.yarn.server.timelineservice.storage.HBaseTimelineReaderImpl Storage implementation ATS v2 will use for the TimelineReader service. +yarn.timeline-service.client.internal-timers-ttl-secs 420 How long the internal Timer Tasks can be alive in writer. If there is no write operation for this configured time, the internal timer tasks will be close. +yarn.timeline-service.writer.flush-interval-seconds 60 The setting that controls how often the timeline collector flushes the timeline writer. +yarn.timeline-service.writer.async.queue.capacity 100 The setting that decides the capacity of the queue to hold asynchronous timeline entities. +yarn.timeline-service.app-collector.linger-period.ms 60000 Time period till which the application collector will be alive in NM, after the application master container finishes. +yarn.timeline-service.timeline-client.number-of-async-entities-to-merge 10 Time line V2 client tries to merge these many number of async entities (if available) and then call the REST ATS V2 API to submit. +yarn.timeline-service.hbase.coprocessor.app-final-value-retention-milliseconds 259200000 The setting that controls how long the final value of a metric of a completed app is retained before merging into the flow sum. Up to this time after an application is completed out-of-order values that arrive can be recognized and discarded at the cost of increased storage. +yarn.timeline-service.app-aggregation-interval-secs 15 The setting that controls how often in-memory app level aggregation is kicked off in timeline collector. +yarn.timeline-service.hbase.coprocessor.jar.hdfs.location /hbase/coprocessor/hadoop-yarn-server-timelineservice.jar The default hdfs location for flowrun coprocessor jar. +yarn.timeline-service.hbase-schema.prefix prod. The value of this parameter sets the prefix for all tables that are part of timeline service in the hbase storage schema. It can be set to "dev." or "staging." if it is to be used for development or staging instances. This way the data in production tables stays in a separate set of tables prefixed by "prod.". +yarn.timeline-service.hbase.configuration.file Optional URL to an hbase-site.xml configuration file to be used to connect to the timeline-service hbase cluster. If empty or not specified, then the HBase configuration will be loaded from the classpath. When specified the values in the specified configuration file will override those from the ones that are present on the classpath. +yarn.timeline-service.flowname.max-size 0 Removes the UUID if represent and limit the the flowname length with the given value for ATSv2. In case the value is negative or 0, it only removes the UUID and does not limit the flow name. +yarn.sharedcache.enabled false Whether the shared cache is enabled +yarn.sharedcache.root-dir /sharedcache The root directory for the shared cache +yarn.sharedcache.nested-level 3 The level of nested directories before getting to the checksum directories. It must be non-negative. +yarn.sharedcache.store.class org.apache.hadoop.yarn.server.sharedcachemanager.store.InMemorySCMStore The implementation to be used for the SCM store +yarn.sharedcache.app-checker.class org.apache.hadoop.yarn.server.sharedcachemanager.RemoteAppChecker The implementation to be used for the SCM app-checker +yarn.sharedcache.store.in-memory.staleness-period-mins 10080 A resource in the in-memory store is considered stale if the time since the last reference exceeds the staleness period. This value is specified in minutes. +yarn.sharedcache.store.in-memory.initial-delay-mins 10 Initial delay before the in-memory store runs its first check to remove dead initial applications. Specified in minutes. +yarn.sharedcache.store.in-memory.check-period-mins 720 The frequency at which the in-memory store checks to remove dead initial applications. Specified in minutes. +yarn.sharedcache.admin.address 0.0.0.0:8047 The address of the admin interface in the SCM (shared cache manager) +yarn.sharedcache.admin.thread-count 1 The number of threads used to handle SCM admin interface (1 by default) +yarn.sharedcache.webapp.address 0.0.0.0:8788 The address of the web application in the SCM (shared cache manager) +yarn.sharedcache.cleaner.period-mins 1440 The frequency at which a cleaner task runs. Specified in minutes. +yarn.sharedcache.cleaner.initial-delay-mins 10 Initial delay before the first cleaner task is scheduled. Specified in minutes. +yarn.sharedcache.cleaner.resource-sleep-ms 0 The time to sleep between processing each shared cache resource. Specified in milliseconds. +yarn.sharedcache.uploader.server.address 0.0.0.0:8046 The address of the node manager interface in the SCM (shared cache manager) +yarn.sharedcache.uploader.server.thread-count 50 The number of threads used to handle shared cache manager requests from the node manager (50 by default) +yarn.sharedcache.client-server.address 0.0.0.0:8045 The address of the client interface in the SCM (shared cache manager) +yarn.sharedcache.client-server.thread-count 50 The number of threads used to handle shared cache manager requests from clients (50 by default) +yarn.sharedcache.checksum.algo.impl org.apache.hadoop.yarn.sharedcache.ChecksumSHA256Impl The algorithm used to compute checksums of files (SHA-256 by default) +yarn.sharedcache.nm.uploader.replication.factor 10 The replication factor for the node manager uploader for the shared cache (10 by default) +yarn.sharedcache.nm.uploader.thread-count 20 The number of threads used to upload files from a node manager instance (20 by default) +security.applicationhistory.protocol.acl ACL protocol for use in the Timeline server. +yarn.is.minicluster false Set to true for MiniYARNCluster unit tests +yarn.minicluster.control-resource-monitoring false Set for MiniYARNCluster unit tests to control resource monitoring +yarn.minicluster.fixed.ports false Set to false in order to allow MiniYARNCluster to run tests without port conflicts. +yarn.minicluster.use-rpc false Set to false in order to allow the NodeManager in MiniYARNCluster to use RPC to talk to the RM. +yarn.minicluster.yarn.nodemanager.resource.memory-mb 4096 As yarn.nodemanager.resource.memory-mb property but for the NodeManager in a MiniYARNCluster. +yarn.node-labels.enabled false Enable node labels feature +yarn.node-labels.fs-store.root-dir URI for NodeLabelManager. The default value is /tmp/hadoop-yarn-${user} +yarn.node-labels.configuration-type centralized Set configuration type for node labels. Administrators can specify "centralized", "delegated-centralized" or "distributed". +yarn.nodemanager.node-labels.provider When "yarn.node-labels.configuration-type" is configured with "distributed" in RM, Administrators can configure in NM the provider for the node labels by configuring this parameter. Administrators can configure "config", "script" or the class name of the provider. Configured class needs to extend org.apache.hadoop.yarn.server.nodemanager.nodelabels.NodeLabelsProvider. If "config" is configured, then "ConfigurationNodeLabelsProvider" and if "script" is configured, then "ScriptNodeLabelsProvider" will be used. +yarn.nodemanager.node-labels.provider.fetch-interval-ms 600000 When "yarn.nodemanager.node-labels.provider" is configured with "config", "Script" or the configured class extends AbstractNodeLabelsProvider, then periodically node labels are retrieved from the node labels provider. This configuration is to define the interval period. If -1 is configured then node labels are retrieved from provider only during initialization. Defaults to 10 mins. +yarn.nodemanager.node-labels.resync-interval-ms 120000 Interval at which NM syncs its node labels with RM. NM will send its loaded labels every x intervals configured, along with heartbeat to RM. +yarn.nodemanager.node-labels.provider.configured-node-partition When "yarn.nodemanager.node-labels.provider" is configured with "config" then ConfigurationNodeLabelsProvider fetches the partition label from this parameter. +yarn.nodemanager.node-labels.provider.fetch-timeout-ms 1200000 When "yarn.nodemanager.node-labels.provider" is configured with "Script" then this configuration provides the timeout period after which it will interrupt the script which queries the Node labels. Defaults to 20 mins. +yarn.resourcemanager.node-labels.provider When node labels "yarn.node-labels.configuration-type" is of type "delegated-centralized", administrators should configure the class for fetching node labels by ResourceManager. Configured class needs to extend org.apache.hadoop.yarn.server.resourcemanager.nodelabels. RMNodeLabelsMappingProvider. +yarn.resourcemanager.node-labels.provider.fetch-interval-ms 1800000 When "yarn.node-labels.configuration-type" is configured with "delegated-centralized", then node labels of all nodes are updated by periodically retrieving node labels from the provider. If -1 is configured then node labels are retrieved from provider only once for each node after it registers. Defaults to 30 mins. +yarn.resourcemanager.node-labels.provider.update-newly-registered-nodes-interval-ms 30000 When "yarn.node-labels.configuration-type" is configured with "delegated-centralized", then node labels of newly registered nodes are updated by periodically retrieving node labels from the provider. Defaults to 30 secs. +yarn.resourcemanager.node-labels.am.default-node-label-expression Overwrites default-node-label-expression only for the ApplicationMaster container. It is disabled by default. +yarn.resourcemanager.node-labels.am.allow-non-exclusive-allocation false Flag to indicate whether the AM can be allocated to non-exclusive nodes or not. Default is false. +yarn.nodemanager.node-attributes.provider This property determines which provider will be plugged by the node manager to collect node-attributes. Administrators can configure "config", "script" or the class name of the provider. Configured class needs to extend org.apache.hadoop.yarn.server.nodemanager.nodelabels.NodeAttributesProvider. If "config" is configured, then "ConfigurationNodeLabelsProvider" and if "script" is configured, then "ScriptBasedNodeAttributesProvider" will be used. +yarn.nodemanager.node-attributes.provider.script.path The node attribute script NM runs to collect node attributes. Script output Line starting with "NODE_ATTRIBUTE:" will be considered as a record of node attribute, attribute name, type and value should be delimited by comma. Each of such lines will be parsed to a node attribute. +yarn.nodemanager.node-attributes.provider.script.opts Command arguments passed to the node attribute script. +yarn.nodemanager.node-attributes.provider.fetch-interval-ms 600000 Time interval that determines how long NM fetches node attributes from a given provider. If -1 is configured then node labels are retrieved from provider only during initialization. Defaults to 10 mins. +yarn.nodemanager.node-attributes.provider.fetch-timeout-ms 1200000 Timeout period after which NM will interrupt the node attribute provider script which queries node attributes. Defaults to 20 mins. +yarn.nodemanager.node-attributes.provider.configured-node-attributes When "yarn.nodemanager.node-attributes.provider" is configured with "config" then ConfigurationNodeAttributesProvider fetches node attributes from this parameter. +yarn.nodemanager.node-attributes.resync-interval-ms 120000 Interval at which NM syncs its node attributes with RM. NM will send its loaded attributes every x intervals configured, along with heartbeat to RM. +yarn.resourcemanager.nodemanager-graceful-decommission-timeout-secs 3600 Timeout in seconds for YARN node graceful decommission. This is the maximal time to wait for running containers and applications to complete before transition a DECOMMISSIONING node into DECOMMISSIONED. +yarn.resourcemanager.decommissioning-nodes-watcher.poll-interval-secs 20 Timeout in seconds of DecommissioningNodesWatcher internal polling. +yarn.http.rmwebapp.external.classes Used to specify custom web services for Resourcemanager. Value can be classnames separated by comma. Ex: org.apache.hadoop.yarn.server.resourcemanager.webapp.RMWebServices, org.apache.hadoop.yarn.server.resourcemanager.webapp.DummyClass +yarn.http.rmwebapp.scheduler.page.class Used to specify custom scheduler page +yarn.http.rmwebapp.custom.dao.classes Used to specify custom DAO classes used by custom web services. +yarn.http.rmwebapp.custom.unwrapped.dao.classes Used to specify custom DAO classes used by custom web services which requires root unwrapping. +yarn.webapp.custom.webservice.class Used to specify custom WebServices class to bind with RMWebApp overriding the default RMWebServices. +yarn.nodemanager.node-labels.provider.script.path The Node Label script to run. Script output Line starting with "NODE_PARTITION:" will be considered as Node Label Partition. In case of multiple lines have this pattern, then last one will be considered +yarn.nodemanager.node-labels.provider.script.opts The arguments to pass to the Node label script. +yarn.federation.enabled false Flag to indicate whether the RM is participating in Federation or not. +yarn.federation.state-store.heartbeat.initial-delay 30s Initial delay for federation state-store heartbeat service. Value is followed by a unit specifier: ns, us, ms, s, m, h, d for nanoseconds, microseconds, milliseconds, seconds, minutes, hours, days respectively. Values should provide units, but seconds are assumed +yarn.federation.machine-list Machine list file to be loaded by the FederationSubCluster Resolver +yarn.federation.subcluster-resolver.class org.apache.hadoop.yarn.server.federation.resolver.DefaultSubClusterResolverImpl Class name for SubClusterResolver +yarn.federation.state-store.class org.apache.hadoop.yarn.server.federation.store.impl.MemoryFederationStateStore Store class name for federation state store +yarn.federation.cache-ttl.secs 300 The time in seconds after which the federation state store local cache will be refreshed periodically +yarn.federation.registry.base-dir yarnfederation/ The registry base directory for federation. +yarn.federation.state-store.clean-up-retry-count 1 The number of retries to clear the app in the FederationStateStore, the default value is 1, that is, after the app fails to clean up, it will retry the cleanup again. +yarn.federation.state-store.clean-up-retry-sleep-time 1s Clear the sleep time of App retry in FederationStateStore. When the app fails to clean up, it will sleep for a period of time and then try to clean up. The default value is 1s. +yarn.registry.class org.apache.hadoop.registry.client.impl.FSRegistryOperationsService The registry implementation to use. +yarn.client.application-client-protocol.poll-interval-ms 200 The interval that the yarn client library uses to poll the completion status of the asynchronous API of application client protocol. +yarn.client.application-client-protocol.poll-timeout-ms -1 The duration (in ms) the YARN client waits for an expected state change to occur. -1 means unlimited wait time. +yarn.nodemanager.container-monitor.procfs-tree.smaps-based-rss.enabled false RSS usage of a process computed via /proc/pid/stat is not very accurate as it includes shared pages of a process. /proc/pid/smaps provides useful information like Private_Dirty, Private_Clean, Shared_Dirty, Shared_Clean which can be used for computing more accurate RSS. When this flag is enabled, RSS is computed as Min(Shared_Dirty, Pss) + Private_Clean + Private_Dirty. It excludes read-only shared mappings in RSS computation. +yarn.log.server.url URL for log aggregation server +yarn.log.server.web-service.url URL for log aggregation server web service +yarn.tracking.url.generator RM Application Tracking URL +yarn.authorization-provider Class to be used for YarnAuthorizationProvider +yarn.nodemanager.log-aggregation.roll-monitoring-interval-seconds -1 Defines how often NMs wake up to upload log files. The default value is -1. By default, the logs will be uploaded when the application is finished. By setting this configuration logs can be uploaded periodically while the application is running. The minimum positive accepted value can be configured by the setting "yarn.nodemanager.log-aggregation.roll-monitoring-interval-seconds.min". +yarn.nodemanager.log-aggregation.roll-monitoring-interval-seconds.min 3600 Defines the positive minimum hard limit for "yarn.nodemanager.log-aggregation.roll-monitoring-interval-seconds". If this configuration has been set less than its default value (3600) the NodeManager may raise a warning. +yarn.nodemanager.log-aggregation.num-log-files-per-app 30 Define how many aggregated log files per application per NM we can have in remote file system. By default, the total number of aggregated log files per application per NM is 30. +yarn.intermediate-data-encryption.enable false Enable/disable intermediate-data encryption at YARN level. For now, this only is used by the FileSystemRMStateStore to setup right file-system security attributes. +yarn.nodemanager.webapp.cross-origin.enabled false Flag to enable cross-origin (CORS) support in the NM. This flag requires the CORS filter initializer to be added to the filter initializers list in core-site.xml. +yarn.cluster.max-application-priority 0 Defines maximum application priority in a cluster. If an application is submitted with a priority higher than this value, it will be reset to this maximum value. +yarn.nodemanager.log-aggregation.policy.class org.apache.hadoop.yarn.server.nodemanager.containermanager.logaggregation.AllContainerLogAggregationPolicy The default log aggregation policy class. Applications can override it via LogAggregationContext. This configuration can provide some cluster-side default behavior so that if the application doesn't specify any policy via LogAggregationContext administrators of the cluster can adjust the policy globally. +yarn.nodemanager.log-aggregation.policy.parameters The default parameters for the log aggregation policy. Applications can override it via LogAggregationContext. This configuration can provide some cluster-side default behavior so that if the application doesn't specify any policy via LogAggregationContext administrators of the cluster can adjust the policy globally. +yarn.nodemanager.amrmproxy.enabled false Enable/Disable AMRMProxyService in the node manager. This service is used to intercept calls from the application masters to the resource manager. +yarn.nodemanager.amrmproxy.address 0.0.0.0:8049 The address of the AMRMProxyService listener. +yarn.nodemanager.amrmproxy.client.thread-count 25 The number of threads used to handle requests by the AMRMProxyService. +yarn.nodemanager.amrmproxy.interceptor-class.pipeline org.apache.hadoop.yarn.server.nodemanager.amrmproxy.DefaultRequestInterceptor The comma separated list of class names that implement the RequestInterceptor interface. This is used by the AMRMProxyService to create the request processing pipeline for applications. +yarn.nodemanager.amrmproxy.ha.enable false Whether AMRMProxy HA is enabled. +yarn.nodemanager.distributed-scheduling.enabled false Setting that controls whether distributed scheduling is enabled. +yarn.resourcemanager.opportunistic-container-allocation.enabled false Setting that controls whether opportunistic container allocation is enabled. +yarn.resourcemanager.opportunistic.max.container-allocation.per.am.heartbeat -1 Maximum number of opportunistic containers to be allocated per Application Master heartbeat. +yarn.resourcemanager.opportunistic-container-allocation.nodes-used 10 Number of nodes to be used by the Opportunistic Container Allocator for dispatching containers during container allocation. +yarn.resourcemanager.nm-container-queuing.sorting-nodes-interval-ms 1000 Frequency for computing least loaded NMs. +yarn.resourcemanager.nm-container-queuing.load-comparator QUEUE_LENGTH Comparator for determining node load for Distributed Scheduling. +yarn.resourcemanager.nm-container-queuing.queue-limit-stdev 1.0f Value of standard deviation used for calculation of queue limit thresholds. +yarn.resourcemanager.nm-container-queuing.min-queue-length 5 Min length of container queue at NodeManager. +yarn.resourcemanager.nm-container-queuing.max-queue-length 15 Max length of container queue at NodeManager. +yarn.resourcemanager.nm-container-queuing.min-queue-wait-time-ms 10 Min queue wait time for a container at a NodeManager. +yarn.resourcemanager.nm-container-queuing.max-queue-wait-time-ms 100 Max queue wait time for a container queue at a NodeManager. +yarn.nodemanager.opportunistic-containers-use-pause-for-preemption false Use container pause as the preemption policy over kill in the container queue at a NodeManager. +yarn.nodemanager.container.stderr.pattern {*stderr*,*STDERR*} Error filename pattern, to identify the file in the container's Log directory which contain the container's error log. As error file redirection is done by client/AM and yarn will not be aware of the error file name. YARN uses this pattern to identify the error file and tail the error log as diagnostics when the container execution returns non zero value. Filename patterns are case sensitive and should match the specifications of FileSystem.globStatus(Path) api. If multiple filenames matches the pattern, first file matching the pattern will be picked. +yarn.nodemanager.container.stderr.tail.bytes 4096 Size of the container error file which needs to be tailed, in bytes. +yarn.node-labels.fs-store.impl.class org.apache.hadoop.yarn.nodelabels.FileSystemNodeLabelsStore Choose different implementation of node label's storage +yarn.fs-store.file.replication 0 The replication factor for the FS store files. Default value is 0, means it will use file system default replication. +yarn.resourcemanager.webapp.rest-csrf.enabled false Enable the CSRF filter for the RM web app +yarn.resourcemanager.webapp.rest-csrf.custom-header X-XSRF-Header Optional parameter that indicates the custom header name to use for CSRF protection. +yarn.resourcemanager.webapp.rest-csrf.methods-to-ignore GET,OPTIONS,HEAD Optional parameter that indicates the list of HTTP methods that do not require CSRF protection +yarn.nodemanager.webapp.rest-csrf.enabled false Enable the CSRF filter for the NM web app +yarn.nodemanager.webapp.rest-csrf.custom-header X-XSRF-Header Optional parameter that indicates the custom header name to use for CSRF protection. +yarn.nodemanager.webapp.rest-csrf.methods-to-ignore GET,OPTIONS,HEAD Optional parameter that indicates the list of HTTP methods that do not require CSRF protection +yarn.nodemanager.disk-validator basic The name of disk validator. +yarn.timeline-service.webapp.rest-csrf.enabled false Enable the CSRF filter for the timeline service web app +yarn.timeline-service.webapp.rest-csrf.custom-header X-XSRF-Header Optional parameter that indicates the custom header name to use for CSRF protection. +yarn.timeline-service.webapp.rest-csrf.methods-to-ignore GET,OPTIONS,HEAD Optional parameter that indicates the list of HTTP methods that do not require CSRF protection +yarn.webapp.xfs-filter.enabled true Enable the XFS filter for YARN +yarn.resourcemanager.webapp.xfs-filter.xframe-options SAMEORIGIN Property specifying the xframe options value. +yarn.nodemanager.webapp.xfs-filter.xframe-options SAMEORIGIN Property specifying the xframe options value. +yarn.timeline-service.webapp.xfs-filter.xframe-options SAMEORIGIN Property specifying the xframe options value. +yarn.resourcemanager.node-removal-untracked.timeout-ms 60000 The least amount of time(msec.) an inactive (decommissioned or shutdown) node can stay in the nodes list of the resourcemanager after being declared untracked. A node is marked untracked if and only if it is absent from both include and exclude nodemanager lists on the RM. All inactive nodes are checked twice per timeout interval or every 10 minutes, whichever is lesser, and marked appropriately. The same is done when refreshNodes command (graceful or otherwise) is invoked. +yarn.resourcemanager.application-timeouts.monitor.interval-ms 3000 The RMAppLifetimeMonitor Service uses this value as monitor interval +yarn.resourcemanager.application-https.policy NONE Specifies what the RM does regarding HTTPS enforcement for communication with AM Web Servers, as well as generating and providing certificates. Possible values are: - NONE - the RM will do nothing special. - LENIENT - the RM will generate and provide a keystore and truststore to the AM, which it is free to use for HTTPS in its tracking URL web server. The RM proxy will still allow HTTP connections to AMs that opt not to use HTTPS. - STRICT - this is the same as LENIENT, except that the RM proxy will only allow HTTPS connections to AMs; HTTP connections will be blocked and result in a warning page to the user. +yarn.app.attempt.diagnostics.limit.kc 64 Defines the limit of the diagnostics message of an application attempt, in kilo characters (character count * 1024). When using ZooKeeper to store application state behavior, its important to limit the size of the diagnostic messages to prevent YARN from overwhelming ZooKeeper. In cases where yarn.resourcemanager.state-store.max-completed-applications is set to a large number, it may be desirable to reduce the value of this property to limit the total data stored. +yarn.timeline-service.http-cross-origin.enabled false Flag to enable cross-origin (CORS) support for timeline service v1.x or Timeline Reader in timeline service v2. For timeline service v2, also add org.apache.hadoop.security.HttpCrossOriginFilterInitializer to the configuration hadoop.http.filter.initializers in core-site.xml. +yarn.router.clientrm.interceptor-class.pipeline org.apache.hadoop.yarn.server.router.clientrm.DefaultClientRequestInterceptor The comma separated list of class names that implement the RequestInterceptor interface. This is used by the RouterClientRMService to create the request processing pipeline for users. +yarn.router.interceptor.user.threadpool-size 5 The thread pool executor size of per user in Router ClientRM Service FederationClientInterceptor. +yarn.router.pipeline.cache-max-size 25 Size of LRU cache for Router ClientRM Service and RMAdmin Service. +yarn.router.rmadmin.interceptor-class.pipeline org.apache.hadoop.yarn.server.router.rmadmin.DefaultRMAdminRequestInterceptor The comma separated list of class names that implement the RequestInterceptor interface. This is used by the RouterRMAdminService to create the request processing pipeline for users. +yarn.router.bind-host The actual address the server will bind to. If this optional address is set, the RPC and webapp servers will bind to this address and the port specified in yarn.router.address and yarn.router.webapp.address, respectively. This is most useful for making Router listen to all interfaces by setting to 0.0.0.0. +yarn.scheduler.queue-placement-rules user-group Comma-separated list of PlacementRules to determine how applications submitted by certain users get mapped to certain queues. Default is user-group, which corresponds to UserGroupMappingPlacementRule. +yarn.router.webapp.interceptor-class.pipeline org.apache.hadoop.yarn.server.router.webapp.DefaultRequestInterceptorREST The comma separated list of class names that implement the RequestInterceptor interface. This is used by the RouterWebServices to create the request processing pipeline for users. +yarn.router.webapp.address 0.0.0.0:8089 The http address of the Router web application. If only a host is provided as the value, the webapp will be served on a random port. +yarn.router.webapp.https.address 0.0.0.0:8091 The https address of the Router web application. If only a host is provided as the value, the webapp will be served on a random port. +yarn.timeline-service.entity-group-fs-store.with-user-dir false It is TimelineClient 1.5 configuration whether to store active application’s timeline data with in user directory i.e ${yarn.timeline-service.entity-group-fs-store.active-dir}/${user.name} +yarn.resource-types The resource types to be used for scheduling. Use resource-types.xml to specify details about the individual resource types. +yarn.webapp.filter-entity-list-by-user false Flag to enable display of applications per user as an admin configuration. +yarn.webapp.filter-invalid-xml-chars false Flag to enable filter of invalid xml 1.0 characters present in the value of diagnostics field of apps output from RM WebService. +yarn.scheduler.configuration.store.class file The type of configuration store to use for scheduler configurations. Default is "file", which uses file based capacity-scheduler.xml to retrieve and change scheduler configuration. To enable API based scheduler configuration, use either "memory" (in memory storage, no persistence across restarts), "leveldb" (leveldb based storage), or "zk" (zookeeper based storage). API based configuration is only useful when using a scheduler which supports mutable configuration. Currently only capacity scheduler supports this. +yarn.scheduler.configuration.mutation.acl-policy.class org.apache.hadoop.yarn.server.resourcemanager.scheduler.DefaultConfigurationMutationACLPolicy The class to use for configuration mutation ACL policy if using a mutable configuration provider. Controls whether a mutation request is allowed. The DefaultConfigurationMutationACLPolicy checks if the requestor is a YARN admin. +yarn.scheduler.configuration.leveldb-store.path ${hadoop.tmp.dir}/yarn/system/confstore The storage path for LevelDB implementation of configuration store, when yarn.scheduler.configuration.store.class is configured to be "leveldb". +yarn.scheduler.configuration.leveldb-store.compaction-interval-secs 86400 The compaction interval for LevelDB configuration store in secs, when yarn.scheduler.configuration.store.class is configured to be "leveldb". Default is one day. +yarn.scheduler.configuration.store.max-logs 1000 The max number of configuration change log entries kept in config store, when yarn.scheduler.configuration.store.class is configured to be "leveldb" or "zk". Default is 1000 for either. +yarn.scheduler.configuration.fs.path file://${hadoop.tmp.dir}/yarn/system/schedconf The file system directory to store the configuration files. The path can be any format as long as it follows hadoop compatible schema, for example value "file:///path/to/dir" means to store files on local file system, value "hdfs:///path/to/dir" means to store files on HDFS. If resource manager HA is enabled, recommended to use hdfs schema so it works in fail-over scenario. +yarn.scheduler.configuration.max.version 100 The max number of configuration file in filesystem. Default is 100 for either. +yarn.scheduler.configuration.zk-store.parent-path /confstore ZK root node path for configuration store when using zookeeper-based configuration store. +yarn.client.load.resource-types.from-server false Provides an option for client to load supported resource types from RM instead of depending on local resource-types.xml file. +yarn.nodemanager.pluggable-device-framework.enabled false This setting controls if pluggable device framework is enabled. Disabled by default +yarn.nodemanager.pluggable-device-framework.device-classes Configure vendor device plugin class name here. Comma separated. The class must be found in CLASSPATH. The pluggable device framework will load these classes. +yarn.nodemanager.resource-plugins.gpu.path-to-discovery-executables When yarn.nodemanager.resource.gpu.allowed-gpu-devices=auto specified, YARN NodeManager needs to run GPU discovery binary (now only support nvidia-smi) to get GPU-related information. When value is empty (default), YARN NodeManager will try to locate discovery executable itself. An example of the config value is: /usr/local/bin +yarn.nodemanager.resource-plugins Enable additional discovery/isolation of resources on the NodeManager, split by comma. By default, this is empty. Acceptable values: { "yarn.io/gpu", "yarn.io/fpga"}. +yarn.nodemanager.resource-plugins.fail-fast Specifies whether the initialization of the Node Manager should continue if a certain device (GPU, FPGA, etc) was not found in the system. If set to "true", then an exception will be thrown if a device is missing or an error occurred during discovery. +yarn.nodemanager.resource-plugins.gpu.allowed-gpu-devices auto Specify GPU devices which can be managed by YARN NodeManager, split by comma Number of GPU devices will be reported to RM to make scheduling decisions. Set to auto (default) let YARN automatically discover GPU resource from system. Manually specify GPU devices if auto detect GPU device failed or admin only want subset of GPU devices managed by YARN. GPU device is identified by their minor device number and index. A common approach to get minor device number of GPUs is using "nvidia-smi -q" and search "Minor Number" output. When manual specify minor numbers, admin needs to include indice of GPUs as well, format is index:minor_number[,index:minor_number...]. An example of manual specification is "0:0,1:1,2:2,3:4" to allow YARN NodeManager to manage GPU devices with indice 0/1/2/3 and minor number 0/1/2/4. numbers . +yarn.nodemanager.resource-plugins.gpu.docker-plugin nvidia-docker-v1 Specify docker command plugin for GPU. By default uses Nvidia docker V1. +yarn.nodemanager.resource-plugins.gpu.docker-plugin.nvidia-docker-v1.endpoint http://localhost:3476/v1.0/docker/cli Specify end point of nvidia-docker-plugin. Please find documentation: https://github.com/NVIDIA For more details. +yarn.nodemanager.resource-plugins.fpga.vendor-plugin.class org.apache.hadoop.yarn.server.nodemanager.containermanager.resourceplugin.fpga.IntelFpgaOpenclPlugin Specify one vendor plugin to handle FPGA devices discovery/IP download/configure. Only IntelFpgaOpenclPlugin is supported by default. We only allow one NM configured with one vendor FPGA plugin now since the end user can put the same vendor's cards in one host. And this also simplify our design. +yarn.nodemanager.resource-plugins.fpga.path-to-discovery-executables When yarn.nodemanager.resource.fpga.allowed-fpga-devices=auto specified, YARN NodeManager needs to run FPGA discovery binary (now only support IntelFpgaOpenclPlugin) to get FPGA information. When value is empty (default), YARN NodeManager will try to locate discovery executable from vendor plugin's preference +yarn.nodemanager.resource-plugins.fpga.allowed-fpga-devices auto Specify FPGA devices which can be managed by YARN NodeManager, split by comma Number of FPGA devices will be reported to RM to make scheduling decisions. Set to auto (default) let YARN automatically discover FPGA resource from system. Manually specify FPGA devices if admin only want subset of FPGA devices managed by YARN. At present, since we can only configure one major number in c-e.cfg, FPGA device is identified by their minor device number. A common approach to get minor device number of FPGA is using "aocl diagnose" and check uevent with device name. A sample manual value for this is like "0,1" +yarn.nodemanager.resource-plugins.fpga.device-discovery-script Absolute path to a script or executable that returns the available FPGA cards. The returned string must be a single line and follow the format: "deviceA/N:M,deviceB/X:Y". Example: "acl0/243:0,acl1/243:1". The numbers after the "/" character are the device major and minor numbers. When the script is enabled, auto-discovery is disabled the "aocl" command is not invoked to verify the available cards. +yarn.nodemanager.resource-plugins.fpga.available-devices List of FPGA available devices in the given node. The value must follow the format: "deviceA/N:M,deviceB/X:Y". Example: "acl0/243:0,acl1/243:1". The numbers after the "/" character are the device major and minor numbers. When this property is used, both auto-discovery and external script are ignored. +yarn.timeline-service.reader.webapp.address ${yarn.timeline-service.webapp.address} The http address of the timeline reader web application. +yarn.timeline-service.reader.webapp.https.address ${yarn.timeline-service.webapp.https.address} The https address of the timeline reader web application. +yarn.timeline-service.reader.bind-host The actual address timeline reader will bind to. If this optional address is set, the reader server will bind to this address and the port specified in yarn.timeline-service.reader.webapp.address. This is most useful for making the service listen to all interfaces by setting to 0.0.0.0. +yarn.nodemanager.numa-awareness.enabled false Whether to enable the NUMA awareness for containers in Node Manager. +yarn.nodemanager.numa-awareness.read-topology false Whether to read the NUMA topology from the system or from the configurations. If the value is true then NM reads the NUMA topology from system using the command 'numactl --hardware'. If the value is false then NM reads the topology from the configurations 'yarn.nodemanager.numa-awareness.node-ids'(for node id's), 'yarn.nodemanager.numa-awareness.<NODE_ID>.memory'(for each node memory), 'yarn.nodemanager.numa-awareness.<NODE_ID>.cpus'(for each node cpus). +yarn.nodemanager.numa-awareness.node-ids NUMA node id's in the form of comma separated list. Memory and No of CPUs will be read using the properties 'yarn.nodemanager.numa-awareness.<NODE_ID>.memory' and 'yarn.nodemanager.numa-awareness.<NODE_ID>.cpus' for each id specified in this value. This property value will be read only when 'yarn.nodemanager.numa-awareness.read-topology=false'. For example, if yarn.nodemanager.numa-awareness.node-ids=0,1 then need to specify memory and cpus for node id's '0' and '1' like below, yarn.nodemanager.numa-awareness.0.memory=73717 yarn.nodemanager.numa-awareness.0.cpus=4 yarn.nodemanager.numa-awareness.1.memory=73727 yarn.nodemanager.numa-awareness.1.cpus=4 +yarn.nodemanager.numa-awareness.numactl.cmd /usr/bin/numactl The numactl command path which controls NUMA policy for processes or shared memory. +yarn.nodemanager.elastic-memory-control.enabled false Enable elastic memory control. This is a Linux only feature. When enabled, the node manager adds a listener to receive an event, if all the containers exceeded a limit. The limit is specified by yarn.nodemanager.resource.memory-mb. If this is not set, the limit is set based on the capabilities. See yarn.nodemanager.resource.detect-hardware-capabilities for details. The limit applies to the physical or virtual (rss+swap) memory depending on whether yarn.nodemanager.pmem-check-enabled or yarn.nodemanager.vmem-check-enabled is set. +yarn.nodemanager.elastic-memory-control.oom-handler org.apache.hadoop.yarn.server.nodemanager.containermanager.linux.resources.DefaultOOMHandler The name of a JVM class. The class must implement the Runnable interface. It is called, if yarn.nodemanager.elastic-memory-control.enabled is set and the system reaches its memory limit. When called the handler must preempt a container, since all containers are frozen by cgroups. Once preempted some memory is released, so that the kernel can resume all containers. Because of this the handler has to act quickly. +yarn.nodemanager.elastic-memory-control.oom-listener.path The path to the oom-listener tool. Elastic memory control is only supported on Linux. It relies on kernel events. The tool forwards these kernel events to the standard input, so that the node manager can preempt containers, in and out-of-memory scenario. You rarely need to update this setting. +yarn.nodemanager.elastic-memory-control.timeout-sec 5 Maximum time to wait for an OOM situation to get resolved before bringing down the node. +yarn.node-attribute.fs-store.root-dir URI for NodeAttributeManager. The default value is /tmp/hadoop-yarn-${user} +yarn.node-attribute.fs-store.impl.class org.apache.hadoop.yarn.server.resourcemanager.nodelabels.FileSystemNodeAttributeStore Choose different implementation of node attribute's storage +yarn.nodemanager.csi-driver-adaptor.addresses CSI driver adaptor addresses on a node manager. This configuration will be loaded by the resource manager to initiate a client for each adaptor in order to communicate with CSI drivers. Note, these addresses should be mapped to the adaptor addresses which runs the controller plugin. +yarn.nodemanager.csi-driver.names CSI driver names running on this node, multiple driver names need to be delimited by comma. The driver name should be same value returned by the getPluginInfo call.For each of the CSI driver name, it must to define following two corresponding properties: "yarn.nodemanager.csi-driver.${NAME}.endpoint" "yarn.nodemanager.csi-driver-adaptor.${NAME}.address" The 1st property defines where the driver's endpoint is; 2nd property defines where the mapping csi-driver-adaptor's address is. What's more, an optional csi-driver-adaptor class can be defined for each csi-driver: "yarn.nodemanager.csi-driver.${NAME}.class" once given, the adaptor will be initiated with the given class instead of the default implementation org.apache.hadoop.yarn.csi.adaptor.DefaultCsiAdaptorImpl. User can plug customized adaptor code for csi-driver with this configuration if necessary. +yarn.resourcemanager.activities-manager.cleanup-interval-ms 5000 The cleanup interval for activities in milliseconds. +yarn.resourcemanager.activities-manager.scheduler-activities.ttl-ms 600000 Time to live for scheduler activities in milliseconds. +yarn.resourcemanager.activities-manager.app-activities.ttl-ms 600000 Time to live for app activities in milliseconds. +yarn.resourcemanager.activities-manager.app-activities.max-queue-length 100 Max queue length for app activities. +yarn.nodemanager.containers-launcher.class org.apache.hadoop.yarn.server.nodemanager.containermanager.launcher.ContainersLauncher Containers launcher implementation for determining how containers are launched within NodeManagers. +yarn.resourcemanager.submission-preprocessor.enabled false Enable the Pre processing of Application Submission context with server side configuration +yarn.resourcemanager.submission-preprocessor.file-path Path to file with hosts for the submission processor to handle. +yarn.resourcemanager.submission-preprocessor.file-refresh-interval-ms 60000 Submission processor refresh interval +yarn.node-labels.exclusive-enforced-partitions Comma-separated list of partitions. If a label P is in this list, then the RM will enforce that an app has resource requests with label P iff that app's node label expression is P. +yarn.workflow-id.tag-prefix workflowid: Prefix used to identify the YARN tag which contains workflow ID. If a tag coming in application submission context has this prefix, whatever follows the prefix will be considered as workflow ID associated with the application. This configuration is used by features such as workflow priority for identifying the workflow associated with an application. +yarn.webapp.enable-rest-app-submissions true Whether or not to allow application submissions via REST. Default is true. +yarn.resourcemanager.am.global.max-attempts The maximum number of application attempts. It's a global setting for all application masters. Each application master can specify its individual maximum number of application attempts via the API, but the individual number cannot be more than the global upper bound. If it is, the resourcemanager will override it. The default number value is set to yarn.resourcemanager.am.max-attempts. +yarn.resourcemanager.application.max-tags 10 Max number of application tags set by user in ApplicationSubmissionContext while submitting application +yarn.resourcemanager.application.max-tag.length 100 Max length of each application tag set by user in ApplicationSubmissionContext while submitting application. +yarn.resourcemanager.application-tag-based-placement.force-lowercase true Specifies whether application tags should be converted to lowercase or not. +yarn.resourcemanager.enable-node-untracked-without-include-path false Whether to enable RM to mark inactive nodes as untracked after the timeout specified by yarn.resourcemanager.node-removal-untracked.timeout-ms and then remove them from nodes list for the YARN cluster without configured include path, which means RM can periodically clear inactive nodes to avoid increasing memory to store these data when enabled, most desired by elastic cloud environment with frequent auto-scaling operations. It works only when the YARN cluster doesn't utilize include file, the key configurations are as follows: yarn.resourcemanager.nodes.exclude-path=/path-to-exclude-file yarn.resourcemanager.nodes.include-path= yarn.resourcemanager.node-removal-untracked.timeout-ms=60000 In this situation, the inactive nodes will never be marked as untracked and removed from the nodes list unless this configuration is enabled: yarn.resourcemanager.enable-node-untracked-without-include-path=true +yarn.scheduler.app-placement-allocator.class In the absence of APPLICATION_PLACEMENT_TYPE_CLASS from the RM application scheduling environments, the value of this config is used to determine the default implementation of AppPlacementAllocator. If APPLICATION_PLACEMENT_TYPE_CLASS is absent from the application scheduling env and this config also has no value present, then default implementation LocalityAppPlacementAllocator is used. +yarn.router.keytab.file The keytab file used by router to login as its service principal. The principal name is configured with dfs.federation.router.kerberos.principal. +yarn.router.kerberos.principal The Router service principal. This is typically set to router/_HOST@REALM.TLD. Each Router will substitute _HOST with its own fully qualified hostname at startup. The _HOST placeholder allows using the same configuration setting on both Router setup. +yarn.router.kerberos.principal.hostname Optional. The hostname for the Router containing this configuration file. Will be different for each machine. Defaults to current hostname. +yarn.router.webapp.appsinfo-enabled false This configuration is used to enable the cache of AppsInfo. If it is set to true, the cache is enabled. If it is set to false, the cache is not enabled. +yarn.router.webapp.appsinfo-cached-count 100 When yarn.router.appsinfo-enabled is set to true, the number of cached appsInfo. Default is 100 +yarn.router.webapp.cross-origin.enabled false Flag to enable cross-origin (CORS) support for Yarn Router. For Yarn Router, also add org.apache.hadoop.security.HttpCrossOriginFilterInitializer to the configuration hadoop.http.filter.initializers in core-site.xml. +yarn.federation.state-store.max-applications 1000 Yarn federation state-store supports querying the maximum number of apps. Default is 1000. +yarn.router.interceptor.user-thread-pool.minimum-pool-size 5 This configurable is used to set the corePoolSize(minimumPoolSize) of the thread pool of the interceptor. Default is 5. +yarn.router.interceptor.user-thread-pool.maximum-pool-size 5 This configuration is used to set the default value of maximumPoolSize of the thread pool of the interceptor. Default is 5. +yarn.router.interceptor.user-thread-pool.keep-alive-time 0s This configurable is used to set the keepAliveTime of the thread pool of the interceptor. Default is 0s. +yarn.router.submit.interval.time 10ms The interval Time between calling different subCluster requests. Default is 10ms. \ No newline at end of file diff --git a/core/identify_param/results/hadoop-yarn-common/conf_params.txt b/core/identify_param/results/hadoop-yarn-common/conf_params.txt new file mode 100644 index 00000000..cc579be2 --- /dev/null +++ b/core/identify_param/results/hadoop-yarn-common/conf_params.txt @@ -0,0 +1,459 @@ +yarn.ipc.record.factory.class +yarn.rpc.nm-command-timeout +yarn.ipc.rpc.class +yarn.ipc.rpc.class +hadoop.security.token.service.use_ip +hadoop.security.dns.log-slow-lookups.enabled +hadoop.security.dns.log-slow-lookups.threshold.ms +hadoop.security.resolver.impl +yarn.ipc.server.factory.class +rpc.engine.org.apache.hadoop.yarn.api.ContainerManagementProtocolPB +rpc.engine.org.apache.hadoop.yarn.api.ContainerManagementProtocolPB +ipc.maximum.data.length +ipc.server.handler.queue.size +ipc.server.max.response.size +ipc.server.read.threadpool.size +ipc.server.read.connection-queue.size +ipc.0.callqueue.impl +ipc.callqueue.impl +ipc.0.scheduler.impl +ipc.scheduler.impl +ipc.0.backoff.enable +ipc.backoff.enable +ipc.0.faircallqueue.priority-levels +ipc.0.scheduler.priority.levels +ipc.0.callqueue.capacity.weights +ipc.0.callqueue.overflow.trigger.failover +hadoop.security.authorization +hadoop.security.authentication +ipc.server.listen.queue.size +ipc.server.reuseaddr +ipc.client.idlethreshold +ipc.client.connection.idle-scan-interval.ms +ipc.client.connection.maxidletime +ipc.client.kill.max +ipc.server.max.connections +rpc.metrics.percentiles.intervals +rpc.metrics.timeunit +ipc.server.tcpnodelay +ipc.server.log.slow.rpc +ipc.server.purge.interval +hadoop.security.auth_to_local +hadoop.security.auth_to_local.mechanism +hadoop.kerberos.min.seconds.before.relogin +hadoop.kerberos.keytab.login.autorenewal.enabled +hadoop.security.group.mapping +hadoop.security.groups.cache.secs +hadoop.security.groups.negative-cache.secs +hadoop.security.groups.cache.warn.after.ms +hadoop.security.groups.cache.background.reload +hadoop.security.groups.cache.background.reload.threads +hadoop.user.group.static.mapping.overrides +hadoop.user.group.metrics.percentiles.intervals +ipc.server.metrics.update.runner.interval +rpc.engine.org.apache.hadoop.ipc.ProtocolMetaInfoPB +rpc.engine.org.apache.hadoop.ipc.ProtocolMetaInfoPB +yarn.ipc.client.factory.class +hadoop.token.files +hadoop.tokens +yarn.rpc.nm-command-timeout +hadoop.rpc.socket.factory.class.default +ipc.client.connect.max.retries +ipc.client.connect.retry.interval +ipc.client.connect.max.retries.on.sasl +ipc.client.connect.max.retries.on.timeouts +ipc.client.tcpnodelay +ipc.client.low-latency +ipc.client.ping +ipc.ping.interval +ipc.client.connect.timeout +ipc.client.fallback-to-simple-auth-allowed +ipc.client.bind.wildcard.addr +ipc.client.async.calls.max +yarn.resourcemanager.configuration.provider-class +yarn.resource-types +yarn.resource-types.memory-mb.minimum-allocation +yarn.scheduler.minimum-allocation-mb +yarn.resource-types.memory-mb.maximum-allocation +yarn.scheduler.maximum-allocation-mb +yarn.resource-types.vcores.minimum-allocation +yarn.scheduler.minimum-allocation-vcores +yarn.resource-types.vcores.maximum-allocation +yarn.scheduler.maximum-allocation-vcores +ipc.maximum.response.length +yarn.resourcemanager.ha.enabled +yarn.resourcemanager.ha.rm-ids +yarn.resourcemanager.hostname.rm1 +yarn.resourcemanager.hostname.rm2 +yarn.client.failover-max-attempts +yarn.resourcemanager.connect.max-wait.ms +yarn.resourcemanager.connect.retry-interval.ms +yarn.resourcemanager.ha.enabled +yarn.resourcemanager.connect.max-wait.ms +yarn.resourcemanager.connect.retry-interval.ms +yarn.client.failover-sleep-base-ms +yarn.client.failover-sleep-max-ms +yarn.client.failover-max-attempts +yarn.client.failover-proxy-provider +yarn.resourcemanager.ha.rm-ids +yarn.resourcemanager.ha.id +yarn.client.failover-retries +ipc.client.connect.max.retries +yarn.client.failover-retries-on-socket-timeouts +ipc.client.connect.max.retries.on.timeouts +yarn.http.policy +yarn.resourcemanager.ha.id +yarn.resourcemanager.address.rm1 +yarn.resourcemanager.hostname.rm1 +yarn.resourcemanager.address.rm1 +rpc.engine.org.apache.hadoop.yarn.api.ApplicationClientProtocolPB +rpc.engine.org.apache.hadoop.yarn.api.ApplicationClientProtocolPB +ipc.client.rpc-timeout.ms +yarn.resourcemanager.address.rm2 +yarn.resourcemanager.hostname.rm2 +yarn.resourcemanager.address.rm2 +yarn.resourcemanager.hostname +yarn.resourcemanager.address +yarn.resourcemanager.scheduler.address +yarn.resourcemanager.scheduler.address.rm1 +yarn.resourcemanager.scheduler.address.rm1 +yarn.resourcemanager.scheduler.address.rm2 +yarn.resourcemanager.scheduler.address.rm2 +yarn.timeline-service.enabled +yarn.timeline-service.version +yarn.timeline-service.enabled +yarn.timeline-service.versions +yarn.timeline-service.version +yarn.timeline-service.webapp.address +yarn.timeline-service.hostname +yarn.timeline-service.reader.webapp.address +yarn.resourcemanager.cluster-id +yarn.timeline-service.http-authentication.type +yarn.timeline-service.client.max-retries +yarn.timeline-service.client.retry-interval-ms +fs.AbstractFileSystem.file.impl +fs.creation.parallel.count +fs.client.resolve.remote.symlinks +fs.local.block.size +yarn.timeline-service.entity-group-fs-store.active-dir +yarn.timeline-service.entity-group-fs-store.summary-entity-types +yarn.timeline-service.entity-group-fs-store.active-dir +fs.defaultFS +fs.file.impl +file.bytes-per-checksum +hadoop.service.shutdown.timeout +fs.automatic.close +yarn.timeline-service.entity-group-fs-store.summary-entity-types +yarn.timeline-service.client.fd-flush-interval-secs +yarn.timeline-service.client.fd-clean-interval-secs +yarn.timeline-service.client.fd-retain-secs +yarn.timeline-service.client.internal-timers-ttl-secs +yarn.timeline-service.entity-file.fs-support-append +yarn.timeline-service.entity-group-fs-store.with-user-dir +yarn.timeline-service.client.internal-attempt-dir-cache-size +fs.permissions.umask-mode +io.file.buffer.size +fs.iostatistics.thread.level.enabled +file.stream-buffer-size +yarn.timeline-service.entity-group-fs-store.with-user-dir +yarn.timeline-service.client.max-retries +yarn.timeline-service.client.retry-interval-ms +hadoop.security.authentication +yarn.timeline-service.http-authentication.type +yarn.http.policy +ssl.client.keystore.location +ssl.client.keystore.password +ssl.client.keystore.keypassword +ssl.client.truststore.location +ssl.client.truststore.password +ssl.client.truststore.reload.interval +ssl.server.keystore.location +ssl.server.keystore.password +ssl.server.keystore.keypassword +ssl.server.truststore.location +ssl.server.truststore.password +ssl.server.truststore.reload.interval +hadoop.ssl.hostname.verifier +hadoop.ssl.client.conf +hadoop.ssl.server.conf +hadoop.ssl.require.client.cert +yarn.timeline-service.webapp.https.address +hadoop.ssl.require.client.cert +hadoop.ssl.client.conf +hadoop.ssl.keystores.factory.class +hadoop.ssl.enabled.protocols +ssl.server.exclude.cipher.list +ssl.client.stores.reload.interval +ssl.client.keystore.type +ssl.client.truststore.type +ssl.client.truststore.location +hadoop.security.credential.provider.path +hadoop.security.credential.clear-text-fallback +ssl.client.truststore.password +ssl.client.truststore.reload.interval +hadoop.ssl.hostname.verifier +yarn.timeline-service.timeline-client.number-of-async-entities-to-merge +yarn.timeline-service.timeline-client.number-of-async-entities-to-merge +yarn.timeline-service.client.drain-entities.timeout.ms +mapreduce.map.env +mapreduce.map.env.env4 +mapreduce.map.env.env2 +mapreduce.child.env +mapreduce.child.env +mapreduce.child.env.env4 +mapreduce.child.env.env2 +mapreduce.map.envbogus +mapreduce.reduce.env +mapreduce.reduce.env.env2 +mapreduce.reduce.env.env4 +mapreduce.reduce.env +mapreduce.reduce.env.env2 +mapreduce.reduce.env.env4 +mapreduce.map.env +mapreduce.map.env.env4 +mapreduce.map.env.env2 +bogus1 +yarn.nodemanager.container-monitor.procfs-tree.smaps-based-rss.enabled +yarn.nodemanager.container-monitor.procfs-tree.smaps-based-rss.enabled +yarn.resource-types +yarn.resource-types.test.units +yarn.resource-types.test.type +yarn.resource-types.test.minimum-allocation +yarn.resource-types.test.maximum-allocation +yarn.resource-types.test.tags +yarn.resource-types.resource2.units +yarn.resource-types.resource2.type +yarn.resource-types.resource2.minimum-allocation +yarn.resource-types.resource2.maximum-allocation +yarn.resource-types.resource2.tags +yarn.resource-types.yarn.io/gpu.units +yarn.resource-types.yarn.io/gpu.type +yarn.resource-types.yarn.io/gpu.minimum-allocation +yarn.resource-types.yarn.io/gpu.maximum-allocation +yarn.resource-types.yarn.io/gpu.tags +yarn.resource-types..units +yarn.resource-types.resource1.units +yarn.resource-types.resource1.units +yarn.resource-types.resource1.type +yarn.resource-types.resource1.minimum-allocation +yarn.resource-types.resource1.maximum-allocation +yarn.resource-types.resource1.tags +yarn.resource-types.resource2.units +yarn.resource-types.resource3.units +yarn.resource-types.resource3.type +yarn.resource-types.resource3.minimum-allocation +yarn.resource-types.resource3.maximum-allocation +yarn.resource-types.resource3.tags +yarn.resource-types.yarn.io/test-volume.units +yarn.resource-types.yarn.io/test-volume.type +yarn.resource-types.yarn.io/test-volume.minimum-allocation +yarn.resource-types.yarn.io/test-volume.maximum-allocation +yarn.resource-types.yarn.io/test-volume.tags +mapreduce.mapper.proper.rt.yarn.io/gpu +mapreduce.mapper.proper.rt.yarn.io/fpga +mapreduce.mapper.proper.rt.yarn.io/anything_without_a_dot +mapreduce.mapper.proper.rt.regular_rt +mapreduce.mapper.proper.rt.regular_rt/with_slash +mapreduce.mapper.proper.rt.too.many_parts +mapreduce.mapper.proper.rt.yarn.notio/gpu +incorrect.prefix.yarn.io/gpu +mapreduce.mapper.proper.rt.yarn.io/ +mapreduce.mapper.proper.rt. +yarn.resource-types.yarn.io/fpga.units +yarn.resource-types.yarn.io/fpga.type +yarn.resource-types.yarn.io/fpga.minimum-allocation +yarn.resource-types.yarn.io/fpga.maximum-allocation +yarn.resource-types.yarn.io/fpga.tags +yarn.resource-types.memory-mb.units +yarn.resource-types.memory-mb.type +yarn.resource-types.memory-mb.tags +yarn.resource-types.memory.units +yarn.resource-types.memory.type +yarn.resource-types.memory.minimum-allocation +yarn.resource-types.memory.maximum-allocation +yarn.resource-types.memory.tags +yarn.resource-types.memory-mb.units +yarn.resource-types.vcores.units +yarn.resource-types.vcores.units +yarn.resource-types.vcores.type +yarn.resource-types.vcores.tags +yarn.resource-types.memory.units +org.apache.hadoop.yarn.util.TestFSDownload +org.apache.hadoop.yarn.util.TestFSDownload +fs.file.impl.disable.cache +fs.option.openfile.read.policy +fs.option.openfile.buffer.size +fs.permissions.umask-mode +net.topology.node.switch.mapping.impl +net.topology.script.file.name +net.topology.node.switch.mapping.impl +net.topology.script.file.name +net.topology.script.number.args +yarn.timeline-service.flowname.max-size +yarn.timeline-service.flowname.max-size +yarn.acl.enable +yarn.admin.acl +yarn.admin.acl +yarn.acl.enable +yarn.dispatcher.print-events-info.threshold +yarn.dispatcher.print-thread-pool.core-pool-size +yarn.dispatcher.print-thread-pool.maximum-pool-size +yarn.dispatcher.print-thread-pool.keep-alive-time +yarn.dispatcher.drain-events.timeout +yarn.dispatcher.print-events-info.threshold +yarn.dispatcher.drain-events.timeout +hadoop.security.credential.provider.path +hadoop.security.credstore.java-keystore-provider.password-file +invalid-alias +ssl.server.keystore.location +ssl.server.keystore.type +ssl.server.truststore.location +ssl.server.truststore.type +yarn.resourcemanager.webapp.address +yarn.resourcemanager.webapp.address.rm1 +yarn.resourcemanager.webapp.address.rm2 +yarn.resourcemanager.webapp.address.rm1 +yarn.resourcemanager.webapp.address +ssl.server.keystore.keypassword +ssl.server.keystore.password +ssl.server.truststore.password +hadoop.http.temp.dir +bind.address +hadoop.http.max.threads +hadoop.http.logs.enabled +hadoop.jetty.logs.serve.aliases +hadoop.http.metrics.enabled +hadoop.http.filter.initializers +bind.address +hadoop.prometheus.endpoint.enabled +hadoop.http.max.request.header.size +hadoop.http.max.response.header.size +hadoop.http.idle_timeout.ms +hadoop.http.socket.backlog.size +hadoop.http.sni.host.check.enabled +hadoop.http.acceptor.count +hadoop.http.selector.count +ssl.{0}.stores.reload.interval +hadoop.http.authentication.type +hadoop.http.authentication.kerberos.principal +hadoop.http.authentication.kerberos.keytab +hadoop.http.authentication.simple.anonymous.allowed +hadoop.http.authentication.signature.secret.file +hadoop.http.authentication.token.validity +dfs.web.ugi +hadoop.http.staticuser.user +abc +abc +rpc.engine.org.apache.hadoop.yarn.api.ApplicationMasterProtocolPB +rpc.engine.org.apache.hadoop.yarn.api.ApplicationMasterProtocolPB +yarn.node-labels.enabled +yarn.node-labels.enabled +yarn.node-labels.configuration-type +yarn.node-labels.configuration-type +yarn.node-labels.fs-store.impl.class +yarn.node-labels.fs-store.root-dir +yarn.node-labels.fs-store.impl.class +yarn.node-labels.fs-store.root-dir +yarn.fs-store.file.replication +yarn.log-aggregation-enable +yarn.nodemanager.remote-app-log-dir +yarn.log-aggregation.file-formats +yarn.log-aggregation.TFile.remote-app-log-dir +yarn.nodemanager.remote-app-log-dir +yarn.log-aggregation.TFile.remote-app-log-dir-suffix +yarn.nodemanager.remote-app-log-dir-suffix +yarn.log-aggregation.file-controller.TFile.class +yarn.nodemanager.log-aggregation.num-log-files-per-app +yarn.nodemanager.log-aggregation.compression-type +tfile.fs.output.buffer.size +tfile.io.chunk.size +yarn.nodemanager.remote-app-log-dir-include-older +fs.option.openfile.length +tfile.fs.input.buffer.size +yarn.nodemanager.hostname +yarn.nodemanager.webapp.address +yarn.log-aggregation-enable +fs.AbstractFileSystem.har.impl +fs.har.metadatacache.entries +fs.mockfs.impl +yarn.log-aggregation.retain-seconds +yarn.log-aggregation.retain-check-interval-seconds +yarn.nodemanager.remote-app-log-dir-suffix +yarn.log-aggregation.file-formats +yarn.log-aggregation.file-controller.TFile.class +fs.mockfs.impl.disable.cache +fs.mockfs.impl +yarn.log-aggregation.retain-seconds +yarn.log-aggregation.retain-check-interval-seconds +yarn.log-aggregation.file-controller.IFile.class +yarn.log-aggregation.IFile.remote-app-log-dir +yarn.log-aggregation.IFile.remote-app-log-dir-suffix +yarn.log-aggregation.TFile.remote-app-log-dir +yarn.log-aggregation.TFile.remote-app-log-dir-suffix +yarn.log-aggregation.IFile.remote-app-log-dir +yarn.log-aggregation.IFile.remote-app-log-dir-suffix +yarn.log-aggregation.file-controller.IFile.class +indexedFile.fs.op.num-retries +indexedFile.fs.retry-interval-ms +indexedFile.log.roll-over.max-file-size-gb +yarn.log-aggregation.TestLogAggregationFileController.remote-app-log-dir +yarn.log-aggregation.TestLogAggregationFileController.remote-app-log-dir-suffix +yarn.log-aggregation.file-controller.TestLogAggregationFileController.class +yarn.log-aggregation.file-controller.TestLogAggregationFileController.class +yarn.log-aggregation.TestLogAggregationFileController.remote-app-log-dir +yarn.log-aggregation.TestLogAggregationFileController.remote-app-log-dir-suffix +yarn.nodemanager.remote-app-log-dir.groupname +yarn.nodemanager.remote-app-log-dir.groupname +yarn.log-aggregation.Indexed.remote-app-log-dir +yarn.log-aggregation.Indexed.remote-app-log-dir-suffix +yarn.nodemanager.log-aggregation.compression-type +yarn.ipc.client.factory.class +yarn.ipc.server.factory.class +yarn.ipc.record.factory.class +yarn.resourcemanager.resource-tracker.address +yarn.resourcemanager.bind-host +yarn.resourcemanager.resource-tracker.address +yarn.resourcemanager.bind-host +yarn.nodemanager.localizer.address +yarn.nodemanager.bind-host +yarn.nodemanager.bind-host +yarn.nodemanager.localizer.address +yarn.nodemanager.localizer.address.rm1 +yarn.nodemanager.address +yarn.nodemanager.address +yarn.resourcemanager.address +yarn.resourcemanager.webapp.address.rm2 +yarn.resourcemanager.admin.address.rm1 +yarn.resourcemanager.admin.address.rm2 +yarn.resourcemanager.resource-tracker.address.rm1 +yarn.resourcemanager.resource-tracker.address.rm2 +yarn.resourcemanager.admin.address.rm1 +yarn.resourcemanager.resource-tracker.address.rm1 +yarn.resourcemanager.admin.address.rm2 +yarn.resourcemanager.resource-tracker.address.rm2 +yarn.resourcemanager.ha.automatic-failover.enabled +yarn.resourcemanager.ha.curator-leader-elector.enabled +yarn.resourcemanager.ha.automatic-failover.embedded +yarn.resourcemanager.scheduler.address +yarn.resourcemanager.admin.address +yarn.resourcemanager.admin.address +yarn.resourcemanager.address.rm +yarn.resourcemanager.scheduler.address.rm +yarn.resourcemanager.admin.address.rm +yarn.resourcemanager.resource-tracker.address.rm +yarn.resourcemanager.webapp.address.rm +yarn.resourcemanager.address.rm3 +yarn.resourcemanager.scheduler.address.rm3 +yarn.resourcemanager.admin.address.rm3 +yarn.resourcemanager.resource-tracker.address.rm3 +yarn.resourcemanager.webapp.address.rm3 +yarn.resourcemanager.address.rm3 +yarn.resourcemanager.scheduler.address.rm3 +yarn.resourcemanager.admin.address.rm3 +yarn.resourcemanager.resource-tracker.address.rm3 +yarn.resourcemanager.webapp.address.rm3 +yarn.resourcemanager.ha.automatic-failover.enabled +yarn.resourcemanager.ha.automatic-failover.embedded +yarn.resourcemanager.ha.curator-leader-elector.enabled +yarn.resourcemanager.application-tag-based-placement.force-lowercase +hadoop.security.auth_to_local From b640fac0d5cec12e6cd4bef58647cc5efdfd23fc Mon Sep 17 00:00:00 2001 From: yuanfei2 Date: Wed, 30 Nov 2022 22:02:58 -0600 Subject: [PATCH 04/15] skipTrace added --- core/identify_param/runner.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/identify_param/runner.py b/core/identify_param/runner.py index 2ce7fd99..034a95cb 100644 --- a/core/identify_param/runner.py +++ b/core/identify_param/runner.py @@ -42,7 +42,7 @@ def get_full_report_path(self, suffix): def traceInTestCode(self, trace): if "Test" in trace: return True - if self.module == "hadoop-common" or self.module == "hadoop-hdfs" or self.module == "hbase-server": + if self.module == "hadoop-common" or self.module == "hadoop-hdfs" or self.module == "hbase-server" or self.module == "hadoop-yarn-common": if "MiniDFSCluster" in trace: return True if "MiniZKFCCluster" in trace: @@ -65,7 +65,7 @@ def skipTrace(self, trace): return True if "sun.reflect" in trace: return True - if self.module == "hadoop-common" or self.module == "hadoop-hdfs" or self.module == "hbase-server": + if self.module == "hadoop-common" or self.module == "hadoop-hdfs" or self.module == "hbase-server" or self.module == "hadoop-yarn-common": if "org.apache.hadoop.conf" in trace and "Test" not in trace: return True if "org.mockito" in trace: From 110db32ed2292a7b1fc381053760918bade9c65f Mon Sep 17 00:00:00 2001 From: yuanfei2 Date: Wed, 30 Nov 2022 22:03:58 -0600 Subject: [PATCH 05/15] added test method list --- .../hadoop-yarn-common/test_method_list.json | 384 ++++++++++++++++++ 1 file changed, 384 insertions(+) create mode 100644 core/identify_param/results/hadoop-yarn-common/test_method_list.json diff --git a/core/identify_param/results/hadoop-yarn-common/test_method_list.json b/core/identify_param/results/hadoop-yarn-common/test_method_list.json new file mode 100644 index 00000000..c99fdb45 --- /dev/null +++ b/core/identify_param/results/hadoop-yarn-common/test_method_list.json @@ -0,0 +1,384 @@ +[ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.client.TestClientRMProxy#testProxyUserCorrectUGI", + "org.apache.hadoop.yarn.client.TestClientRMProxy#testGetRMDelegationTokenService", + "org.apache.hadoop.yarn.client.TestClientRMProxy#testGetAMRMTokenService", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainersForAppAttempt", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetApplication", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainer", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntity", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainers", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenOperationsRetry", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineClientCleanup", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostIncompleteEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesWithError", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenDisabledOnSimpleAuth", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testCheckRetryCount", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineConnectorDestroy", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSyncCall", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSetTimelineToken", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionCalls", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionMultipleRetry", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testASyncCallMerge", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testConfigurableNumberOfMerges", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testAfterStop", + "org.apache.hadoop.yarn.util.TestResourceCalculatorProcessTree#testCreatedInstanceConfigured", + "org.apache.hadoop.yarn.util.TestResourceCalculatorProcessTree#testCreateInstance", + "org.apache.hadoop.yarn.util.TestTimelineServiceHelper#testMapCastToHashMap", + "org.apache.hadoop.yarn.util.TestTimes#testNegativeStartandFinishTimes", + "org.apache.hadoop.yarn.util.TestTimes#validateISO", + "org.apache.hadoop.yarn.util.TestTimes#testPositiveStartandFinishTimes", + "org.apache.hadoop.yarn.util.TestTimes#testFinishTimesAheadOfStartTimes", + "org.apache.hadoop.yarn.util.TestTimes#testNegativeStartTimes", + "org.apache.hadoop.yarn.util.TestTimes#testNegativeFinishTimes", + "org.apache.hadoop.yarn.util.TestYarnVersionInfo#versionInfoGenerated", + "org.apache.hadoop.yarn.util.TestApps#testSetEnvFromInputPropertyDefault", + "org.apache.hadoop.yarn.util.TestApps#testSetEnvFromInputPropertyCommas", + "org.apache.hadoop.yarn.util.TestApps#testSetEnvFromInputString", + "org.apache.hadoop.yarn.util.TestApps#testSetEnvFromInputProperty", + "org.apache.hadoop.yarn.util.TestApps#testSetEnvFromInputPropertyNull", + "org.apache.hadoop.yarn.util.TestApps#testSetEnvFromInputPropertyOverrideDefault", + "org.apache.hadoop.yarn.util.TestBoundedAppender#initWithZeroLimitThrowsException", + "org.apache.hadoop.yarn.util.TestBoundedAppender#appendLastAboveLimitPreservesLastMessagePostfix", + "org.apache.hadoop.yarn.util.TestBoundedAppender#nullAppendedNullStringRead", + "org.apache.hadoop.yarn.util.TestBoundedAppender#appendMiddleAboveLimitPreservesLastMessageAndMiddlePostfix", + "org.apache.hadoop.yarn.util.TestBoundedAppender#appendValuesBelowLimitAreReadCorrectlyInFifoOrder", + "org.apache.hadoop.yarn.util.TestBoundedAppender#appendBelowLimitOnceValueIsReadCorrectly", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testProcessTreeDump", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testProcessTree", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testMemForOlderProcesses", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testCpuAndMemoryForProcessTree", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testDestroyProcessTree", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithExtraResource[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithEmptyCluster[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompare[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithNoExtraResource[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testNormalize[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioNumeratorAndDenominatorIsZero[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithOnlyMandatory[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsIn[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioDenominatorIsZero[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsInDiagnosticsCollector[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithExtraResource[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithEmptyCluster[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompare[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithNoExtraResource[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testNormalize[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioNumeratorAndDenominatorIsZero[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithOnlyMandatory[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsIn[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioDenominatorIsZero[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsInDiagnosticsCollector[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateSimpleResourceWithSameIntValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testAdd", + "org.apache.hadoop.yarn.util.resource.TestResources#testSubtract", + "org.apache.hadoop.yarn.util.resource.TestResources#testClone", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateResourceWithSameIntValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyRoundUp", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndRoundUpCustomResources", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateSimpleResourceWithSameLongValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testCompareToWithNoneResource", + "org.apache.hadoop.yarn.util.resource.TestResources#testComponentwiseMax", + "org.apache.hadoop.yarn.util.resource.TestResources#testComponentwiseMin", + "org.apache.hadoop.yarn.util.resource.TestResources#testFitsIn", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateResourceWithSameLongValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiply", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndRoundDown", + "org.apache.hadoop.yarn.util.resource.TestResources#testCompareToWithUnboundedResource", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndAddTo", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetNodeResourcesRedefineGpuErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testInitializeResourcesMap", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testResourceNameFormatValidation", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypes", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformationWithDiffUnits", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testMultipleOpsForResourcesWithTags", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetRequestedResourcesFromConfig", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetNodeResourcesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testResourceUnitParsing", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetNodeResourcesRedefineFpgaErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformation", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigs", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testInitializeResourcesMapErrors", + "org.apache.hadoop.yarn.util.TestFSDownload#testDirDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testUniqueDestinationPath", + "org.apache.hadoop.yarn.util.TestFSDownload#testResourceTimestampChangeDuringDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZipWithTurkishLocale", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPatternJar", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchive", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveTgz", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZip", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadBadPublic", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPublicWithStatCache", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownload", + "org.apache.hadoop.yarn.util.TestRackResolverScriptBasedMapping#testScriptName", + "org.apache.hadoop.yarn.util.TestLRUCacheHashMap#testLRUCache", + "org.apache.hadoop.yarn.util.TestLog4jWarningErrorMetricsAppender#testWarningCounts", + "org.apache.hadoop.yarn.util.TestLog4jWarningErrorMetricsAppender#testPurge", + "org.apache.hadoop.yarn.util.TestLog4jWarningErrorMetricsAppender#testErrorMessages", + "org.apache.hadoop.yarn.util.TestLog4jWarningErrorMetricsAppender#testWarningMessages", + "org.apache.hadoop.yarn.util.TestLog4jWarningErrorMetricsAppender#testErrorCounts", + "org.apache.hadoop.yarn.util.TestLog4jWarningErrorMetricsAppender#testInfoDebugTrace", + "org.apache.hadoop.yarn.util.TestRackResolver#testCaching", + "org.apache.hadoop.yarn.util.TestRackResolver#testMultipleHosts", + "org.apache.hadoop.yarn.util.timeline.TestShortenedFlowName#testShortenedFlowName", + "org.apache.hadoop.yarn.util.timeline.TestShortenedFlowName#testRemovingUUID", + "org.apache.hadoop.yarn.util.TestAdHocLogDumper#testDumpingSchedulerLogs", + "org.apache.hadoop.yarn.util.TestConverterUtils#testNodeIdWithDefaultPort", + "org.apache.hadoop.yarn.util.TestConverterUtils#testInvalidAppattemptId", + "org.apache.hadoop.yarn.util.TestConverterUtils#testConvertUrlWithNoPort", + "org.apache.hadoop.yarn.util.TestConverterUtils#testContainerIdWithEpoch", + "org.apache.hadoop.yarn.util.TestConverterUtils#testContainerId", + "org.apache.hadoop.yarn.util.TestConverterUtils#testContainerIdNull", + "org.apache.hadoop.yarn.util.TestConverterUtils#testConvertUrlWithUserinfo", + "org.apache.hadoop.yarn.util.TestConverterUtils#testApplicationId", + "org.apache.hadoop.yarn.util.TestConverterUtils#testInvalidContainerId", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccessWithPartialACLS", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccess", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccessWithNullACLS", + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testDispatcherMetricsHistogram", + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testDispatcherOnCloseIfQueueEmpty", + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testPrintDispatcherEventDetails", + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testMetricsForDispatcher", + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testPrintDispatcherEventDetailsAvoidDeadLoop", + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testDispatchStopOnTimeout", + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testDrainDispatcherDrainEventsOnStop", + "org.apache.hadoop.yarn.webapp.TestSubViews#testSubView", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetPassword", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetHtmlEscapedURIWithQueryString", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testAppendQueryParams", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testLoadSslConfiguration", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#TestRMWebAppURLRemoteAndLocal", + "org.apache.hadoop.yarn.webapp.util.TestWebServiceClient#testGetWebServiceClient", + "org.apache.hadoop.yarn.webapp.util.TestWebServiceClient#testCreateClient", + "org.apache.hadoop.yarn.webapp.TestParseRoute#testTrailingPaddings", + "org.apache.hadoop.yarn.webapp.TestParseRoute#testDefaultAction", + "org.apache.hadoop.yarn.webapp.TestParseRoute#testDefaultController", + "org.apache.hadoop.yarn.webapp.TestParseRoute#testPartialCapture1", + "org.apache.hadoop.yarn.webapp.TestParseRoute#testPartialCapture2", + "org.apache.hadoop.yarn.webapp.TestParseRoute#testMissingLeadingSlash", + "org.apache.hadoop.yarn.webapp.TestParseRoute#testMissingAction", + "org.apache.hadoop.yarn.webapp.TestParseRoute#testNormalAction", + "org.apache.hadoop.yarn.webapp.TestParseRoute#testLeadingPaddings", + "org.apache.hadoop.yarn.webapp.TestParseRoute#testDefaultCapture", + "org.apache.hadoop.yarn.webapp.view.TestTwoColumnCssPage#shouldNotThrow", + "org.apache.hadoop.yarn.webapp.view.TestHtmlPage#testShort", + "org.apache.hadoop.yarn.webapp.view.TestHtmlPage#testUsual", + "org.apache.hadoop.yarn.webapp.view.TestHtmlBlock#testShortPage", + "org.apache.hadoop.yarn.webapp.view.TestHtmlBlock#testUsual", + "org.apache.hadoop.yarn.webapp.view.TestHtmlBlock#testShortBlock", + "org.apache.hadoop.yarn.webapp.view.TestCommonViews#testJQueryUI", + "org.apache.hadoop.yarn.webapp.view.TestCommonViews#testFooterBlock", + "org.apache.hadoop.yarn.webapp.view.TestCommonViews#testHeaderBlock", + "org.apache.hadoop.yarn.webapp.view.TestCommonViews#testErrorPage", + "org.apache.hadoop.yarn.webapp.view.TestCommonViews#testInfoBlock", + "org.apache.hadoop.yarn.webapp.view.TestInfoBlock#testMultilineInfoBlock", + "org.apache.hadoop.yarn.webapp.view.TestInfoBlock#testJavaScriptInfoBlock", + "org.apache.hadoop.yarn.webapp.view.TestTwoColumnLayout#shouldNotThrow", + "org.apache.hadoop.yarn.webapp.TestWebApp#testYARNWebAppContext", + "org.apache.hadoop.yarn.webapp.TestWebApp#testDefaultRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithBindAddressNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testEncodedUrl", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testPortRanges", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePathsNoName", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreate", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCustomRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePaths", + "org.apache.hadoop.yarn.webapp.TestWebApp#testRobotsText", + "org.apache.hadoop.yarn.webapp.hamlet2.TestParseSelector#testMissingAll", + "org.apache.hadoop.yarn.webapp.hamlet2.TestParseSelector#testMissingClass", + "org.apache.hadoop.yarn.webapp.hamlet2.TestParseSelector#testMultiClass", + "org.apache.hadoop.yarn.webapp.hamlet2.TestParseSelector#testNormal", + "org.apache.hadoop.yarn.webapp.hamlet2.TestParseSelector#testMissingId", + "org.apache.hadoop.yarn.webapp.hamlet2.TestHamlet#testSubViews", + "org.apache.hadoop.yarn.webapp.hamlet2.TestHamlet#testPreformatted", + "org.apache.hadoop.yarn.webapp.hamlet2.TestHamlet#testTable", + "org.apache.hadoop.yarn.webapp.hamlet2.TestHamlet#testScriptStyle", + "org.apache.hadoop.yarn.webapp.hamlet2.TestHamlet#testEnumAttrs", + "org.apache.hadoop.yarn.webapp.hamlet2.TestHamlet#testHamlet", + "org.apache.hadoop.yarn.webapp.hamlet2.TestHamletImpl#testSetSelector", + "org.apache.hadoop.yarn.webapp.hamlet2.TestHamletImpl#testSetLinkHref", + "org.apache.hadoop.yarn.webapp.hamlet2.TestHamletImpl#testSetScriptSrc", + "org.apache.hadoop.yarn.webapp.hamlet2.TestHamletImpl#testGeneric", + "org.apache.hadoop.yarn.webapp.test.TestWebAppTests#testRequestScope", + "org.apache.hadoop.yarn.webapp.test.TestWebAppTests#testCreateInjector2", + "org.apache.hadoop.yarn.webapp.test.TestWebAppTests#testCreateInjector", + "org.apache.hadoop.yarn.webapp.test.TestWebAppTests#testInstances", + "org.apache.hadoop.yarn.TestYarnUncaughtExceptionHandler#testUncaughtExceptionHandlerWithError", + "org.apache.hadoop.yarn.TestYarnUncaughtExceptionHandler#testUncaughtExceptionHandlerWithRuntimeException", + "org.apache.hadoop.yarn.TestYarnUncaughtExceptionHandler#testUncaughtExceptionHandlerWithOutOfMemoryError", + "org.apache.hadoop.yarn.ipc.TestRPCUtil#testRPCIOExceptionUnwrapping", + "org.apache.hadoop.yarn.ipc.TestRPCUtil#testRPCRuntimeExceptionUnwrapping", + "org.apache.hadoop.yarn.ipc.TestRPCUtil#testRemoteIOExceptionUnwrapping", + "org.apache.hadoop.yarn.ipc.TestRPCUtil#testRemoteYarnExceptionDerivativeUnwrapping", + "org.apache.hadoop.yarn.ipc.TestRPCUtil#testUnknownExceptionUnwrapping", + "org.apache.hadoop.yarn.ipc.TestRPCUtil#testRemoteYarnExceptionUnwrapping", + "org.apache.hadoop.yarn.ipc.TestRPCUtil#testRemoteIOExceptionDerivativeUnwrapping", + "org.apache.hadoop.yarn.ipc.TestRPCUtil#testRemoteRuntimeExceptionUnwrapping", + "org.apache.hadoop.yarn.ipc.TestRPCUtil#testRemoteYarnExceptionWithoutStringConstructor", + "org.apache.hadoop.yarn.ipc.TestRPCUtil#testUnexpectedRemoteExceptionUnwrapping", + "org.apache.hadoop.yarn.ipc.TestRPCUtil#testRPCServiceExceptionUnwrapping", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.TestRecordFactory#testPbRecordFactory", + "org.apache.hadoop.yarn.TestContainerLogAppender#testAppendInClose", + "org.apache.hadoop.yarn.nodelabels.TestNodeLabelUtil#testIsNodeAttributesEquals", + "org.apache.hadoop.yarn.nodelabels.TestNodeLabelUtil#testAttributeValueAddition", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddInvalidlabel", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddlabelWithExclusivity", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testReplaceLabelsOnHostsShouldUpdateNodesBelongTo", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsToNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testGetNodeLabelsInfo", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testTrimLabelsWhenAddRemoveNodeLabels", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddRemovelabel", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddlabelWithCase", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testTrimLabelsWhenModifyLabelsOnNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsToNodesForSelectedLabels", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testRemoveNodeLabelsInfo", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testRemovelabelWithNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testNoMoreThanOneLabelExistedInOneHost", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsInfoToNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddReplaceRemoveLabelsOnNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testNodeLabelsDisabled", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testReplaceLabelsOnNodeInDistributedMode", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[1]", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAccessDenied", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBlockContainsPortNumForUnavailableAppLog", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBadLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlockHar", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlock", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testNoLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRefreshLogRetentionSettings", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testCheckInterval", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletionTwoControllers", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletion", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRobustLogDeletion", + "org.apache.hadoop.yarn.logaggregation.TestLogAggregationMetaCollector#testAllNull", + "org.apache.hadoop.yarn.logaggregation.TestLogAggregationMetaCollector#testMultipleFileRegex", + "org.apache.hadoop.yarn.logaggregation.TestLogAggregationMetaCollector#testMultipleNodeRegexRequest", + "org.apache.hadoop.yarn.logaggregation.TestLogAggregationMetaCollector#testInvalidQueryStrings", + "org.apache.hadoop.yarn.logaggregation.TestLogAggregationMetaCollector#testContainerIdExactMatch", + "org.apache.hadoop.yarn.logaggregation.TestLogAggregationMetaCollector#testSingleNodeRequest", + "org.apache.hadoop.yarn.logaggregation.TestLogAggregationMetaCollector#testAllSet", + "org.apache.hadoop.yarn.logaggregation.TestLogAggregationMetaCollector#testMultipleFileBetweenSize", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testDefaultLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testClassConfUsed", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testLogAggregationFileControllerFactoryClassNotSet", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testNodemanagerConfigurationIsUsed", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testDefaultConfUsed", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomUser", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomGroup", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationDefault", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testFetchApplictionLogsHar", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetLogMetaFilesOfNode", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetRollOverLogMaxSize", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testLogAggregationIndexFileFormat", + "org.apache.hadoop.yarn.TestRpcFactoryProvider#testFactoryProvider", + "org.apache.hadoop.yarn.conf.TestYarnConfiguration#testUpdateConnectAddr", + "org.apache.hadoop.yarn.conf.TestYarnConfiguration#testGetSocketAddressForNMWithHA", + "org.apache.hadoop.yarn.conf.TestYarnConfiguration#testRMWebUrlSpecified", + "org.apache.hadoop.yarn.conf.TestYarnConfiguration#testDefaultRMWebUrl", + "org.apache.hadoop.yarn.conf.TestYarnConfiguration#testGetSocketAddr", + "org.apache.hadoop.yarn.conf.TestHAUtil#testVerifyAndSetConfiguration", + "org.apache.hadoop.yarn.conf.TestHAUtil#testGetRMServiceId", + "org.apache.hadoop.yarn.conf.TestHAUtil#testGetRMId", + "org.apache.hadoop.yarn.conf.TestHAUtil#testGetConfKeyForRMInstance", + "org.apache.hadoop.yarn.api.TestApplicationId#testApplicationId", + "org.apache.hadoop.yarn.api.TestNodeId#testNodeId", + "org.apache.hadoop.yarn.api.TestGetApplicationsRequest#testGetApplicationsRequest", + "org.apache.hadoop.yarn.api.TestPlacementConstraintPBConversion#testCompositeConstraintProtoConverter", + "org.apache.hadoop.yarn.api.TestPlacementConstraintPBConversion#testTargetConstraintProtoConverter", + "org.apache.hadoop.yarn.api.TestPlacementConstraintPBConversion#testCardinalityConstraintProtoConverter", + "org.apache.hadoop.yarn.api.protocolrecords.impl.pb.TestGetApplicationsRequestPBImpl#testAppTagsLowerCaseConversionDefault[0]", + "org.apache.hadoop.yarn.api.protocolrecords.impl.pb.TestGetApplicationsRequestPBImpl#testAppTagsLowerCaseConversionDisabled[0]", + "org.apache.hadoop.yarn.api.protocolrecords.impl.pb.TestGetApplicationsRequestPBImpl#testAppTagsLowerCaseConversionEnabled[0]", + "org.apache.hadoop.yarn.api.protocolrecords.impl.pb.TestGetApplicationsRequestPBImpl#testAppTagsLowerCaseConversionDefault[1]", + "org.apache.hadoop.yarn.api.protocolrecords.impl.pb.TestGetApplicationsRequestPBImpl#testAppTagsLowerCaseConversionDisabled[1]", + "org.apache.hadoop.yarn.api.protocolrecords.impl.pb.TestGetApplicationsRequestPBImpl#testAppTagsLowerCaseConversionEnabled[1]", + "org.apache.hadoop.yarn.api.TestTimelineEntityGroupId#testTimelineEntityGroupId", + "org.apache.hadoop.yarn.api.TestContainerId#testContainerId", + "org.apache.hadoop.yarn.api.TestApplicationAttemptId#testApplicationAttemptId", + "org.apache.hadoop.yarn.api.resource.TestPlacementConstraintTransformations#testTargetCardinalityConstraint", + "org.apache.hadoop.yarn.api.resource.TestPlacementConstraintTransformations#testCompositeConstraint", + "org.apache.hadoop.yarn.api.resource.TestPlacementConstraintTransformations#testTargetConstraint", + "org.apache.hadoop.yarn.api.resource.TestPlacementConstraintTransformations#testCardinalityConstraint", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBInitFromOldPB", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceAttributes", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testParsingResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBWithExtraResources", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testEmptyResourcePBInit", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetVirtualCores", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetMemory", + "org.apache.hadoop.yarn.api.records.TestResourceUtilization#testResourceUtilizationWithCustomResource", + "org.apache.hadoop.yarn.api.records.TestResourceUtilization#testResourceUtilization", + "org.apache.hadoop.yarn.api.records.timelineservice.TestTimelineServiceRecords#testQueue", + "org.apache.hadoop.yarn.api.records.timelineservice.TestTimelineServiceRecords#testUser", + "org.apache.hadoop.yarn.api.records.timelineservice.TestTimelineServiceRecords#testFirstClassCitizenEntities", + "org.apache.hadoop.yarn.api.records.timelineservice.TestTimelineServiceRecords#testTimelineEntities", + "org.apache.hadoop.yarn.api.records.impl.pb.TestProtoUtils#testConvertFromOrToProtoFormat", + "org.apache.hadoop.yarn.api.records.impl.pb.TestApplicationClientProtocolRecords#testCLCPBImplNullResourceType", + "org.apache.hadoop.yarn.api.records.impl.pb.TestApplicationClientProtocolRecords#testCLCPBImplNullResourceVisibility", + "org.apache.hadoop.yarn.api.records.impl.pb.TestApplicationClientProtocolRecords#testCLCPBImplNullResourceURL", + "org.apache.hadoop.yarn.api.records.impl.pb.TestApplicationClientProtocolRecords#testCLCPBImplNullEnv", + "org.apache.hadoop.yarn.api.records.impl.pb.TestApplicationSubmissionContextPBImpl#testAppTagsLowerCaseConversionDefault[0]", + "org.apache.hadoop.yarn.api.records.impl.pb.TestApplicationSubmissionContextPBImpl#testAppTagsLowerCaseConversionDisabled[0]", + "org.apache.hadoop.yarn.api.records.impl.pb.TestApplicationSubmissionContextPBImpl#testAppTagsLowerCaseConversionEnabled[0]", + "org.apache.hadoop.yarn.api.records.impl.pb.TestApplicationSubmissionContextPBImpl#testAppTagsLowerCaseConversionDefault[1]", + "org.apache.hadoop.yarn.api.records.impl.pb.TestApplicationSubmissionContextPBImpl#testAppTagsLowerCaseConversionDisabled[1]", + "org.apache.hadoop.yarn.api.records.impl.pb.TestApplicationSubmissionContextPBImpl#testAppTagsLowerCaseConversionEnabled[1]", + "org.apache.hadoop.yarn.api.records.impl.pb.TestSerializedExceptionPBImpl#testThrowableDeserialization", + "org.apache.hadoop.yarn.api.records.impl.pb.TestSerializedExceptionPBImpl#testSerializedException", + "org.apache.hadoop.yarn.api.records.impl.pb.TestSerializedExceptionPBImpl#testBeforeInit", + "org.apache.hadoop.yarn.api.records.impl.pb.TestSerializedExceptionPBImpl#testDeserialize", + "org.apache.hadoop.yarn.api.records.impl.pb.TestSerializedExceptionPBImpl#testDeserializeWithDefaultConstructor", + "org.apache.hadoop.yarn.api.records.timeline.TestTimelineRecords#testEntities", + "org.apache.hadoop.yarn.api.records.timeline.TestTimelineRecords#testTimelineDomain", + "org.apache.hadoop.yarn.api.records.timeline.TestTimelineRecords#testMapInterfaceOrTimelineRecords", + "org.apache.hadoop.yarn.api.records.timeline.TestTimelineRecords#testEvents", + "org.apache.hadoop.yarn.api.records.timeline.TestTimelineRecords#testTimelinePutErrors", + "org.apache.hadoop.yarn.api.TestApplicatonReport#testApplicationReport", + "org.apache.hadoop.yarn.api.TestResourceRequest#testEqualsOnExecutionTypeRequest", + "org.apache.hadoop.yarn.factories.impl.pb.TestRpcServerFactoryPBImpl#testToUseCustomClassloader", + "org.apache.hadoop.yarn.factories.impl.pb.TestRpcClientFactoryPBImpl#testToUseCustomClassloader", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testAMRMTokenIdentifier", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testNMTokenIdentifierOldFormat", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testAMContainerTokenIdentifier", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testRMDelegationTokenIdentifierOldFormat", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testRMDelegationTokenIdentifier", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testContainerTokenIdentifierOldFormat", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testContainerTokenIdentifier", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testNMTokenIdentifier", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testContainerTokenIdentifierProtoMissingFields", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testTimelineDelegationTokenIdentifier", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testAMRMTokenIdentifierOldFormat", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testClientToAMTokenIdentifier", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testParseTimelineDelegationTokenIdentifierRenewer", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testReadCredentialsFromConfigFile", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testGetCredentialsFromTokensByteBuffer", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testWriteDockerCredentialsToPath" +] \ No newline at end of file From 5ddeec658cb59a7947db744dd18cf62e89262e11 Mon Sep 17 00:00:00 2001 From: yuanfei2 Date: Wed, 30 Nov 2022 22:11:22 -0600 Subject: [PATCH 06/15] update ctest_const --- core/ctest_const.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/core/ctest_const.py b/core/ctest_const.py index d0820f43..81e04527 100644 --- a/core/ctest_const.py +++ b/core/ctest_const.py @@ -12,6 +12,7 @@ HBASE = "hbase-server" ZOOKEEPER = "zookeeper-server" ALLUXIO = "alluxio-core" +HYARNCOMMON = "hadoop-yarn" CTEST_HADOOP_DIR = os.path.join(APP_DIR, "ctest-hadoop") CTEST_HBASE_DIR = os.path.join(APP_DIR, "ctest-hbase") @@ -24,6 +25,7 @@ HBASE: CTEST_HBASE_DIR, ZOOKEEPER: CTEST_ZK_DIR, ALLUXIO: CTEST_ALLUXIO_DIR, + HYARNCOMMON: CTEST_HADOOP_DIR, } @@ -34,6 +36,7 @@ HBASE: "hbase-server", ZOOKEEPER: "zookeeper-server", ALLUXIO: "core", + HYARNCOMMON: "hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common" } @@ -58,6 +61,7 @@ os.path.join(CTEST_ALLUXIO_DIR, MODULE_SUBDIR[ALLUXIO], "server/worker", SUREFIRE_SUBDIR), os.path.join(CTEST_ALLUXIO_DIR, MODULE_SUBDIR[ALLUXIO], "server/master", SUREFIRE_SUBDIR), ], + HYARNCOMMON: [os.path.join(CTEST_HADOOP_DIR, MODULE_SUBDIR[HYARNCOMMON], SUREFIRE_SUBDIR)], } # default or deprecate conf path @@ -74,7 +78,8 @@ HDFS: os.path.join(DEFAULT_CONF_DIR, HDFS + "-default.tsv"), HBASE: os.path.join(DEFAULT_CONF_DIR, HBASE + "-default.tsv"), ALLUXIO: os.path.join(DEFAULT_CONF_DIR, ALLUXIO + "-default.tsv"), - ZOOKEEPER: os.path.join(DEFAULT_CONF_DIR, ZOOKEEPER + "-default.tsv") + ZOOKEEPER: os.path.join(DEFAULT_CONF_DIR, ZOOKEEPER + "-default.tsv"), + HYARNCOMMON: os.path.join(DEFAULT_CONF_DIR, HYARNCOMMON + "-default.tsv"), } @@ -96,6 +101,9 @@ ], ALLUXIO: [ os.path.join(CTEST_ALLUXIO_DIR, "core/alluxio-ctest.properties") + ], + HYARNCOMMON: [ + os.path.join(CTEST_HADOOP_DIR, "hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/target/classes/yarn-common-ctest.xml") ] } From f09518e31baf12ea6809c356cee4001cbf09209e Mon Sep 17 00:00:00 2001 From: yuanfei2 Date: Wed, 30 Nov 2022 22:24:38 -0600 Subject: [PATCH 07/15] generate ctest update --- core/add_project.sh | 2 + core/generate_ctest/inject.py | 2 +- core/generate_ctest/program_input.py | 6 +- .../opensource-hadoop-yarn-common.json | 5478 +++++++++++++++++ 4 files changed, 5484 insertions(+), 4 deletions(-) create mode 100644 data/ctest_mapping/opensource-hadoop-yarn-common.json diff --git a/core/add_project.sh b/core/add_project.sh index e5640839..63192564 100755 --- a/core/add_project.sh +++ b/core/add_project.sh @@ -11,6 +11,8 @@ function setup_hadoop() { mvn clean install -DskipTests cd $home_dir/hadoop-hdfs-project/hadoop-hdfs mvn package -DskipTests + cd $home_dir/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common + mvn package -DskipTests } function setup_hbase() { diff --git a/core/generate_ctest/inject.py b/core/generate_ctest/inject.py index 75f5b443..e7325f86 100644 --- a/core/generate_ctest/inject.py +++ b/core/generate_ctest/inject.py @@ -21,7 +21,7 @@ def inject_config(param_value_pairs): for p, v in param_value_pairs.items(): file.write(p + "=" + v + "\n") file.close() - elif project in [HCOMMON, HDFS, HBASE]: + elif project in [HCOMMON, HDFS, HBASE, HYARNCOMMON]: conf = ET.Element("configuration") for p, v in param_value_pairs.items(): prop = ET.SubElement(conf, "property") diff --git a/core/generate_ctest/program_input.py b/core/generate_ctest/program_input.py index 9147868a..62892c33 100644 --- a/core/generate_ctest/program_input.py +++ b/core/generate_ctest/program_input.py @@ -4,11 +4,11 @@ # run mode "run_mode": "generate_ctest", # string # name of the project, i.e. hadoop-common, hadoop-hdfs, see constant.py - "project": "hadoop-common", # string + "project": "hadoop-yarn-common", # string # path to param -> tests json mapping - "mapping_path": "../../data/ctest_mapping/opensource-hadoop-common.json", # string + "mapping_path": "../../data/ctest_mapping/opensource-hadoop-yarn-common.json", # string # good values of params tests will be run against - "param_value_tsv": "sample-hadoop-common.tsv", # string + "param_value_tsv": "../default_configs/hadoop-yarn-common-values.tsv", # string # display the terminal output live, without saving any results "display_mode": False, # bool # whether to use mvn test or mvn surefire:test diff --git a/data/ctest_mapping/opensource-hadoop-yarn-common.json b/data/ctest_mapping/opensource-hadoop-yarn-common.json new file mode 100644 index 00000000..a93718bb --- /dev/null +++ b/data/ctest_mapping/opensource-hadoop-yarn-common.json @@ -0,0 +1,5478 @@ +{ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout": [ + "ipc.server.metrics.update.runner.interval", + "ipc.0.callqueue.overflow.trigger.failover", + "hadoop.security.authorization", + "ipc.server.max.response.size", + "hadoop.kerberos.min.seconds.before.relogin", + "ipc.client.connect.max.retries.on.timeouts", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "yarn.resourcemanager.configuration.provider-class", + "hadoop.security.authentication", + "yarn.scheduler.minimum-allocation-mb", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "ipc.backoff.enable", + "ipc.server.max.connections", + "ipc.client.ping", + "ipc.server.log.slow.rpc", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.resource-types", + "hadoop.security.token.service.use_ip", + "ipc.server.purge.interval", + "ipc.client.low-latency", + "hadoop.rpc.socket.factory.class.default", + "ipc.server.tcpnodelay", + "ipc.client.fallback-to-simple-auth-allowed", + "hadoop.user.group.metrics.percentiles.intervals", + "ipc.ping.interval", + "ipc.0.callqueue.impl", + "hadoop.security.groups.cache.background.reload.threads", + "ipc.client.connection.maxidletime", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "yarn.ipc.record.factory.class", + "ipc.0.callqueue.capacity.weights", + "ipc.0.faircallqueue.priority-levels", + "ipc.client.connect.timeout", + "ipc.0.scheduler.impl", + "ipc.client.connect.retry.interval", + "ipc.scheduler.impl", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.ipc.server.factory.class", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "ipc.client.async.calls.max", + "ipc.client.connect.max.retries", + "yarn.resource-types.vcores.maximum-allocation", + "ipc.server.handler.queue.size", + "ipc.callqueue.impl", + "ipc.client.kill.max", + "yarn.scheduler.maximum-allocation-vcores", + "hadoop.security.auth_to_local", + "yarn.resource-types.memory-mb.minimum-allocation", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "rpc.metrics.percentiles.intervals", + "ipc.0.backoff.enable", + "ipc.client.tcpnodelay", + "yarn.scheduler.maximum-allocation-mb", + "ipc.client.connect.max.retries.on.sasl", + "ipc.server.reuseaddr", + "ipc.client.idlethreshold", + "ipc.maximum.data.length", + "hadoop.security.groups.cache.secs", + "ipc.0.scheduler.priority.levels", + "ipc.client.connection.idle-scan-interval.ms", + "yarn.scheduler.minimum-allocation-vcores", + "ipc.client.bind.wildcard.addr", + "ipc.server.read.connection-queue.size", + "ipc.maximum.response.length", + "yarn.ipc.client.factory.class", + "ipc.server.read.threadpool.size", + "ipc.server.listen.queue.size", + "rpc.metrics.timeunit", + "hadoop.security.group.mapping" + ], + "org.apache.hadoop.yarn.client.TestClientRMProxy#testProxyUserCorrectUGI": [ + "yarn.client.failover-sleep-base-ms", + "ipc.client.tcpnodelay", + "ipc.client.connect.max.retries.on.sasl", + "yarn.client.failover-proxy-provider", + "ipc.client.low-latency", + "yarn.ipc.record.factory.class", + "yarn.client.failover-retries", + "hadoop.rpc.socket.factory.class.default", + "ipc.client.connect.timeout", + "yarn.http.policy", + "ipc.client.rpc-timeout.ms", + "hadoop.security.groups.cache.secs", + "ipc.client.fallback-to-simple-auth-allowed", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "ipc.client.connect.retry.interval", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "ipc.ping.interval", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "ipc.client.bind.wildcard.addr", + "hadoop.security.groups.negative-cache.secs", + "ipc.client.async.calls.max", + "ipc.maximum.response.length", + "hadoop.security.resolver.impl", + "yarn.ipc.client.factory.class", + "ipc.client.ping", + "hadoop.security.groups.cache.background.reload.threads", + "yarn.client.failover-sleep-max-ms", + "hadoop.security.auth_to_local", + "ipc.client.connection.maxidletime", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "yarn.client.failover-retries-on-socket-timeouts", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.client.TestClientRMProxy#testGetRMDelegationTokenService": [ + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "yarn.resourcemanager.address", + "hadoop.security.dns.log-slow-lookups.enabled", + "yarn.resourcemanager.hostname", + "hadoop.security.resolver.impl", + "hadoop.security.token.service.use_ip", + "yarn.http.policy" + ], + "org.apache.hadoop.yarn.client.TestClientRMProxy#testGetAMRMTokenService": [ + "yarn.resourcemanager.scheduler.address", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.dns.log-slow-lookups.enabled", + "yarn.resourcemanager.hostname", + "hadoop.security.resolver.impl", + "hadoop.security.token.service.use_ip", + "yarn.http.policy" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainersForAppAttempt": [ + "yarn.timeline-service.client.retry-interval-ms", + "yarn.ipc.record.factory.class", + "yarn.timeline-service.webapp.address", + "yarn.http.policy", + "hadoop.security.groups.cache.secs", + "yarn.timeline-service.reader.webapp.address", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "yarn.timeline-service.hostname", + "yarn.timeline-service.versions", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip", + "yarn.resourcemanager.cluster-id", + "yarn.timeline-service.client.max-retries" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetApplication": [ + "yarn.timeline-service.client.retry-interval-ms", + "yarn.ipc.record.factory.class", + "yarn.timeline-service.webapp.address", + "yarn.http.policy", + "hadoop.security.groups.cache.secs", + "yarn.timeline-service.reader.webapp.address", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "yarn.timeline-service.hostname", + "yarn.timeline-service.versions", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip", + "yarn.resourcemanager.cluster-id", + "yarn.timeline-service.client.max-retries" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainer": [ + "yarn.timeline-service.client.retry-interval-ms", + "yarn.ipc.record.factory.class", + "yarn.timeline-service.webapp.address", + "yarn.http.policy", + "hadoop.security.groups.cache.secs", + "yarn.timeline-service.reader.webapp.address", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "yarn.timeline-service.hostname", + "yarn.timeline-service.versions", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip", + "yarn.resourcemanager.cluster-id", + "yarn.timeline-service.client.max-retries" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntities": [ + "yarn.timeline-service.client.retry-interval-ms", + "yarn.ipc.record.factory.class", + "yarn.timeline-service.webapp.address", + "yarn.http.policy", + "hadoop.security.groups.cache.secs", + "yarn.timeline-service.reader.webapp.address", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "yarn.timeline-service.hostname", + "yarn.timeline-service.versions", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip", + "yarn.resourcemanager.cluster-id", + "yarn.timeline-service.client.max-retries" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntity": [ + "yarn.timeline-service.client.retry-interval-ms", + "yarn.ipc.record.factory.class", + "yarn.timeline-service.webapp.address", + "yarn.http.policy", + "hadoop.security.groups.cache.secs", + "yarn.timeline-service.reader.webapp.address", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "yarn.timeline-service.hostname", + "yarn.timeline-service.versions", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip", + "yarn.resourcemanager.cluster-id", + "yarn.timeline-service.client.max-retries" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainers": [ + "yarn.timeline-service.client.retry-interval-ms", + "yarn.ipc.record.factory.class", + "yarn.timeline-service.webapp.address", + "yarn.http.policy", + "hadoop.security.groups.cache.secs", + "yarn.timeline-service.reader.webapp.address", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "yarn.timeline-service.hostname", + "yarn.timeline-service.versions", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip", + "yarn.resourcemanager.cluster-id", + "yarn.timeline-service.client.max-retries" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities": [ + "fs.iostatistics.thread.level.enabled", + "fs.automatic.close", + "yarn.timeline-service.client.retry-interval-ms", + "yarn.timeline-service.client.fd-clean-interval-secs", + "yarn.ipc.record.factory.class", + "yarn.timeline-service.entity-group-fs-store.with-user-dir", + "fs.local.block.size", + "yarn.timeline-service.webapp.address", + "yarn.timeline-service.client.fd-retain-secs", + "fs.client.resolve.remote.symlinks", + "yarn.http.policy", + "yarn.timeline-service.client.fd-flush-interval-secs", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "fs.AbstractFileSystem.file.impl", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "yarn.timeline-service.client.internal-attempt-dir-cache-size", + "file.bytes-per-checksum", + "fs.permissions.umask-mode", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "file.stream-buffer-size", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "yarn.timeline-service.hostname", + "yarn.timeline-service.versions", + "fs.defaultFS", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "yarn.timeline-service.entity-file.fs-support-append", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "yarn.timeline-service.client.internal-timers-ttl-secs", + "hadoop.security.token.service.use_ip", + "fs.file.impl", + "yarn.timeline-service.client.max-retries" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir": [ + "fs.iostatistics.thread.level.enabled", + "fs.automatic.close", + "yarn.timeline-service.client.retry-interval-ms", + "yarn.timeline-service.client.fd-clean-interval-secs", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "yarn.timeline-service.webapp.address", + "yarn.timeline-service.client.fd-retain-secs", + "fs.client.resolve.remote.symlinks", + "yarn.http.policy", + "yarn.timeline-service.client.fd-flush-interval-secs", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "fs.AbstractFileSystem.file.impl", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "yarn.timeline-service.client.internal-attempt-dir-cache-size", + "file.bytes-per-checksum", + "fs.permissions.umask-mode", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "file.stream-buffer-size", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "yarn.timeline-service.hostname", + "yarn.timeline-service.versions", + "fs.defaultFS", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "yarn.timeline-service.entity-file.fs-support-append", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "yarn.timeline-service.client.internal-timers-ttl-secs", + "hadoop.security.token.service.use_ip", + "fs.file.impl", + "yarn.timeline-service.client.max-retries" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain": [ + "fs.iostatistics.thread.level.enabled", + "fs.automatic.close", + "yarn.timeline-service.client.retry-interval-ms", + "yarn.timeline-service.client.fd-clean-interval-secs", + "yarn.ipc.record.factory.class", + "yarn.timeline-service.entity-group-fs-store.with-user-dir", + "fs.local.block.size", + "yarn.timeline-service.webapp.address", + "yarn.timeline-service.client.fd-retain-secs", + "fs.client.resolve.remote.symlinks", + "yarn.http.policy", + "yarn.timeline-service.client.fd-flush-interval-secs", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "fs.AbstractFileSystem.file.impl", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "yarn.timeline-service.client.internal-attempt-dir-cache-size", + "file.bytes-per-checksum", + "fs.permissions.umask-mode", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "file.stream-buffer-size", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "yarn.timeline-service.hostname", + "yarn.timeline-service.versions", + "fs.defaultFS", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "yarn.timeline-service.entity-file.fs-support-append", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "yarn.timeline-service.client.internal-timers-ttl-secs", + "hadoop.security.token.service.use_ip", + "fs.file.impl", + "yarn.timeline-service.client.max-retries" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir": [ + "fs.iostatistics.thread.level.enabled", + "fs.automatic.close", + "yarn.timeline-service.client.retry-interval-ms", + "yarn.timeline-service.client.fd-clean-interval-secs", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "yarn.timeline-service.webapp.address", + "yarn.timeline-service.client.fd-retain-secs", + "fs.client.resolve.remote.symlinks", + "yarn.http.policy", + "yarn.timeline-service.client.fd-flush-interval-secs", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "fs.AbstractFileSystem.file.impl", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "yarn.timeline-service.client.internal-attempt-dir-cache-size", + "file.bytes-per-checksum", + "fs.permissions.umask-mode", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "file.stream-buffer-size", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "yarn.timeline-service.hostname", + "yarn.timeline-service.versions", + "fs.defaultFS", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "yarn.timeline-service.entity-file.fs-support-append", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "yarn.timeline-service.client.internal-timers-ttl-secs", + "hadoop.security.token.service.use_ip", + "fs.file.impl", + "yarn.timeline-service.client.max-retries" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenOperationsRetry": [ + "yarn.timeline-service.webapp.address", + "yarn.http.policy", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "yarn.timeline-service.hostname", + "yarn.timeline-service.versions", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntities": [ + "yarn.timeline-service.client.retry-interval-ms", + "yarn.timeline-service.webapp.address", + "yarn.http.policy", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "yarn.timeline-service.hostname", + "yarn.timeline-service.versions", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip", + "yarn.timeline-service.client.max-retries" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineClientCleanup": [ + "hadoop.security.credential.provider.path", + "ssl.client.truststore.type", + "yarn.timeline-service.client.retry-interval-ms", + "ssl.client.keystore.type", + "yarn.timeline-service.webapp.address", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.ssl.enabled.protocols", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "ssl.server.exclude.cipher.list", + "ssl.client.stores.reload.interval", + "hadoop.security.resolver.impl", + "yarn.timeline-service.hostname", + "yarn.timeline-service.versions", + "hadoop.security.credential.clear-text-fallback", + "hadoop.ssl.keystores.factory.class", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "yarn.timeline-service.webapp.https.address", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostIncompleteEntities": [ + "yarn.timeline-service.client.retry-interval-ms", + "yarn.timeline-service.webapp.address", + "yarn.http.policy", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "yarn.timeline-service.hostname", + "yarn.timeline-service.versions", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip", + "yarn.timeline-service.client.max-retries" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainConnectionRefused": [ + "yarn.timeline-service.client.retry-interval-ms", + "yarn.timeline-service.webapp.address", + "yarn.http.policy", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "yarn.timeline-service.hostname", + "yarn.timeline-service.versions", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip", + "yarn.timeline-service.client.max-retries" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesWithError": [ + "yarn.timeline-service.client.retry-interval-ms", + "yarn.timeline-service.webapp.address", + "yarn.http.policy", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "yarn.timeline-service.hostname", + "yarn.timeline-service.versions", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip", + "yarn.timeline-service.client.max-retries" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomain": [ + "yarn.timeline-service.client.retry-interval-ms", + "yarn.timeline-service.webapp.address", + "yarn.http.policy", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "yarn.timeline-service.hostname", + "yarn.timeline-service.versions", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip", + "yarn.timeline-service.client.max-retries" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenDisabledOnSimpleAuth": [ + "yarn.timeline-service.client.retry-interval-ms", + "yarn.timeline-service.webapp.address", + "yarn.http.policy", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "yarn.timeline-service.hostname", + "yarn.timeline-service.versions", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip", + "yarn.timeline-service.client.max-retries" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testCheckRetryCount": [ + "yarn.timeline-service.webapp.address", + "yarn.http.policy", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "yarn.timeline-service.hostname", + "yarn.timeline-service.versions", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesNoResponse": [ + "yarn.timeline-service.client.retry-interval-ms", + "yarn.timeline-service.webapp.address", + "yarn.http.policy", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "yarn.timeline-service.hostname", + "yarn.timeline-service.versions", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip", + "yarn.timeline-service.client.max-retries" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesConnectionRefused": [ + "yarn.timeline-service.client.retry-interval-ms", + "yarn.timeline-service.webapp.address", + "yarn.http.policy", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "yarn.timeline-service.hostname", + "yarn.timeline-service.versions", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip", + "yarn.timeline-service.client.max-retries" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainNoResponse": [ + "yarn.timeline-service.client.retry-interval-ms", + "yarn.timeline-service.webapp.address", + "yarn.http.policy", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "yarn.timeline-service.hostname", + "yarn.timeline-service.versions", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip", + "yarn.timeline-service.client.max-retries" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineConnectorDestroy": [ + "yarn.timeline-service.client.retry-interval-ms", + "yarn.timeline-service.webapp.address", + "yarn.http.policy", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "yarn.timeline-service.hostname", + "yarn.timeline-service.versions", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip", + "yarn.timeline-service.client.max-retries" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSyncCall": [ + "yarn.timeline-service.client.retry-interval-ms", + "yarn.ipc.record.factory.class", + "yarn.timeline-service.client.drain-entities.timeout.ms", + "yarn.http.policy", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "yarn.timeline-service.versions", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip", + "yarn.timeline-service.client.max-retries" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testPostEntities": [ + "yarn.timeline-service.client.retry-interval-ms", + "yarn.ipc.record.factory.class", + "yarn.timeline-service.client.drain-entities.timeout.ms", + "yarn.http.policy", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "yarn.timeline-service.versions", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip", + "yarn.timeline-service.client.max-retries" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSetTimelineToken": [ + "yarn.timeline-service.client.retry-interval-ms", + "yarn.ipc.record.factory.class", + "yarn.timeline-service.client.drain-entities.timeout.ms", + "yarn.http.policy", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "yarn.timeline-service.versions", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip", + "yarn.timeline-service.client.max-retries" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionCalls": [ + "yarn.timeline-service.client.retry-interval-ms", + "yarn.ipc.record.factory.class", + "yarn.timeline-service.client.drain-entities.timeout.ms", + "yarn.http.policy", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "yarn.timeline-service.versions", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip", + "yarn.timeline-service.client.max-retries" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionMultipleRetry": [ + "yarn.timeline-service.client.retry-interval-ms", + "yarn.ipc.record.factory.class", + "yarn.timeline-service.client.drain-entities.timeout.ms", + "yarn.http.policy", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "yarn.timeline-service.versions", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testASyncCallMerge": [ + "yarn.timeline-service.client.retry-interval-ms", + "yarn.ipc.record.factory.class", + "yarn.timeline-service.client.drain-entities.timeout.ms", + "yarn.http.policy", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "yarn.timeline-service.versions", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip", + "yarn.timeline-service.client.max-retries" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testConfigurableNumberOfMerges": [ + "yarn.timeline-service.client.retry-interval-ms", + "yarn.ipc.record.factory.class", + "yarn.timeline-service.client.drain-entities.timeout.ms", + "yarn.http.policy", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "yarn.timeline-service.versions", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip", + "yarn.timeline-service.client.max-retries" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testAfterStop": [ + "yarn.timeline-service.client.retry-interval-ms", + "yarn.ipc.record.factory.class", + "yarn.timeline-service.client.drain-entities.timeout.ms", + "yarn.http.policy", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "yarn.timeline-service.versions", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip", + "yarn.timeline-service.client.max-retries" + ], + "org.apache.hadoop.yarn.util.TestApps#testSetEnvFromInputPropertyDefault": [ + "mapreduce.map.envbogus" + ], + "org.apache.hadoop.yarn.util.TestApps#testSetEnvFromInputPropertyNull": [ + "bogus1" + ], + "org.apache.hadoop.yarn.util.TestApps#testSetEnvFromInputPropertyOverrideDefault": [ + "mapreduce.reduce.env" + ], + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testProcessTreeDump": [ + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "fs.AbstractFileSystem.file.impl", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testProcessTree": [ + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "fs.AbstractFileSystem.file.impl", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testMemForOlderProcesses": [ + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "fs.AbstractFileSystem.file.impl", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testCpuAndMemoryForProcessTree": [ + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "fs.AbstractFileSystem.file.impl", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testDestroyProcessTree": [ + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "fs.AbstractFileSystem.file.impl", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithExtraResource[DefaultResourceCalculator]": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.resource-types.test.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.test.minimum-allocation", + "yarn.resource-types.test.units", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types.test.tags", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb", + "yarn.resource-types.test.type" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithEmptyCluster[DefaultResourceCalculator]": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompare[DefaultResourceCalculator]": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.resource-types.test.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.test.minimum-allocation", + "yarn.resource-types.test.units", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types.test.tags", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb", + "yarn.resource-types.test.type" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithNoExtraResource[DefaultResourceCalculator]": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testNormalize[DefaultResourceCalculator]": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioNumeratorAndDenominatorIsZero[DefaultResourceCalculator]": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithOnlyMandatory[DefaultResourceCalculator]": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsIn[DefaultResourceCalculator]": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioDenominatorIsZero[DefaultResourceCalculator]": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsInDiagnosticsCollector[DefaultResourceCalculator]": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithExtraResource[DominantResourceCalculator]": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.resource-types.test.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.test.minimum-allocation", + "yarn.resource-types.test.units", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types.test.tags", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb", + "yarn.resource-types.test.type" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithEmptyCluster[DominantResourceCalculator]": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompare[DominantResourceCalculator]": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.resource-types.test.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.test.minimum-allocation", + "yarn.resource-types.test.units", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types.test.tags", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb", + "yarn.resource-types.test.type" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithNoExtraResource[DominantResourceCalculator]": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testNormalize[DominantResourceCalculator]": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioNumeratorAndDenominatorIsZero[DominantResourceCalculator]": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithOnlyMandatory[DominantResourceCalculator]": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsIn[DominantResourceCalculator]": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioDenominatorIsZero[DominantResourceCalculator]": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsInDiagnosticsCollector[DominantResourceCalculator]": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateSimpleResourceWithSameIntValue": [ + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource2.units", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types.resource2.type", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResources#testAdd": [ + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource2.units", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types.resource2.type", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResources#testSubtract": [ + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource2.units", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types.resource2.type", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResources#testClone": [ + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource2.units", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types.resource2.type", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateResourceWithSameIntValue": [ + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource2.units", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types.resource2.type", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyRoundUp": [ + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource2.units", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types.resource2.type", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndRoundUpCustomResources": [ + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource2.units", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types.resource2.type", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateSimpleResourceWithSameLongValue": [ + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource2.units", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types.resource2.type", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResources#testCompareToWithNoneResource": [ + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource2.units", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types.resource2.type", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResources#testComponentwiseMax": [ + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource2.units", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types.resource2.type", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResources#testComponentwiseMin": [ + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource2.units", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types.resource2.type", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResources#testFitsIn": [ + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource2.units", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types.resource2.type", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateResourceWithSameLongValue": [ + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource2.units", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types.resource2.type", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiply": [ + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource2.units", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types.resource2.type", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndRoundDown": [ + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource2.units", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types.resource2.type", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResources#testCompareToWithUnboundedResource": [ + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource2.units", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types.resource2.type", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndAddTo": [ + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource2.units", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types.resource2.type", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetNodeResourcesRedefineGpuErrors": [ + "yarn.resource-types.yarn.io/gpu.maximum-allocation", + "yarn.resource-types.yarn.io/gpu.tags", + "yarn.resource-types.yarn.io/gpu.minimum-allocation", + "yarn.resource-types.yarn.io/gpu.type", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.yarn.io/gpu.units" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testInitializeResourcesMap": [ + "yarn.scheduler.maximum-allocation-mb", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource1.minimum-allocation", + "yarn.resource-types.resource2.type", + "yarn.resource-types.resource1.type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resourcemanager.configuration.provider-class", + "yarn.scheduler.minimum-allocation-mb", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.resource-types.resource1.maximum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.resource1.tags", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testResourceNameFormatValidation": [ + "yarn.scheduler.maximum-allocation-mb", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource1.minimum-allocation", + "yarn.resource-types.resource2.type", + "yarn.resource-types.resource1.type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resourcemanager.configuration.provider-class", + "yarn.scheduler.minimum-allocation-mb", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.resource-types.resource1.maximum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.resource1.tags", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypes": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformationWithDiffUnits": [ + "yarn.scheduler.maximum-allocation-mb", + "yarn.resource-types.yarn.io/gpu.tags", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource1.minimum-allocation", + "yarn.resource-types.resource2.type", + "yarn.resource-types.resource1.type", + "yarn.resource-types.resource1.units", + "yarn.resource-types.yarn.io/gpu.minimum-allocation", + "yarn.resource-types.yarn.io/gpu.type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resourcemanager.configuration.provider-class", + "yarn.scheduler.minimum-allocation-mb", + "yarn.resource-types.resource2.units", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.resource-types.yarn.io/gpu.units", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.resource-types.resource1.maximum-allocation", + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.resource-types.resource1.tags", + "yarn.resource-types.yarn.io/gpu.maximum-allocation", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testMultipleOpsForResourcesWithTags": [ + "yarn.scheduler.maximum-allocation-mb", + "yarn.resource-types.yarn.io/gpu.tags", + "yarn.resource-types.resource3.maximum-allocation", + "yarn.resource-types.resource1.minimum-allocation", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource2.type", + "yarn.resource-types.yarn.io/test-volume.maximum-allocation", + "yarn.resource-types.resource1.type", + "yarn.resource-types.resource3.units", + "yarn.resource-types.yarn.io/test-volume.minimum-allocation", + "yarn.resource-types.resource1.units", + "yarn.resource-types.yarn.io/gpu.minimum-allocation", + "yarn.resource-types.yarn.io/gpu.type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resourcemanager.configuration.provider-class", + "yarn.scheduler.minimum-allocation-mb", + "yarn.resource-types.resource3.tags", + "yarn.resource-types.resource2.units", + "yarn.resource-types.yarn.io/test-volume.type", + "yarn.resource-types.resource3.minimum-allocation", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.resource-types.resource3.type", + "yarn.resource-types.yarn.io/test-volume.units", + "yarn.resource-types.yarn.io/gpu.units", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.resource-types.resource1.maximum-allocation", + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.resource-types.resource1.tags", + "yarn.resource-types.yarn.io/gpu.maximum-allocation", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types", + "yarn.resource-types.yarn.io/test-volume.tags" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetRequestedResourcesFromConfig": [ + "yarn.scheduler.maximum-allocation-mb", + "yarn.resource-types.yarn.io/gpu.tags", + "yarn.resource-types.resource3.maximum-allocation", + "yarn.resource-types.resource1.minimum-allocation", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource2.type", + "yarn.resource-types.yarn.io/test-volume.maximum-allocation", + "yarn.resource-types.resource1.type", + "yarn.resource-types.resource3.units", + "yarn.resource-types.yarn.io/test-volume.minimum-allocation", + "yarn.resource-types.resource1.units", + "yarn.resource-types.yarn.io/gpu.minimum-allocation", + "yarn.resource-types.yarn.io/gpu.type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resourcemanager.configuration.provider-class", + "yarn.scheduler.minimum-allocation-mb", + "yarn.resource-types.resource3.tags", + "yarn.resource-types.resource2.units", + "yarn.resource-types.yarn.io/test-volume.type", + "yarn.resource-types.resource3.minimum-allocation", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.resource-types.resource3.type", + "yarn.resource-types.yarn.io/test-volume.units", + "yarn.resource-types.yarn.io/gpu.units", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.resource-types.resource1.maximum-allocation", + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.resource-types.resource1.tags", + "yarn.resource-types.yarn.io/gpu.maximum-allocation", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types", + "yarn.resource-types.yarn.io/test-volume.tags" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetNodeResourcesConfigErrors": [ + "yarn.scheduler.maximum-allocation-mb", + "yarn.resource-types.yarn.io/gpu.tags", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource1.minimum-allocation", + "yarn.resource-types.resource2.type", + "yarn.resource-types.resource1.type", + "yarn.resource-types.resource1.units", + "yarn.resource-types.yarn.io/gpu.minimum-allocation", + "yarn.resource-types.yarn.io/gpu.type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resourcemanager.configuration.provider-class", + "yarn.scheduler.minimum-allocation-mb", + "yarn.resource-types.resource2.units", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.resource-types.yarn.io/gpu.units", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.resource-types.resource1.maximum-allocation", + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.resource-types.resource1.tags", + "yarn.resource-types.yarn.io/gpu.maximum-allocation", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testResourceUnitParsing": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.ipc.record.factory.class", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetNodeResourcesRedefineFpgaErrors": [ + "yarn.resource-types.yarn.io/fpga.maximum-allocation", + "yarn.resource-types.yarn.io/fpga.tags", + "yarn.resource-types.yarn.io/fpga.type", + "yarn.resource-types.yarn.io/fpga.units", + "yarn.resource-types.yarn.io/fpga.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigErrors": [ + "yarn.scheduler.maximum-allocation-mb", + "yarn.resource-types.memory.units", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource1.minimum-allocation", + "yarn.resource-types.resource2.type", + "yarn.resource-types.resource1.type", + "yarn.resource-types.memory.minimum-allocation", + "yarn.resource-types.resource1.units", + "yarn.resource-types.memory.maximum-allocation", + "yarn.resource-types.memory-mb.units", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resourcemanager.configuration.provider-class", + "yarn.scheduler.minimum-allocation-mb", + "yarn.resource-types.resource2.units", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.resource-types.memory-mb.type", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.resource-types.resource1.maximum-allocation", + "yarn.resource-types.memory.tags", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.resource1.tags", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.tags", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types.memory.type", + "yarn.resource-types" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformation": [ + "yarn.scheduler.maximum-allocation-mb", + "yarn.resource-types.yarn.io/gpu.tags", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource1.minimum-allocation", + "yarn.resource-types.resource2.type", + "yarn.resource-types.resource1.type", + "yarn.resource-types.resource1.units", + "yarn.resource-types.yarn.io/gpu.minimum-allocation", + "yarn.resource-types.yarn.io/gpu.type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resourcemanager.configuration.provider-class", + "yarn.scheduler.minimum-allocation-mb", + "yarn.resource-types.resource2.units", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.resource-types.yarn.io/gpu.units", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.resource-types.resource1.maximum-allocation", + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.resource-types.resource1.tags", + "yarn.resource-types.yarn.io/gpu.maximum-allocation", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigs": [ + "yarn.scheduler.maximum-allocation-mb", + "yarn.resource-types.yarn.io/gpu.tags", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource1.minimum-allocation", + "yarn.resource-types.resource2.type", + "yarn.resource-types.resource1.type", + "yarn.resource-types.resource1.units", + "yarn.resource-types.yarn.io/gpu.minimum-allocation", + "yarn.resource-types.yarn.io/gpu.type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resourcemanager.configuration.provider-class", + "yarn.scheduler.minimum-allocation-mb", + "yarn.resource-types.resource2.units", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.resource-types.yarn.io/gpu.units", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.resource-types.resource1.maximum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.resource1.tags", + "yarn.resource-types.yarn.io/gpu.maximum-allocation", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testInitializeResourcesMapErrors": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.resource-types.memory.maximum-allocation", + "yarn.resource-types.vcores.tags", + "yarn.resource-types.vcores.type", + "yarn.resource-types.memory-mb.tags", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types.memory-mb.type", + "yarn.resource-types.memory.type", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.resource-types.memory.minimum-allocation", + "yarn.resource-types.memory.tags" + ], + "org.apache.hadoop.yarn.util.TestFSDownload#testDirDownload": [ + "fs.iostatistics.thread.level.enabled", + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.option.openfile.buffer.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "fs.AbstractFileSystem.file.impl", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "fs.file.impl.disable.cache", + "hadoop.security.authentication", + "file.bytes-per-checksum", + "fs.permissions.umask-mode", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "file.stream-buffer-size", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "fs.defaultFS", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.util.TestFSDownload#testUniqueDestinationPath": [ + "fs.iostatistics.thread.level.enabled", + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.option.openfile.buffer.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "fs.AbstractFileSystem.file.impl", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "fs.file.impl.disable.cache", + "hadoop.security.authentication", + "file.bytes-per-checksum", + "fs.permissions.umask-mode", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "file.stream-buffer-size", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "fs.defaultFS", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.util.TestFSDownload#testResourceTimestampChangeDuringDownload": [ + "fs.iostatistics.thread.level.enabled", + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "fs.AbstractFileSystem.file.impl", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "fs.file.impl.disable.cache", + "hadoop.security.authentication", + "file.bytes-per-checksum", + "fs.permissions.umask-mode", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "fs.defaultFS", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZipWithTurkishLocale": [ + "fs.iostatistics.thread.level.enabled", + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.option.openfile.buffer.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "fs.AbstractFileSystem.file.impl", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "fs.file.impl.disable.cache", + "hadoop.security.authentication", + "file.bytes-per-checksum", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "file.stream-buffer-size", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "fs.defaultFS", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPatternJar": [ + "fs.iostatistics.thread.level.enabled", + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.option.openfile.buffer.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "fs.AbstractFileSystem.file.impl", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "fs.file.impl.disable.cache", + "hadoop.security.authentication", + "file.bytes-per-checksum", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "file.stream-buffer-size", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "fs.defaultFS", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchive": [ + "fs.iostatistics.thread.level.enabled", + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.option.openfile.buffer.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "fs.AbstractFileSystem.file.impl", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "fs.file.impl.disable.cache", + "hadoop.security.authentication", + "file.bytes-per-checksum", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "file.stream-buffer-size", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "fs.defaultFS", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveTgz": [ + "fs.iostatistics.thread.level.enabled", + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.option.openfile.buffer.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "fs.AbstractFileSystem.file.impl", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "fs.file.impl.disable.cache", + "hadoop.security.authentication", + "file.bytes-per-checksum", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "file.stream-buffer-size", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "fs.defaultFS", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZip": [ + "fs.iostatistics.thread.level.enabled", + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.option.openfile.buffer.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "fs.AbstractFileSystem.file.impl", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "fs.file.impl.disable.cache", + "hadoop.security.authentication", + "file.bytes-per-checksum", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "file.stream-buffer-size", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "fs.defaultFS", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadBadPublic": [ + "fs.iostatistics.thread.level.enabled", + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "fs.AbstractFileSystem.file.impl", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "fs.file.impl.disable.cache", + "hadoop.security.authentication", + "file.bytes-per-checksum", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "fs.defaultFS", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPublicWithStatCache": [ + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "fs.AbstractFileSystem.file.impl", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "fs.file.impl.disable.cache", + "hadoop.security.authentication", + "file.bytes-per-checksum", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "fs.defaultFS", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.util.TestFSDownload#testDownload": [ + "fs.iostatistics.thread.level.enabled", + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.option.openfile.buffer.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "fs.AbstractFileSystem.file.impl", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "fs.file.impl.disable.cache", + "hadoop.security.authentication", + "file.bytes-per-checksum", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "file.stream-buffer-size", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "fs.defaultFS", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.util.TestRackResolverScriptBasedMapping#testScriptName": [ + "net.topology.script.number.args" + ], + "org.apache.hadoop.yarn.util.TestConverterUtils#testNodeIdWithDefaultPort": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.util.TestConverterUtils#testInvalidAppattemptId": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.util.TestConverterUtils#testConvertUrlWithNoPort": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.util.TestConverterUtils#testContainerIdWithEpoch": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.util.TestConverterUtils#testContainerId": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.util.TestConverterUtils#testContainerIdNull": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.util.TestConverterUtils#testConvertUrlWithUserinfo": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.util.TestConverterUtils#testApplicationId": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.util.TestConverterUtils#testInvalidContainerId": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccessWithPartialACLS": [ + "yarn.ipc.record.factory.class", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccess": [ + "yarn.ipc.record.factory.class", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccessWithNullACLS": [ + "yarn.ipc.record.factory.class", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testDispatcherMetricsHistogram": [ + "yarn.dispatcher.print-thread-pool.maximum-pool-size", + "yarn.dispatcher.print-thread-pool.core-pool-size", + "yarn.dispatcher.print-events-info.threshold", + "yarn.dispatcher.print-thread-pool.keep-alive-time" + ], + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testDispatcherOnCloseIfQueueEmpty": [ + "yarn.dispatcher.print-thread-pool.core-pool-size", + "yarn.dispatcher.print-events-info.threshold", + "yarn.dispatcher.print-thread-pool.keep-alive-time", + "yarn.dispatcher.drain-events.timeout", + "yarn.dispatcher.print-thread-pool.maximum-pool-size" + ], + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testPrintDispatcherEventDetails": [ + "yarn.dispatcher.print-thread-pool.maximum-pool-size", + "yarn.dispatcher.print-thread-pool.core-pool-size", + "yarn.dispatcher.print-thread-pool.keep-alive-time" + ], + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testMetricsForDispatcher": [ + "yarn.dispatcher.print-thread-pool.maximum-pool-size", + "yarn.dispatcher.print-thread-pool.core-pool-size", + "yarn.dispatcher.print-events-info.threshold", + "yarn.dispatcher.print-thread-pool.keep-alive-time" + ], + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testPrintDispatcherEventDetailsAvoidDeadLoop": [ + "yarn.dispatcher.print-thread-pool.maximum-pool-size", + "yarn.dispatcher.print-thread-pool.core-pool-size", + "yarn.dispatcher.print-thread-pool.keep-alive-time" + ], + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testDispatchStopOnTimeout": [ + "yarn.dispatcher.print-thread-pool.core-pool-size", + "yarn.dispatcher.print-events-info.threshold", + "yarn.dispatcher.print-thread-pool.keep-alive-time", + "yarn.dispatcher.print-thread-pool.maximum-pool-size" + ], + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testDrainDispatcherDrainEventsOnStop": [ + "yarn.dispatcher.print-thread-pool.core-pool-size", + "yarn.dispatcher.print-events-info.threshold", + "yarn.dispatcher.print-thread-pool.keep-alive-time", + "yarn.dispatcher.print-thread-pool.maximum-pool-size" + ], + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetPassword": [ + "fs.iostatistics.thread.level.enabled", + "fs.automatic.close", + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "fs.file.impl.disable.cache", + "hadoop.token.files", + "hadoop.security.authentication", + "fs.permissions.umask-mode", + "file.bytes-per-checksum", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "file.stream-buffer-size", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.credstore.java-keystore-provider.password-file", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "fs.defaultFS", + "hadoop.security.credential.clear-text-fallback", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "invalid-alias", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetHtmlEscapedURIWithQueryString": [ + "fs.iostatistics.thread.level.enabled", + "fs.automatic.close", + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "fs.file.impl.disable.cache", + "hadoop.token.files", + "hadoop.security.authentication", + "fs.permissions.umask-mode", + "file.bytes-per-checksum", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "file.stream-buffer-size", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.credstore.java-keystore-provider.password-file", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "fs.defaultFS", + "hadoop.security.credential.clear-text-fallback", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "invalid-alias", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testAppendQueryParams": [ + "fs.iostatistics.thread.level.enabled", + "fs.automatic.close", + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "fs.file.impl.disable.cache", + "hadoop.token.files", + "hadoop.security.authentication", + "fs.permissions.umask-mode", + "file.bytes-per-checksum", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "file.stream-buffer-size", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.credstore.java-keystore-provider.password-file", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "fs.defaultFS", + "hadoop.security.credential.clear-text-fallback", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "invalid-alias", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testLoadSslConfiguration": [ + "fs.iostatistics.thread.level.enabled", + "fs.automatic.close", + "ssl.server.keystore.type", + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "ssl.server.truststore.type", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "fs.file.impl.disable.cache", + "hadoop.token.files", + "hadoop.security.authentication", + "fs.permissions.umask-mode", + "file.bytes-per-checksum", + "hadoop.security.groups.cache.background.reload", + "ssl.server.truststore.location", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "file.stream-buffer-size", + "hadoop.security.groups.negative-cache.secs", + "ssl.server.exclude.cipher.list", + "hadoop.security.credstore.java-keystore-provider.password-file", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "ssl.server.keystore.location", + "fs.defaultFS", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#TestRMWebAppURLRemoteAndLocal": [ + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.security.resolver.impl", + "hadoop.security.token.service.use_ip", + "yarn.http.policy" + ], + "org.apache.hadoop.yarn.webapp.util.TestWebServiceClient#testGetWebServiceClient": [ + "ssl.client.truststore.type", + "hadoop.ssl.keystores.factory.class", + "ssl.client.stores.reload.interval", + "ssl.server.exclude.cipher.list", + "hadoop.ssl.enabled.protocols", + "hadoop.ssl.hostname.verifier", + "ssl.client.truststore.location", + "hadoop.ssl.client.conf", + "ssl.client.keystore.type" + ], + "org.apache.hadoop.yarn.webapp.util.TestWebServiceClient#testCreateClient": [ + "hadoop.security.credential.provider.path", + "ssl.client.truststore.type", + "ssl.{0}.stores.reload.interval", + "ssl.server.keystore.type", + "hadoop.http.acceptor.count", + "hadoop.http.socket.backlog.size", + "ssl.client.keystore.type", + "hadoop.http.temp.dir", + "hadoop.http.max.response.header.size", + "hadoop.http.max.threads", + "hadoop.http.selector.count", + "hadoop.ssl.enabled.protocols", + "ssl.server.truststore.type", + "hadoop.http.filter.initializers", + "hadoop.http.sni.host.check.enabled", + "ssl.client.stores.reload.interval", + "ssl.server.exclude.cipher.list", + "hadoop.prometheus.endpoint.enabled", + "hadoop.jetty.logs.serve.aliases", + "hadoop.http.logs.enabled", + "hadoop.http.idle_timeout.ms", + "hadoop.http.metrics.enabled", + "hadoop.ssl.keystores.factory.class", + "hadoop.security.credential.clear-text-fallback", + "hadoop.http.max.request.header.size" + ], + "org.apache.hadoop.yarn.webapp.TestWebApp#testYARNWebAppContext": [ + "hadoop.http.authentication.kerberos.principal", + "hadoop.http.authentication.kerberos.keytab", + "hadoop.http.acceptor.count", + "hadoop.http.socket.backlog.size", + "hadoop.http.authentication.simple.anonymous.allowed", + "hadoop.http.temp.dir", + "hadoop.http.authentication.signature.secret.file", + "yarn.http.policy", + "hadoop.security.authorization", + "hadoop.http.max.response.header.size", + "hadoop.security.groups.cache.secs", + "hadoop.http.max.threads", + "hadoop.http.selector.count", + "hadoop.http.filter.initializers", + "hadoop.http.authentication.token.validity", + "hadoop.security.groups.cache.background.reload", + "hadoop.http.sni.host.check.enabled", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.negative-cache.secs", + "dfs.web.ugi", + "hadoop.prometheus.endpoint.enabled", + "hadoop.jetty.logs.serve.aliases", + "hadoop.security.resolver.impl", + "hadoop.http.logs.enabled", + "hadoop.http.idle_timeout.ms", + "hadoop.http.authentication.type", + "hadoop.http.metrics.enabled", + "hadoop.security.groups.cache.background.reload.threads", + "yarn.admin.acl", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.user.group.static.mapping.overrides", + "hadoop.http.max.request.header.size", + "hadoop.security.group.mapping", + "hadoop.http.staticuser.user", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.webapp.TestWebApp#testDefaultRoutes": [ + "hadoop.http.authentication.kerberos.principal", + "hadoop.http.authentication.kerberos.keytab", + "hadoop.http.acceptor.count", + "hadoop.http.socket.backlog.size", + "hadoop.http.authentication.simple.anonymous.allowed", + "hadoop.http.temp.dir", + "hadoop.http.authentication.signature.secret.file", + "yarn.http.policy", + "hadoop.http.max.response.header.size", + "hadoop.security.groups.cache.secs", + "hadoop.http.max.threads", + "hadoop.http.selector.count", + "hadoop.http.filter.initializers", + "hadoop.http.authentication.token.validity", + "hadoop.security.groups.cache.background.reload", + "hadoop.http.sni.host.check.enabled", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.negative-cache.secs", + "dfs.web.ugi", + "hadoop.prometheus.endpoint.enabled", + "hadoop.jetty.logs.serve.aliases", + "hadoop.security.resolver.impl", + "hadoop.http.logs.enabled", + "hadoop.http.idle_timeout.ms", + "hadoop.http.authentication.type", + "hadoop.http.metrics.enabled", + "hadoop.security.groups.cache.background.reload.threads", + "yarn.admin.acl", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.user.group.static.mapping.overrides", + "hadoop.http.max.request.header.size", + "hadoop.security.group.mapping", + "hadoop.http.staticuser.user", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithBindAddressNonZeroPort": [ + "hadoop.http.authentication.kerberos.principal", + "hadoop.http.authentication.kerberos.keytab", + "hadoop.http.acceptor.count", + "hadoop.http.socket.backlog.size", + "hadoop.http.authentication.simple.anonymous.allowed", + "hadoop.http.temp.dir", + "hadoop.http.authentication.signature.secret.file", + "yarn.http.policy", + "hadoop.http.max.response.header.size", + "hadoop.security.groups.cache.secs", + "hadoop.http.max.threads", + "hadoop.http.selector.count", + "hadoop.http.filter.initializers", + "hadoop.http.authentication.token.validity", + "hadoop.security.groups.cache.background.reload", + "hadoop.http.sni.host.check.enabled", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.negative-cache.secs", + "dfs.web.ugi", + "hadoop.prometheus.endpoint.enabled", + "hadoop.jetty.logs.serve.aliases", + "hadoop.security.resolver.impl", + "hadoop.http.logs.enabled", + "hadoop.http.idle_timeout.ms", + "hadoop.http.authentication.type", + "hadoop.http.metrics.enabled", + "hadoop.security.groups.cache.background.reload.threads", + "yarn.admin.acl", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.user.group.static.mapping.overrides", + "hadoop.http.max.request.header.size", + "hadoop.security.group.mapping", + "hadoop.http.staticuser.user", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithPort": [ + "hadoop.http.authentication.kerberos.principal", + "hadoop.http.authentication.kerberos.keytab", + "hadoop.http.acceptor.count", + "hadoop.http.socket.backlog.size", + "hadoop.http.authentication.simple.anonymous.allowed", + "hadoop.http.temp.dir", + "hadoop.http.authentication.signature.secret.file", + "yarn.http.policy", + "hadoop.http.max.response.header.size", + "hadoop.security.groups.cache.secs", + "hadoop.http.max.threads", + "hadoop.http.selector.count", + "hadoop.http.filter.initializers", + "hadoop.http.authentication.token.validity", + "hadoop.security.groups.cache.background.reload", + "hadoop.http.sni.host.check.enabled", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.negative-cache.secs", + "dfs.web.ugi", + "hadoop.prometheus.endpoint.enabled", + "hadoop.jetty.logs.serve.aliases", + "hadoop.security.resolver.impl", + "hadoop.http.logs.enabled", + "hadoop.http.idle_timeout.ms", + "hadoop.http.authentication.type", + "hadoop.http.metrics.enabled", + "hadoop.security.groups.cache.background.reload.threads", + "yarn.admin.acl", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.user.group.static.mapping.overrides", + "hadoop.http.max.request.header.size", + "hadoop.security.group.mapping", + "hadoop.http.staticuser.user", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.webapp.TestWebApp#testEncodedUrl": [ + "hadoop.http.authentication.kerberos.principal", + "hadoop.http.authentication.kerberos.keytab", + "hadoop.http.acceptor.count", + "hadoop.http.socket.backlog.size", + "hadoop.http.authentication.simple.anonymous.allowed", + "hadoop.http.temp.dir", + "hadoop.http.authentication.signature.secret.file", + "yarn.http.policy", + "hadoop.http.max.response.header.size", + "hadoop.security.groups.cache.secs", + "hadoop.http.max.threads", + "hadoop.http.selector.count", + "hadoop.http.filter.initializers", + "hadoop.http.authentication.token.validity", + "hadoop.security.groups.cache.background.reload", + "hadoop.http.sni.host.check.enabled", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.negative-cache.secs", + "dfs.web.ugi", + "hadoop.prometheus.endpoint.enabled", + "hadoop.jetty.logs.serve.aliases", + "hadoop.security.resolver.impl", + "hadoop.http.logs.enabled", + "hadoop.http.idle_timeout.ms", + "hadoop.http.authentication.type", + "hadoop.http.metrics.enabled", + "hadoop.security.groups.cache.background.reload.threads", + "yarn.admin.acl", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.user.group.static.mapping.overrides", + "hadoop.http.max.request.header.size", + "hadoop.security.group.mapping", + "hadoop.http.staticuser.user", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithNonZeroPort": [ + "hadoop.http.authentication.kerberos.principal", + "hadoop.http.authentication.kerberos.keytab", + "hadoop.http.acceptor.count", + "hadoop.http.socket.backlog.size", + "hadoop.http.authentication.simple.anonymous.allowed", + "hadoop.http.temp.dir", + "hadoop.http.authentication.signature.secret.file", + "yarn.http.policy", + "hadoop.http.max.response.header.size", + "hadoop.security.groups.cache.secs", + "hadoop.http.max.threads", + "hadoop.http.selector.count", + "hadoop.http.filter.initializers", + "hadoop.http.authentication.token.validity", + "hadoop.security.groups.cache.background.reload", + "hadoop.http.sni.host.check.enabled", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.negative-cache.secs", + "dfs.web.ugi", + "hadoop.prometheus.endpoint.enabled", + "hadoop.jetty.logs.serve.aliases", + "hadoop.security.resolver.impl", + "hadoop.http.logs.enabled", + "hadoop.http.idle_timeout.ms", + "hadoop.http.authentication.type", + "hadoop.http.metrics.enabled", + "hadoop.security.groups.cache.background.reload.threads", + "yarn.admin.acl", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.user.group.static.mapping.overrides", + "hadoop.http.max.request.header.size", + "hadoop.security.group.mapping", + "hadoop.http.staticuser.user", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.webapp.TestWebApp#testPortRanges": [ + "hadoop.http.authentication.kerberos.principal", + "hadoop.http.authentication.kerberos.keytab", + "hadoop.http.acceptor.count", + "hadoop.http.socket.backlog.size", + "hadoop.http.authentication.simple.anonymous.allowed", + "hadoop.http.temp.dir", + "hadoop.http.authentication.signature.secret.file", + "yarn.http.policy", + "hadoop.http.max.response.header.size", + "hadoop.security.groups.cache.secs", + "hadoop.http.max.threads", + "hadoop.http.selector.count", + "hadoop.http.filter.initializers", + "hadoop.http.authentication.token.validity", + "hadoop.security.groups.cache.background.reload", + "hadoop.http.sni.host.check.enabled", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.negative-cache.secs", + "dfs.web.ugi", + "hadoop.prometheus.endpoint.enabled", + "hadoop.jetty.logs.serve.aliases", + "hadoop.security.resolver.impl", + "hadoop.http.logs.enabled", + "hadoop.http.idle_timeout.ms", + "hadoop.http.authentication.type", + "hadoop.http.metrics.enabled", + "hadoop.security.groups.cache.background.reload.threads", + "yarn.admin.acl", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.user.group.static.mapping.overrides", + "hadoop.http.max.request.header.size", + "hadoop.security.group.mapping", + "hadoop.http.staticuser.user", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePathsNoName": [ + "hadoop.http.authentication.kerberos.principal", + "hadoop.http.authentication.kerberos.keytab", + "hadoop.http.acceptor.count", + "hadoop.http.socket.backlog.size", + "hadoop.http.authentication.simple.anonymous.allowed", + "hadoop.http.temp.dir", + "hadoop.http.authentication.signature.secret.file", + "yarn.http.policy", + "hadoop.http.max.response.header.size", + "hadoop.security.groups.cache.secs", + "hadoop.http.max.threads", + "hadoop.http.selector.count", + "hadoop.http.filter.initializers", + "hadoop.http.authentication.token.validity", + "hadoop.security.groups.cache.background.reload", + "hadoop.http.sni.host.check.enabled", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.negative-cache.secs", + "dfs.web.ugi", + "hadoop.prometheus.endpoint.enabled", + "hadoop.jetty.logs.serve.aliases", + "hadoop.security.resolver.impl", + "hadoop.http.logs.enabled", + "hadoop.http.idle_timeout.ms", + "hadoop.http.authentication.type", + "hadoop.http.metrics.enabled", + "hadoop.security.groups.cache.background.reload.threads", + "yarn.admin.acl", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.user.group.static.mapping.overrides", + "hadoop.http.max.request.header.size", + "hadoop.security.group.mapping", + "hadoop.http.staticuser.user", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreate": [ + "hadoop.http.authentication.kerberos.principal", + "hadoop.http.authentication.kerberos.keytab", + "hadoop.http.acceptor.count", + "hadoop.http.socket.backlog.size", + "hadoop.http.authentication.simple.anonymous.allowed", + "hadoop.http.temp.dir", + "hadoop.http.authentication.signature.secret.file", + "yarn.http.policy", + "hadoop.http.max.response.header.size", + "hadoop.security.groups.cache.secs", + "hadoop.http.max.threads", + "hadoop.http.selector.count", + "hadoop.http.filter.initializers", + "hadoop.http.authentication.token.validity", + "hadoop.security.groups.cache.background.reload", + "hadoop.http.sni.host.check.enabled", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.negative-cache.secs", + "dfs.web.ugi", + "hadoop.prometheus.endpoint.enabled", + "hadoop.jetty.logs.serve.aliases", + "hadoop.security.resolver.impl", + "hadoop.http.logs.enabled", + "hadoop.http.idle_timeout.ms", + "hadoop.http.authentication.type", + "hadoop.http.metrics.enabled", + "hadoop.security.groups.cache.background.reload.threads", + "yarn.admin.acl", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.user.group.static.mapping.overrides", + "hadoop.http.max.request.header.size", + "hadoop.security.group.mapping", + "hadoop.http.staticuser.user", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.webapp.TestWebApp#testCustomRoutes": [ + "hadoop.http.authentication.kerberos.principal", + "hadoop.http.authentication.kerberos.keytab", + "hadoop.http.acceptor.count", + "hadoop.http.socket.backlog.size", + "hadoop.http.authentication.simple.anonymous.allowed", + "hadoop.http.temp.dir", + "hadoop.http.authentication.signature.secret.file", + "yarn.http.policy", + "hadoop.http.max.response.header.size", + "hadoop.security.groups.cache.secs", + "hadoop.http.max.threads", + "hadoop.http.selector.count", + "hadoop.http.filter.initializers", + "hadoop.http.authentication.token.validity", + "hadoop.security.groups.cache.background.reload", + "hadoop.http.sni.host.check.enabled", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.negative-cache.secs", + "dfs.web.ugi", + "hadoop.prometheus.endpoint.enabled", + "hadoop.jetty.logs.serve.aliases", + "hadoop.security.resolver.impl", + "hadoop.http.logs.enabled", + "hadoop.http.idle_timeout.ms", + "hadoop.http.authentication.type", + "hadoop.http.metrics.enabled", + "hadoop.security.groups.cache.background.reload.threads", + "yarn.admin.acl", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.user.group.static.mapping.overrides", + "hadoop.http.max.request.header.size", + "hadoop.security.group.mapping", + "hadoop.http.staticuser.user", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePaths": [ + "hadoop.http.authentication.kerberos.principal", + "hadoop.http.authentication.kerberos.keytab", + "hadoop.http.acceptor.count", + "hadoop.http.socket.backlog.size", + "hadoop.http.authentication.simple.anonymous.allowed", + "hadoop.http.temp.dir", + "hadoop.http.authentication.signature.secret.file", + "yarn.http.policy", + "hadoop.http.max.response.header.size", + "hadoop.security.groups.cache.secs", + "hadoop.http.max.threads", + "hadoop.http.selector.count", + "hadoop.http.filter.initializers", + "hadoop.http.authentication.token.validity", + "hadoop.security.groups.cache.background.reload", + "hadoop.http.sni.host.check.enabled", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.negative-cache.secs", + "dfs.web.ugi", + "hadoop.prometheus.endpoint.enabled", + "hadoop.jetty.logs.serve.aliases", + "hadoop.security.resolver.impl", + "hadoop.http.logs.enabled", + "hadoop.http.idle_timeout.ms", + "hadoop.http.authentication.type", + "hadoop.http.metrics.enabled", + "hadoop.security.groups.cache.background.reload.threads", + "yarn.admin.acl", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.user.group.static.mapping.overrides", + "hadoop.http.max.request.header.size", + "hadoop.security.group.mapping", + "hadoop.http.staticuser.user", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.webapp.TestWebApp#testRobotsText": [ + "hadoop.http.authentication.kerberos.principal", + "hadoop.http.authentication.kerberos.keytab", + "hadoop.http.acceptor.count", + "hadoop.http.socket.backlog.size", + "hadoop.http.authentication.simple.anonymous.allowed", + "hadoop.http.temp.dir", + "hadoop.http.authentication.signature.secret.file", + "yarn.http.policy", + "hadoop.http.max.response.header.size", + "hadoop.security.groups.cache.secs", + "hadoop.http.max.threads", + "hadoop.http.selector.count", + "hadoop.http.filter.initializers", + "hadoop.http.authentication.token.validity", + "hadoop.security.groups.cache.background.reload", + "hadoop.http.sni.host.check.enabled", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.negative-cache.secs", + "dfs.web.ugi", + "hadoop.prometheus.endpoint.enabled", + "hadoop.jetty.logs.serve.aliases", + "hadoop.security.resolver.impl", + "hadoop.http.logs.enabled", + "hadoop.http.idle_timeout.ms", + "hadoop.http.authentication.type", + "hadoop.http.metrics.enabled", + "hadoop.security.groups.cache.background.reload.threads", + "yarn.admin.acl", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.user.group.static.mapping.overrides", + "hadoop.http.max.request.header.size", + "hadoop.security.group.mapping", + "hadoop.http.staticuser.user", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.TestYarnUncaughtExceptionHandler#testUncaughtExceptionHandlerWithError": [ + "hadoop.service.shutdown.timeout" + ], + "org.apache.hadoop.yarn.TestYarnUncaughtExceptionHandler#testUncaughtExceptionHandlerWithRuntimeException": [ + "hadoop.service.shutdown.timeout" + ], + "org.apache.hadoop.yarn.TestYarnUncaughtExceptionHandler#testUncaughtExceptionHandlerWithOutOfMemoryError": [ + "hadoop.service.shutdown.timeout" + ], + "org.apache.hadoop.yarn.TestRPCFactories#test": [ + "ipc.0.backoff.enable", + "ipc.client.tcpnodelay", + "ipc.server.metrics.update.runner.interval", + "ipc.client.connect.max.retries.on.sasl", + "ipc.server.reuseaddr", + "ipc.client.low-latency", + "ipc.0.callqueue.capacity.weights", + "ipc.client.idlethreshold", + "ipc.maximum.data.length", + "ipc.0.faircallqueue.priority-levels", + "ipc.client.connect.timeout", + "hadoop.rpc.socket.factory.class.default", + "ipc.server.tcpnodelay", + "ipc.0.callqueue.overflow.trigger.failover", + "hadoop.security.authorization", + "ipc.0.scheduler.impl", + "ipc.client.rpc-timeout.ms", + "hadoop.security.groups.cache.secs", + "ipc.client.fallback-to-simple-auth-allowed", + "hadoop.user.group.metrics.percentiles.intervals", + "ipc.server.max.response.size", + "ipc.0.scheduler.priority.levels", + "ipc.client.connection.idle-scan-interval.ms", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "ipc.scheduler.impl", + "ipc.client.connect.retry.interval", + "ipc.client.connect.max.retries.on.timeouts", + "hadoop.security.authentication", + "ipc.ping.interval", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "ipc.server.read.connection-queue.size", + "hadoop.security.groups.cache.warn.after.ms", + "ipc.client.bind.wildcard.addr", + "ipc.0.callqueue.impl", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.token.service.use_ip", + "ipc.client.async.calls.max", + "hadoop.security.resolver.impl", + "ipc.backoff.enable", + "ipc.server.max.connections", + "ipc.client.connect.max.retries", + "ipc.client.ping", + "ipc.server.log.slow.rpc", + "ipc.server.read.threadpool.size", + "ipc.server.handler.queue.size", + "ipc.callqueue.impl", + "ipc.client.kill.max", + "hadoop.security.groups.cache.background.reload.threads", + "ipc.server.listen.queue.size", + "hadoop.security.auth_to_local", + "ipc.client.connection.maxidletime", + "rpc.metrics.timeunit", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "rpc.metrics.percentiles.intervals", + "ipc.server.purge.interval" + ], + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout": [ + "ipc.server.metrics.update.runner.interval", + "ipc.0.callqueue.overflow.trigger.failover", + "hadoop.security.authorization", + "ipc.server.max.response.size", + "hadoop.kerberos.min.seconds.before.relogin", + "ipc.client.connect.max.retries.on.timeouts", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "yarn.resourcemanager.configuration.provider-class", + "hadoop.security.authentication", + "yarn.scheduler.minimum-allocation-mb", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "ipc.backoff.enable", + "ipc.server.max.connections", + "ipc.client.ping", + "ipc.server.log.slow.rpc", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.resource-types", + "hadoop.security.token.service.use_ip", + "ipc.server.purge.interval", + "ipc.client.low-latency", + "hadoop.rpc.socket.factory.class.default", + "ipc.server.tcpnodelay", + "ipc.client.fallback-to-simple-auth-allowed", + "hadoop.user.group.metrics.percentiles.intervals", + "ipc.ping.interval", + "ipc.0.callqueue.impl", + "hadoop.security.groups.cache.background.reload.threads", + "ipc.client.connection.maxidletime", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "yarn.ipc.record.factory.class", + "ipc.0.callqueue.capacity.weights", + "ipc.0.faircallqueue.priority-levels", + "ipc.client.connect.timeout", + "ipc.0.scheduler.impl", + "ipc.client.connect.retry.interval", + "ipc.scheduler.impl", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.ipc.server.factory.class", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "ipc.client.async.calls.max", + "ipc.client.connect.max.retries", + "yarn.resource-types.vcores.maximum-allocation", + "ipc.server.handler.queue.size", + "ipc.callqueue.impl", + "ipc.client.kill.max", + "yarn.scheduler.maximum-allocation-vcores", + "hadoop.security.auth_to_local", + "yarn.resource-types.memory-mb.minimum-allocation", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "rpc.metrics.percentiles.intervals", + "ipc.0.backoff.enable", + "ipc.client.tcpnodelay", + "yarn.scheduler.maximum-allocation-mb", + "ipc.client.connect.max.retries.on.sasl", + "ipc.server.reuseaddr", + "ipc.client.idlethreshold", + "ipc.maximum.data.length", + "hadoop.security.groups.cache.secs", + "ipc.0.scheduler.priority.levels", + "ipc.client.connection.idle-scan-interval.ms", + "yarn.scheduler.minimum-allocation-vcores", + "ipc.client.bind.wildcard.addr", + "ipc.server.read.connection-queue.size", + "ipc.maximum.response.length", + "yarn.ipc.client.factory.class", + "ipc.server.read.threadpool.size", + "ipc.server.listen.queue.size", + "rpc.metrics.timeunit", + "hadoop.security.group.mapping" + ], + "org.apache.hadoop.yarn.nodelabels.TestNodeLabelUtil#testIsNodeAttributesEquals": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.nodelabels.TestNodeLabelUtil#testAttributeValueAddition": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddInvalidlabel": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.ipc.record.factory.class", + "yarn.node-labels.configuration-type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddlabelWithExclusivity": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.ipc.record.factory.class", + "yarn.node-labels.configuration-type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testReplaceLabelsOnHostsShouldUpdateNodesBelongTo": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.ipc.record.factory.class", + "yarn.node-labels.configuration-type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsToNodes": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.ipc.record.factory.class", + "yarn.node-labels.configuration-type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testGetNodeLabelsInfo": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.ipc.record.factory.class", + "yarn.node-labels.configuration-type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testTrimLabelsWhenAddRemoveNodeLabels": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.ipc.record.factory.class", + "yarn.node-labels.configuration-type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddRemovelabel": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.ipc.record.factory.class", + "yarn.node-labels.configuration-type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddlabelWithCase": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.ipc.record.factory.class", + "yarn.node-labels.configuration-type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testTrimLabelsWhenModifyLabelsOnNodes": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.ipc.record.factory.class", + "yarn.node-labels.configuration-type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsToNodesForSelectedLabels": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.ipc.record.factory.class", + "yarn.node-labels.configuration-type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testRemoveNodeLabelsInfo": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.ipc.record.factory.class", + "yarn.node-labels.configuration-type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testRemovelabelWithNodes": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.ipc.record.factory.class", + "yarn.node-labels.configuration-type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testNoMoreThanOneLabelExistedInOneHost": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.ipc.record.factory.class", + "yarn.node-labels.configuration-type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsInfoToNodes": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.ipc.record.factory.class", + "yarn.node-labels.configuration-type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddReplaceRemoveLabelsOnNodes": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.ipc.record.factory.class", + "yarn.node-labels.configuration-type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testNodeLabelsDisabled": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.ipc.record.factory.class", + "yarn.node-labels.configuration-type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testReplaceLabelsOnNodeInDistributedMode": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.ipc.record.factory.class", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[0]": [ + "fs.iostatistics.thread.level.enabled", + "yarn.scheduler.maximum-allocation-mb", + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "yarn.resourcemanager.configuration.provider-class", + "hadoop.token.files", + "hadoop.security.authentication", + "yarn.scheduler.minimum-allocation-mb", + "fs.file.impl.disable.cache", + "file.bytes-per-checksum", + "fs.permissions.umask-mode", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "fs.defaultFS", + "yarn.scheduler.maximum-allocation-vcores", + "hadoop.security.groups.cache.background.reload.threads", + "yarn.fs-store.file.replication", + "hadoop.security.auth_to_local", + "yarn.resource-types.memory-mb.minimum-allocation", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "yarn.resource-types", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[0]": [ + "fs.iostatistics.thread.level.enabled", + "yarn.scheduler.maximum-allocation-mb", + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "yarn.node-labels.configuration-type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "yarn.resourcemanager.configuration.provider-class", + "hadoop.token.files", + "hadoop.security.authentication", + "yarn.scheduler.minimum-allocation-mb", + "fs.file.impl.disable.cache", + "file.bytes-per-checksum", + "fs.permissions.umask-mode", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "fs.defaultFS", + "yarn.scheduler.maximum-allocation-vcores", + "hadoop.security.groups.cache.background.reload.threads", + "yarn.fs-store.file.replication", + "hadoop.security.auth_to_local", + "yarn.resource-types.memory-mb.minimum-allocation", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "yarn.resource-types", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[0]": [ + "fs.iostatistics.thread.level.enabled", + "yarn.scheduler.maximum-allocation-mb", + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "yarn.node-labels.configuration-type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "yarn.resourcemanager.configuration.provider-class", + "hadoop.token.files", + "hadoop.security.authentication", + "yarn.scheduler.minimum-allocation-mb", + "fs.file.impl.disable.cache", + "file.bytes-per-checksum", + "fs.permissions.umask-mode", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "fs.defaultFS", + "yarn.scheduler.maximum-allocation-vcores", + "hadoop.security.groups.cache.background.reload.threads", + "yarn.fs-store.file.replication", + "hadoop.security.auth_to_local", + "yarn.resource-types.memory-mb.minimum-allocation", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "yarn.resource-types", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[0]": [ + "fs.iostatistics.thread.level.enabled", + "yarn.scheduler.maximum-allocation-mb", + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "yarn.node-labels.configuration-type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "yarn.resourcemanager.configuration.provider-class", + "hadoop.token.files", + "hadoop.security.authentication", + "yarn.scheduler.minimum-allocation-mb", + "fs.file.impl.disable.cache", + "file.bytes-per-checksum", + "fs.permissions.umask-mode", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "fs.defaultFS", + "yarn.scheduler.maximum-allocation-vcores", + "hadoop.security.groups.cache.background.reload.threads", + "yarn.fs-store.file.replication", + "hadoop.security.auth_to_local", + "yarn.resource-types.memory-mb.minimum-allocation", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "yarn.resource-types", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[0]": [ + "fs.iostatistics.thread.level.enabled", + "yarn.scheduler.maximum-allocation-mb", + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "yarn.node-labels.configuration-type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "yarn.resourcemanager.configuration.provider-class", + "hadoop.token.files", + "hadoop.security.authentication", + "yarn.scheduler.minimum-allocation-mb", + "fs.file.impl.disable.cache", + "file.bytes-per-checksum", + "fs.permissions.umask-mode", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "fs.defaultFS", + "yarn.scheduler.maximum-allocation-vcores", + "hadoop.security.groups.cache.background.reload.threads", + "yarn.fs-store.file.replication", + "hadoop.security.auth_to_local", + "yarn.resource-types.memory-mb.minimum-allocation", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "yarn.resource-types", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[1]": [ + "fs.iostatistics.thread.level.enabled", + "yarn.scheduler.maximum-allocation-mb", + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "yarn.resourcemanager.configuration.provider-class", + "hadoop.token.files", + "hadoop.security.authentication", + "yarn.scheduler.minimum-allocation-mb", + "fs.file.impl.disable.cache", + "file.bytes-per-checksum", + "fs.permissions.umask-mode", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "fs.defaultFS", + "yarn.scheduler.maximum-allocation-vcores", + "hadoop.security.groups.cache.background.reload.threads", + "yarn.fs-store.file.replication", + "hadoop.security.auth_to_local", + "yarn.resource-types.memory-mb.minimum-allocation", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "yarn.resource-types", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[1]": [ + "yarn.scheduler.maximum-allocation-mb", + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "yarn.node-labels.configuration-type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "yarn.resourcemanager.configuration.provider-class", + "hadoop.token.files", + "hadoop.security.authentication", + "yarn.scheduler.minimum-allocation-mb", + "fs.file.impl.disable.cache", + "file.bytes-per-checksum", + "fs.permissions.umask-mode", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "fs.defaultFS", + "yarn.scheduler.maximum-allocation-vcores", + "hadoop.security.groups.cache.background.reload.threads", + "yarn.fs-store.file.replication", + "hadoop.security.auth_to_local", + "yarn.resource-types.memory-mb.minimum-allocation", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "yarn.resource-types", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[1]": [ + "fs.iostatistics.thread.level.enabled", + "yarn.scheduler.maximum-allocation-mb", + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "yarn.node-labels.configuration-type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "yarn.resourcemanager.configuration.provider-class", + "hadoop.token.files", + "hadoop.security.authentication", + "yarn.scheduler.minimum-allocation-mb", + "fs.file.impl.disable.cache", + "file.bytes-per-checksum", + "fs.permissions.umask-mode", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "fs.defaultFS", + "yarn.scheduler.maximum-allocation-vcores", + "hadoop.security.groups.cache.background.reload.threads", + "yarn.fs-store.file.replication", + "hadoop.security.auth_to_local", + "yarn.resource-types.memory-mb.minimum-allocation", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "yarn.resource-types", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[1]": [ + "fs.iostatistics.thread.level.enabled", + "yarn.scheduler.maximum-allocation-mb", + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "yarn.node-labels.configuration-type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "yarn.resourcemanager.configuration.provider-class", + "hadoop.token.files", + "hadoop.security.authentication", + "yarn.scheduler.minimum-allocation-mb", + "fs.file.impl.disable.cache", + "file.bytes-per-checksum", + "fs.permissions.umask-mode", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "fs.defaultFS", + "yarn.scheduler.maximum-allocation-vcores", + "hadoop.security.groups.cache.background.reload.threads", + "yarn.fs-store.file.replication", + "hadoop.security.auth_to_local", + "yarn.resource-types.memory-mb.minimum-allocation", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "yarn.resource-types", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[1]": [ + "fs.iostatistics.thread.level.enabled", + "yarn.scheduler.maximum-allocation-mb", + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "yarn.node-labels.configuration-type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "yarn.resourcemanager.configuration.provider-class", + "hadoop.token.files", + "hadoop.security.authentication", + "yarn.scheduler.minimum-allocation-mb", + "fs.file.impl.disable.cache", + "file.bytes-per-checksum", + "fs.permissions.umask-mode", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "fs.defaultFS", + "yarn.scheduler.maximum-allocation-vcores", + "hadoop.security.groups.cache.background.reload.threads", + "yarn.fs-store.file.replication", + "hadoop.security.auth_to_local", + "yarn.resource-types.memory-mb.minimum-allocation", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "yarn.resource-types", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAccessDenied": [ + "fs.iostatistics.thread.level.enabled", + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.option.openfile.buffer.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "fs.AbstractFileSystem.file.impl", + "hadoop.service.shutdown.timeout", + "yarn.nodemanager.log-aggregation.compression-type", + "hadoop.kerberos.min.seconds.before.relogin", + "yarn.nodemanager.remote-app-log-dir-include-older", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "fs.file.impl.disable.cache", + "hadoop.security.authentication", + "yarn.log-aggregation.TFile.remote-app-log-dir-suffix", + "fs.permissions.umask-mode", + "file.bytes-per-checksum", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "tfile.fs.output.buffer.size", + "hadoop.security.groups.negative-cache.secs", + "yarn.nodemanager.remote-app-log-dir-suffix", + "yarn.log-aggregation.file-controller.TFile.class", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "tfile.io.chunk.size", + "tfile.fs.input.buffer.size", + "yarn.nodemanager.log-aggregation.num-log-files-per-app", + "fs.defaultFS", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "yarn.log-aggregation.file-formats", + "yarn.log-aggregation.TFile.remote-app-log-dir", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBlockContainsPortNumForUnavailableAppLog": [ + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "yarn.http.policy", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "fs.AbstractFileSystem.file.impl", + "hadoop.kerberos.min.seconds.before.relogin", + "yarn.nodemanager.remote-app-log-dir-include-older", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "yarn.log-aggregation.TFile.remote-app-log-dir-suffix", + "hadoop.security.groups.cache.background.reload", + "yarn.nodemanager.hostname", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "yarn.nodemanager.remote-app-log-dir-suffix", + "hadoop.security.token.service.use_ip", + "yarn.log-aggregation.file-controller.TFile.class", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "yarn.nodemanager.log-aggregation.num-log-files-per-app", + "fs.defaultFS", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "yarn.log-aggregation.file-formats", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "yarn.log-aggregation.TFile.remote-app-log-dir", + "yarn.nodemanager.webapp.address" + ], + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBadLogs": [ + "fs.iostatistics.thread.level.enabled", + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "yarn.http.policy", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "fs.AbstractFileSystem.file.impl", + "hadoop.service.shutdown.timeout", + "yarn.nodemanager.log-aggregation.compression-type", + "hadoop.kerberos.min.seconds.before.relogin", + "yarn.nodemanager.remote-app-log-dir-include-older", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "fs.file.impl.disable.cache", + "fs.file.impl", + "hadoop.security.authentication", + "yarn.log-aggregation.TFile.remote-app-log-dir-suffix", + "fs.permissions.umask-mode", + "file.bytes-per-checksum", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "yarn.nodemanager.hostname", + "tfile.fs.output.buffer.size", + "hadoop.security.groups.negative-cache.secs", + "yarn.nodemanager.remote-app-log-dir-suffix", + "hadoop.security.token.service.use_ip", + "yarn.log-aggregation.file-controller.TFile.class", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "tfile.io.chunk.size", + "yarn.nodemanager.log-aggregation.num-log-files-per-app", + "fs.defaultFS", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "yarn.log-aggregation.file-formats", + "yarn.log-aggregation.TFile.remote-app-log-dir", + "yarn.nodemanager.webapp.address" + ], + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlockHar": [ + "fs.iostatistics.thread.level.enabled", + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.option.openfile.buffer.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "fs.AbstractFileSystem.file.impl", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "yarn.nodemanager.remote-app-log-dir-include-older", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "fs.file.impl.disable.cache", + "hadoop.security.authentication", + "file.bytes-per-checksum", + "hadoop.security.groups.cache.background.reload", + "fs.AbstractFileSystem.har.impl", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "file.stream-buffer-size", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "tfile.fs.input.buffer.size", + "fs.defaultFS", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "fs.har.metadatacache.entries", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlock": [ + "fs.iostatistics.thread.level.enabled", + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.option.openfile.buffer.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "fs.AbstractFileSystem.file.impl", + "hadoop.service.shutdown.timeout", + "yarn.nodemanager.log-aggregation.compression-type", + "hadoop.kerberos.min.seconds.before.relogin", + "yarn.nodemanager.remote-app-log-dir-include-older", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "fs.file.impl.disable.cache", + "hadoop.security.authentication", + "yarn.log-aggregation.TFile.remote-app-log-dir-suffix", + "fs.permissions.umask-mode", + "file.bytes-per-checksum", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "tfile.fs.output.buffer.size", + "hadoop.security.groups.negative-cache.secs", + "yarn.nodemanager.remote-app-log-dir-suffix", + "yarn.log-aggregation.file-controller.TFile.class", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "tfile.io.chunk.size", + "tfile.fs.input.buffer.size", + "yarn.nodemanager.log-aggregation.num-log-files-per-app", + "fs.defaultFS", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "yarn.log-aggregation.file-formats", + "yarn.log-aggregation.TFile.remote-app-log-dir", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testNoLogs": [ + "fs.iostatistics.thread.level.enabled", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.option.openfile.buffer.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "fs.AbstractFileSystem.file.impl", + "yarn.nodemanager.log-aggregation.compression-type", + "hadoop.kerberos.min.seconds.before.relogin", + "yarn.nodemanager.remote-app-log-dir-include-older", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "yarn.log-aggregation.TFile.remote-app-log-dir-suffix", + "fs.permissions.umask-mode", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "tfile.fs.output.buffer.size", + "hadoop.security.groups.negative-cache.secs", + "yarn.nodemanager.remote-app-log-dir-suffix", + "yarn.log-aggregation.file-controller.TFile.class", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "tfile.io.chunk.size", + "tfile.fs.input.buffer.size", + "yarn.nodemanager.log-aggregation.num-log-files-per-app", + "fs.defaultFS", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "yarn.log-aggregation.file-formats", + "yarn.log-aggregation.TFile.remote-app-log-dir", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRefreshLogRetentionSettings": [ + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "fs.mockfs.impl.disable.cache", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "yarn.log-aggregation.TFile.remote-app-log-dir-suffix", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "yarn.nodemanager.log-aggregation.num-log-files-per-app", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "yarn.log-aggregation.TFile.remote-app-log-dir", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testCheckInterval": [ + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "fs.mockfs.impl.disable.cache", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "yarn.log-aggregation.TFile.remote-app-log-dir-suffix", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "yarn.nodemanager.log-aggregation.num-log-files-per-app", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "yarn.log-aggregation.TFile.remote-app-log-dir", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletionTwoControllers": [ + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "indexedFile.fs.op.num-retries", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.service.shutdown.timeout", + "yarn.nodemanager.log-aggregation.compression-type", + "hadoop.kerberos.min.seconds.before.relogin", + "fs.mockfs.impl.disable.cache", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "indexedFile.log.roll-over.max-file-size-gb", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "yarn.nodemanager.log-aggregation.num-log-files-per-app", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "indexedFile.fs.retry-interval-ms", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletion": [ + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "fs.mockfs.impl.disable.cache", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "yarn.log-aggregation.TFile.remote-app-log-dir-suffix", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "yarn.nodemanager.log-aggregation.num-log-files-per-app", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "yarn.log-aggregation.TFile.remote-app-log-dir", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRobustLogDeletion": [ + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "fs.mockfs.impl.disable.cache", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "yarn.log-aggregation.TFile.remote-app-log-dir-suffix", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "yarn.nodemanager.log-aggregation.num-log-files-per-app", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "yarn.log-aggregation.TFile.remote-app-log-dir", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.logaggregation.TestLogAggregationMetaCollector#testAllNull": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.logaggregation.TestLogAggregationMetaCollector#testMultipleFileRegex": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.logaggregation.TestLogAggregationMetaCollector#testMultipleNodeRegexRequest": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.logaggregation.TestLogAggregationMetaCollector#testInvalidQueryStrings": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.logaggregation.TestLogAggregationMetaCollector#testContainerIdExactMatch": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.logaggregation.TestLogAggregationMetaCollector#testSingleNodeRequest": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.logaggregation.TestLogAggregationMetaCollector#testAllSet": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.logaggregation.TestLogAggregationMetaCollector#testMultipleFileBetweenSize": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testDefaultLogAggregationFileControllerFactory": [ + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "fs.AbstractFileSystem.file.impl", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "yarn.nodemanager.remote-app-log-dir-include-older", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "fs.file.impl.disable.cache", + "hadoop.token.files", + "hadoop.security.authentication", + "yarn.log-aggregation.TFile.remote-app-log-dir-suffix", + "fs.permissions.umask-mode", + "file.bytes-per-checksum", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "yarn.log-aggregation.file-controller.TFile.class", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "yarn.nodemanager.log-aggregation.num-log-files-per-app", + "fs.defaultFS", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "yarn.log-aggregation.file-formats", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "yarn.log-aggregation.TFile.remote-app-log-dir", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testClassConfUsed": [ + "yarn.nodemanager.log-aggregation.num-log-files-per-app", + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testLogAggregationFileControllerFactoryClassNotSet": [ + "yarn.log-aggregation.TestLogAggregationFileController.remote-app-log-dir", + "yarn.ipc.record.factory.class", + "yarn.log-aggregation.file-controller.TestLogAggregationFileController.class", + "yarn.log-aggregation.TestLogAggregationFileController.remote-app-log-dir-suffix" + ], + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testLogAggregationFileControllerFactory": [ + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "indexedFile.fs.op.num-retries", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "fs.AbstractFileSystem.file.impl", + "hadoop.service.shutdown.timeout", + "yarn.nodemanager.log-aggregation.compression-type", + "hadoop.kerberos.min.seconds.before.relogin", + "yarn.nodemanager.remote-app-log-dir-include-older", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "fs.file.impl.disable.cache", + "hadoop.token.files", + "hadoop.security.authentication", + "file.bytes-per-checksum", + "fs.permissions.umask-mode", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "indexedFile.log.roll-over.max-file-size-gb", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.token.service.use_ip", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "yarn.nodemanager.log-aggregation.num-log-files-per-app", + "fs.defaultFS", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "indexedFile.fs.retry-interval-ms", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testNodemanagerConfigurationIsUsed": [ + "yarn.nodemanager.log-aggregation.num-log-files-per-app", + "yarn.ipc.record.factory.class", + "yarn.log-aggregation.file-controller.TFile.class", + "yarn.log-aggregation.TFile.remote-app-log-dir", + "yarn.log-aggregation.TFile.remote-app-log-dir-suffix" + ], + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testDefaultConfUsed": [ + "yarn.nodemanager.log-aggregation.num-log-files-per-app", + "yarn.ipc.record.factory.class", + "yarn.log-aggregation.file-controller.TFile.class", + "yarn.log-aggregation.TFile.remote-app-log-dir", + "yarn.log-aggregation.TFile.remote-app-log-dir-suffix" + ], + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomUser": [ + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.security.authentication", + "yarn.log-aggregation.TFile.remote-app-log-dir-suffix", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "yarn.nodemanager.remote-app-log-dir-suffix", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "yarn.nodemanager.log-aggregation.num-log-files-per-app", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "yarn.log-aggregation.TFile.remote-app-log-dir", + "yarn.nodemanager.remote-app-log-dir", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomGroup": [ + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.security.authentication", + "yarn.log-aggregation.TFile.remote-app-log-dir-suffix", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "yarn.nodemanager.remote-app-log-dir-suffix", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "yarn.nodemanager.log-aggregation.num-log-files-per-app", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "yarn.log-aggregation.TFile.remote-app-log-dir", + "yarn.nodemanager.remote-app-log-dir", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationDefault": [ + "yarn.nodemanager.remote-app-log-dir.groupname", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.security.authentication", + "yarn.log-aggregation.TFile.remote-app-log-dir-suffix", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "yarn.nodemanager.remote-app-log-dir-suffix", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "yarn.nodemanager.log-aggregation.num-log-files-per-app", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "yarn.log-aggregation.TFile.remote-app-log-dir", + "yarn.nodemanager.remote-app-log-dir", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testFetchApplictionLogsHar": [ + "fs.iostatistics.thread.level.enabled", + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.option.openfile.buffer.size", + "fs.client.resolve.remote.symlinks", + "indexedFile.fs.op.num-retries", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "fs.AbstractFileSystem.file.impl", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "yarn.nodemanager.remote-app-log-dir-include-older", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "fs.file.impl.disable.cache", + "hadoop.token.files", + "hadoop.security.authentication", + "file.bytes-per-checksum", + "fs.permissions.umask-mode", + "hadoop.security.groups.cache.background.reload", + "fs.AbstractFileSystem.har.impl", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "indexedFile.log.roll-over.max-file-size-gb", + "file.stream-buffer-size", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "fs.defaultFS", + "yarn.nodemanager.log-aggregation.num-log-files-per-app", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "fs.har.metadatacache.entries", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "indexedFile.fs.retry-interval-ms", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetLogMetaFilesOfNode": [ + "fs.iostatistics.thread.level.enabled", + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "indexedFile.fs.op.num-retries", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "fs.AbstractFileSystem.file.impl", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "fs.file.impl.disable.cache", + "hadoop.token.files", + "hadoop.security.authentication", + "file.bytes-per-checksum", + "fs.permissions.umask-mode", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "indexedFile.log.roll-over.max-file-size-gb", + "file.stream-buffer-size", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "fs.defaultFS", + "yarn.nodemanager.log-aggregation.num-log-files-per-app", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "indexedFile.fs.retry-interval-ms", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetRollOverLogMaxSize": [ + "ssl.client.truststore.type", + "yarn.nodemanager.remote-app-log-dir", + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "hadoop.ssl.client.conf", + "ssl.client.keystore.type", + "fs.client.resolve.remote.symlinks", + "indexedFile.fs.op.num-retries", + "hadoop.security.groups.cache.secs", + "ipc.client.fallback-to-simple-auth-allowed", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.service.shutdown.timeout", + "hadoop.ssl.enabled.protocols", + "hadoop.kerberos.min.seconds.before.relogin", + "ssl.client.truststore.location", + "hadoop.ssl.hostname.verifier", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "fs.file.impl.disable.cache", + "hadoop.token.files", + "hadoop.security.authentication", + "file.bytes-per-checksum", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "indexedFile.log.roll-over.max-file-size-gb", + "hadoop.security.groups.negative-cache.secs", + "ssl.server.exclude.cipher.list", + "yarn.nodemanager.remote-app-log-dir-suffix", + "ssl.client.stores.reload.interval", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "fs.defaultFS", + "yarn.nodemanager.log-aggregation.num-log-files-per-app", + "hadoop.ssl.keystores.factory.class", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "indexedFile.fs.retry-interval-ms", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testLogAggregationIndexFileFormat": [ + "fs.iostatistics.thread.level.enabled", + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "indexedFile.fs.op.num-retries", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "fs.AbstractFileSystem.file.impl", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "yarn.nodemanager.remote-app-log-dir-include-older", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "fs.file.impl.disable.cache", + "hadoop.token.files", + "hadoop.security.authentication", + "file.bytes-per-checksum", + "fs.permissions.umask-mode", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "indexedFile.log.roll-over.max-file-size-gb", + "file.stream-buffer-size", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "fs.defaultFS", + "yarn.nodemanager.log-aggregation.num-log-files-per-app", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "indexedFile.fs.retry-interval-ms", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.conf.TestYarnConfiguration#testUpdateConnectAddr": [ + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "yarn.nodemanager.localizer.address.rm1", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.security.resolver.impl", + "hadoop.security.token.service.use_ip", + "yarn.http.policy" + ], + "org.apache.hadoop.yarn.conf.TestYarnConfiguration#testGetSocketAddressForNMWithHA": [ + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.security.resolver.impl", + "hadoop.security.token.service.use_ip", + "yarn.http.policy" + ], + "org.apache.hadoop.yarn.conf.TestYarnConfiguration#testRMWebUrlSpecified": [ + "yarn.resourcemanager.ha.enabled", + "yarn.http.policy" + ], + "org.apache.hadoop.yarn.conf.TestYarnConfiguration#testDefaultRMWebUrl": [ + "yarn.resourcemanager.hostname", + "yarn.resourcemanager.webapp.address", + "yarn.http.policy" + ], + "org.apache.hadoop.yarn.conf.TestYarnConfiguration#testGetSocketAddr": [ + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.dns.log-slow-lookups.enabled", + "yarn.resourcemanager.ha.enabled", + "yarn.resourcemanager.hostname", + "hadoop.security.resolver.impl", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.conf.TestHAUtil#testVerifyAndSetConfiguration": [ + "yarn.http.policy", + "yarn.resourcemanager.hostname.rm1" + ], + "org.apache.hadoop.yarn.conf.TestHAUtil#testGetRMServiceId": [ + "yarn.http.policy" + ], + "org.apache.hadoop.yarn.conf.TestHAUtil#testGetRMId": [ + "yarn.http.policy" + ], + "org.apache.hadoop.yarn.conf.TestHAUtil#testGetConfKeyForRMInstance": [ + "yarn.http.policy" + ], + "org.apache.hadoop.yarn.api.TestApplicationId#testApplicationId": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.api.TestNodeId#testNodeId": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.api.TestGetApplicationsRequest#testGetApplicationsRequest": [ + "yarn.ipc.record.factory.class", + "yarn.resourcemanager.application-tag-based-placement.force-lowercase" + ], + "org.apache.hadoop.yarn.api.protocolrecords.impl.pb.TestGetApplicationsRequestPBImpl#testAppTagsLowerCaseConversionDefault[0]": [ + "yarn.resourcemanager.application-tag-based-placement.force-lowercase" + ], + "org.apache.hadoop.yarn.api.protocolrecords.impl.pb.TestGetApplicationsRequestPBImpl#testAppTagsLowerCaseConversionDisabled[0]": [ + "yarn.resourcemanager.application-tag-based-placement.force-lowercase" + ], + "org.apache.hadoop.yarn.api.protocolrecords.impl.pb.TestGetApplicationsRequestPBImpl#testAppTagsLowerCaseConversionEnabled[0]": [ + "yarn.resourcemanager.application-tag-based-placement.force-lowercase" + ], + "org.apache.hadoop.yarn.api.protocolrecords.impl.pb.TestGetApplicationsRequestPBImpl#testAppTagsLowerCaseConversionDefault[1]": [ + "yarn.resourcemanager.application-tag-based-placement.force-lowercase" + ], + "org.apache.hadoop.yarn.api.protocolrecords.impl.pb.TestGetApplicationsRequestPBImpl#testAppTagsLowerCaseConversionDisabled[1]": [ + "yarn.resourcemanager.application-tag-based-placement.force-lowercase" + ], + "org.apache.hadoop.yarn.api.protocolrecords.impl.pb.TestGetApplicationsRequestPBImpl#testAppTagsLowerCaseConversionEnabled[1]": [ + "yarn.resourcemanager.application-tag-based-placement.force-lowercase" + ], + "org.apache.hadoop.yarn.api.TestTimelineEntityGroupId#testTimelineEntityGroupId": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.api.TestContainerId#testContainerId": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.api.TestApplicationAttemptId#testApplicationAttemptId": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBInitFromOldPB": [ + "yarn.scheduler.maximum-allocation-mb", + "yarn.resource-types.yarn.io/gpu.tags", + "yarn.resource-types.resource3.maximum-allocation", + "yarn.resource-types.resource1.minimum-allocation", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource2.type", + "yarn.resource-types.yarn.io/test-volume.maximum-allocation", + "yarn.resource-types.resource1.type", + "yarn.resource-types.resource3.units", + "yarn.resource-types.yarn.io/test-volume.minimum-allocation", + "yarn.resource-types.resource1.units", + "yarn.resource-types.yarn.io/gpu.minimum-allocation", + "yarn.resource-types.yarn.io/gpu.type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resourcemanager.configuration.provider-class", + "yarn.scheduler.minimum-allocation-mb", + "yarn.resource-types.resource3.tags", + "yarn.resource-types.resource2.units", + "yarn.resource-types.yarn.io/test-volume.type", + "yarn.resource-types.resource3.minimum-allocation", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.resource-types.resource3.type", + "yarn.resource-types.yarn.io/test-volume.units", + "yarn.resource-types.yarn.io/gpu.units", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.resource-types.resource1.maximum-allocation", + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.resource-types.resource1.tags", + "yarn.resource-types.yarn.io/gpu.maximum-allocation", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types", + "yarn.resource-types.yarn.io/test-volume.tags" + ], + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceAttributes": [ + "yarn.scheduler.maximum-allocation-mb", + "yarn.resource-types.yarn.io/gpu.tags", + "yarn.resource-types.resource3.maximum-allocation", + "yarn.resource-types.resource1.minimum-allocation", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource2.type", + "yarn.resource-types.yarn.io/test-volume.maximum-allocation", + "yarn.resource-types.resource1.type", + "yarn.resource-types.resource3.units", + "yarn.resource-types.yarn.io/test-volume.minimum-allocation", + "yarn.resource-types.resource1.units", + "yarn.resource-types.yarn.io/gpu.minimum-allocation", + "yarn.resource-types.yarn.io/gpu.type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resourcemanager.configuration.provider-class", + "yarn.scheduler.minimum-allocation-mb", + "yarn.resource-types.resource3.tags", + "yarn.resource-types.resource2.units", + "yarn.resource-types.yarn.io/test-volume.type", + "yarn.resource-types.resource3.minimum-allocation", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.resource-types.resource3.type", + "yarn.resource-types.yarn.io/test-volume.units", + "yarn.resource-types.yarn.io/gpu.units", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.resource-types.resource1.maximum-allocation", + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.resource-types.resource1.tags", + "yarn.resource-types.yarn.io/gpu.maximum-allocation", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types", + "yarn.resource-types.yarn.io/test-volume.tags" + ], + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testParsingResourceTags": [ + "yarn.scheduler.maximum-allocation-mb", + "yarn.resource-types.yarn.io/gpu.tags", + "yarn.resource-types.resource3.maximum-allocation", + "yarn.resource-types.resource1.minimum-allocation", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource2.type", + "yarn.resource-types.yarn.io/test-volume.maximum-allocation", + "yarn.resource-types.resource1.type", + "yarn.resource-types.resource3.units", + "yarn.resource-types.yarn.io/test-volume.minimum-allocation", + "yarn.resource-types.resource1.units", + "yarn.resource-types.yarn.io/gpu.minimum-allocation", + "yarn.resource-types.yarn.io/gpu.type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resourcemanager.configuration.provider-class", + "yarn.scheduler.minimum-allocation-mb", + "yarn.resource-types.resource3.tags", + "yarn.resource-types.resource2.units", + "yarn.resource-types.yarn.io/test-volume.type", + "yarn.resource-types.resource3.minimum-allocation", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.resource-types.resource3.type", + "yarn.resource-types.yarn.io/test-volume.units", + "yarn.resource-types.yarn.io/gpu.units", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.resource-types.resource1.maximum-allocation", + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.resource-types.resource1.tags", + "yarn.resource-types.yarn.io/gpu.maximum-allocation", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types", + "yarn.resource-types.yarn.io/test-volume.tags" + ], + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBWithExtraResources": [ + "yarn.scheduler.maximum-allocation-mb", + "yarn.resource-types.yarn.io/gpu.tags", + "yarn.resource-types.resource3.maximum-allocation", + "yarn.resource-types.resource1.minimum-allocation", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource2.type", + "yarn.resource-types.yarn.io/test-volume.maximum-allocation", + "yarn.resource-types.resource1.type", + "yarn.resource-types.resource3.units", + "yarn.resource-types.yarn.io/test-volume.minimum-allocation", + "yarn.resource-types.resource1.units", + "yarn.resource-types.yarn.io/gpu.minimum-allocation", + "yarn.resource-types.yarn.io/gpu.type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resourcemanager.configuration.provider-class", + "yarn.scheduler.minimum-allocation-mb", + "yarn.resource-types.resource3.tags", + "yarn.resource-types.resource2.units", + "yarn.resource-types.yarn.io/test-volume.type", + "yarn.resource-types.resource3.minimum-allocation", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.resource-types.resource3.type", + "yarn.resource-types.yarn.io/test-volume.units", + "yarn.resource-types.yarn.io/gpu.units", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.resource-types.resource1.maximum-allocation", + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.resource-types.resource1.tags", + "yarn.resource-types.yarn.io/gpu.maximum-allocation", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types", + "yarn.resource-types.yarn.io/test-volume.tags" + ], + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testEmptyResourcePBInit": [ + "yarn.scheduler.maximum-allocation-mb", + "yarn.resource-types.yarn.io/gpu.tags", + "yarn.resource-types.resource3.maximum-allocation", + "yarn.resource-types.resource1.minimum-allocation", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource2.type", + "yarn.resource-types.yarn.io/test-volume.maximum-allocation", + "yarn.resource-types.resource1.type", + "yarn.resource-types.resource3.units", + "yarn.resource-types.yarn.io/test-volume.minimum-allocation", + "yarn.resource-types.resource1.units", + "yarn.resource-types.yarn.io/gpu.minimum-allocation", + "yarn.resource-types.yarn.io/gpu.type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resourcemanager.configuration.provider-class", + "yarn.scheduler.minimum-allocation-mb", + "yarn.resource-types.resource3.tags", + "yarn.resource-types.resource2.units", + "yarn.resource-types.yarn.io/test-volume.type", + "yarn.resource-types.resource3.minimum-allocation", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.resource-types.resource3.type", + "yarn.resource-types.yarn.io/test-volume.units", + "yarn.resource-types.yarn.io/gpu.units", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.resource-types.resource1.maximum-allocation", + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.resource-types.resource1.tags", + "yarn.resource-types.yarn.io/gpu.maximum-allocation", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types", + "yarn.resource-types.yarn.io/test-volume.tags" + ], + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceTags": [ + "yarn.scheduler.maximum-allocation-mb", + "yarn.resource-types.yarn.io/gpu.tags", + "yarn.resource-types.resource3.maximum-allocation", + "yarn.resource-types.resource1.minimum-allocation", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource2.type", + "yarn.resource-types.yarn.io/test-volume.maximum-allocation", + "yarn.resource-types.resource1.type", + "yarn.resource-types.resource3.units", + "yarn.resource-types.yarn.io/test-volume.minimum-allocation", + "yarn.resource-types.resource1.units", + "yarn.resource-types.yarn.io/gpu.minimum-allocation", + "yarn.resource-types.yarn.io/gpu.type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resourcemanager.configuration.provider-class", + "yarn.scheduler.minimum-allocation-mb", + "yarn.resource-types.resource3.tags", + "yarn.resource-types.resource2.units", + "yarn.resource-types.yarn.io/test-volume.type", + "yarn.resource-types.resource3.minimum-allocation", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.resource-types.resource3.type", + "yarn.resource-types.yarn.io/test-volume.units", + "yarn.resource-types.yarn.io/gpu.units", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.resource-types.resource1.maximum-allocation", + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.resource-types.resource1.tags", + "yarn.resource-types.yarn.io/gpu.maximum-allocation", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types", + "yarn.resource-types.yarn.io/test-volume.tags" + ], + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetVirtualCores": [ + "yarn.scheduler.maximum-allocation-mb", + "yarn.resource-types.yarn.io/gpu.tags", + "yarn.resource-types.resource3.maximum-allocation", + "yarn.resource-types.resource1.minimum-allocation", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource2.type", + "yarn.resource-types.yarn.io/test-volume.maximum-allocation", + "yarn.resource-types.resource1.type", + "yarn.resource-types.resource3.units", + "yarn.resource-types.yarn.io/test-volume.minimum-allocation", + "yarn.resource-types.resource1.units", + "yarn.resource-types.yarn.io/gpu.minimum-allocation", + "yarn.resource-types.yarn.io/gpu.type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resourcemanager.configuration.provider-class", + "yarn.scheduler.minimum-allocation-mb", + "yarn.resource-types.resource3.tags", + "yarn.resource-types.resource2.units", + "yarn.resource-types.yarn.io/test-volume.type", + "yarn.resource-types.resource3.minimum-allocation", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.resource-types.resource3.type", + "yarn.resource-types.yarn.io/test-volume.units", + "yarn.resource-types.yarn.io/gpu.units", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.resource-types.resource1.maximum-allocation", + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.resource-types.resource1.tags", + "yarn.resource-types.yarn.io/gpu.maximum-allocation", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types", + "yarn.resource-types.yarn.io/test-volume.tags" + ], + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetMemory": [ + "yarn.scheduler.maximum-allocation-mb", + "yarn.resource-types.yarn.io/gpu.tags", + "yarn.resource-types.resource3.maximum-allocation", + "yarn.resource-types.resource1.minimum-allocation", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource2.type", + "yarn.resource-types.yarn.io/test-volume.maximum-allocation", + "yarn.resource-types.resource1.type", + "yarn.resource-types.resource3.units", + "yarn.resource-types.yarn.io/test-volume.minimum-allocation", + "yarn.resource-types.resource1.units", + "yarn.resource-types.yarn.io/gpu.minimum-allocation", + "yarn.resource-types.yarn.io/gpu.type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resourcemanager.configuration.provider-class", + "yarn.scheduler.minimum-allocation-mb", + "yarn.resource-types.resource3.tags", + "yarn.resource-types.resource2.units", + "yarn.resource-types.yarn.io/test-volume.type", + "yarn.resource-types.resource3.minimum-allocation", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.resource-types.resource3.type", + "yarn.resource-types.yarn.io/test-volume.units", + "yarn.resource-types.yarn.io/gpu.units", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.resource-types.resource1.maximum-allocation", + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.resource-types.resource1.tags", + "yarn.resource-types.yarn.io/gpu.maximum-allocation", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types", + "yarn.resource-types.yarn.io/test-volume.tags" + ], + "org.apache.hadoop.yarn.api.records.TestResourceUtilization#testResourceUtilizationWithCustomResource": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.api.records.TestResourceUtilization#testResourceUtilization": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.api.records.timelineservice.TestTimelineServiceRecords#testFirstClassCitizenEntities": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.api.records.impl.pb.TestApplicationClientProtocolRecords#testCLCPBImplNullResourceType": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.api.records.impl.pb.TestApplicationClientProtocolRecords#testCLCPBImplNullResourceVisibility": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.api.records.impl.pb.TestApplicationClientProtocolRecords#testCLCPBImplNullResourceURL": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.api.records.impl.pb.TestApplicationClientProtocolRecords#testCLCPBImplNullEnv": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.api.records.impl.pb.TestApplicationSubmissionContextPBImpl#testAppTagsLowerCaseConversionDefault[0]": [ + "yarn.resourcemanager.application-tag-based-placement.force-lowercase" + ], + "org.apache.hadoop.yarn.api.records.impl.pb.TestApplicationSubmissionContextPBImpl#testAppTagsLowerCaseConversionDisabled[0]": [ + "yarn.resourcemanager.application-tag-based-placement.force-lowercase" + ], + "org.apache.hadoop.yarn.api.records.impl.pb.TestApplicationSubmissionContextPBImpl#testAppTagsLowerCaseConversionEnabled[0]": [ + "yarn.resourcemanager.application-tag-based-placement.force-lowercase" + ], + "org.apache.hadoop.yarn.api.records.impl.pb.TestApplicationSubmissionContextPBImpl#testAppTagsLowerCaseConversionDefault[1]": [ + "yarn.resourcemanager.application-tag-based-placement.force-lowercase" + ], + "org.apache.hadoop.yarn.api.records.impl.pb.TestApplicationSubmissionContextPBImpl#testAppTagsLowerCaseConversionDisabled[1]": [ + "yarn.resourcemanager.application-tag-based-placement.force-lowercase" + ], + "org.apache.hadoop.yarn.api.records.impl.pb.TestApplicationSubmissionContextPBImpl#testAppTagsLowerCaseConversionEnabled[1]": [ + "yarn.resourcemanager.application-tag-based-placement.force-lowercase" + ], + "org.apache.hadoop.yarn.api.TestApplicatonReport#testApplicationReport": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.api.TestResourceRequest#testEqualsOnExecutionTypeRequest": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.ipc.record.factory.class", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testAMRMTokenIdentifier": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testNMTokenIdentifierOldFormat": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testAMContainerTokenIdentifier": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.ipc.record.factory.class", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testContainerTokenIdentifierOldFormat": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.ipc.record.factory.class", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testContainerTokenIdentifier": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.ipc.record.factory.class", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testNMTokenIdentifier": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testAMRMTokenIdentifierOldFormat": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testClientToAMTokenIdentifier": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testParseTimelineDelegationTokenIdentifierRenewer": [ + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.security.resolver.impl", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.authentication", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testReadCredentialsFromConfigFile": [ + "fs.iostatistics.thread.level.enabled", + "fs.automatic.close", + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "fs.file.impl.disable.cache", + "hadoop.token.files", + "hadoop.security.authentication", + "file.bytes-per-checksum", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "file.stream-buffer-size", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "fs.defaultFS", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testGetCredentialsFromTokensByteBuffer": [ + "fs.iostatistics.thread.level.enabled", + "fs.automatic.close", + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "fs.file.impl.disable.cache", + "hadoop.token.files", + "hadoop.security.authentication", + "file.bytes-per-checksum", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "file.stream-buffer-size", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "fs.defaultFS", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testWriteDockerCredentialsToPath": [ + "fs.iostatistics.thread.level.enabled", + "fs.automatic.close", + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "fs.file.impl.disable.cache", + "hadoop.token.files", + "hadoop.security.authentication", + "file.bytes-per-checksum", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "file.stream-buffer-size", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "fs.defaultFS", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ] +} \ No newline at end of file From c3a4d533cda470347fc3c5b07f924cb5452fa7b7 Mon Sep 17 00:00:00 2001 From: yuanfei2 Date: Wed, 30 Nov 2022 22:26:35 -0600 Subject: [PATCH 08/15] upload param_unset_getter_map.json --- .../param_unset_getter_map.json | 5478 +++++++++++++++++ 1 file changed, 5478 insertions(+) create mode 100644 core/identify_param/results/hadoop-yarn-common/param_unset_getter_map.json diff --git a/core/identify_param/results/hadoop-yarn-common/param_unset_getter_map.json b/core/identify_param/results/hadoop-yarn-common/param_unset_getter_map.json new file mode 100644 index 00000000..a93718bb --- /dev/null +++ b/core/identify_param/results/hadoop-yarn-common/param_unset_getter_map.json @@ -0,0 +1,5478 @@ +{ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout": [ + "ipc.server.metrics.update.runner.interval", + "ipc.0.callqueue.overflow.trigger.failover", + "hadoop.security.authorization", + "ipc.server.max.response.size", + "hadoop.kerberos.min.seconds.before.relogin", + "ipc.client.connect.max.retries.on.timeouts", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "yarn.resourcemanager.configuration.provider-class", + "hadoop.security.authentication", + "yarn.scheduler.minimum-allocation-mb", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "ipc.backoff.enable", + "ipc.server.max.connections", + "ipc.client.ping", + "ipc.server.log.slow.rpc", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.resource-types", + "hadoop.security.token.service.use_ip", + "ipc.server.purge.interval", + "ipc.client.low-latency", + "hadoop.rpc.socket.factory.class.default", + "ipc.server.tcpnodelay", + "ipc.client.fallback-to-simple-auth-allowed", + "hadoop.user.group.metrics.percentiles.intervals", + "ipc.ping.interval", + "ipc.0.callqueue.impl", + "hadoop.security.groups.cache.background.reload.threads", + "ipc.client.connection.maxidletime", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "yarn.ipc.record.factory.class", + "ipc.0.callqueue.capacity.weights", + "ipc.0.faircallqueue.priority-levels", + "ipc.client.connect.timeout", + "ipc.0.scheduler.impl", + "ipc.client.connect.retry.interval", + "ipc.scheduler.impl", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.ipc.server.factory.class", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "ipc.client.async.calls.max", + "ipc.client.connect.max.retries", + "yarn.resource-types.vcores.maximum-allocation", + "ipc.server.handler.queue.size", + "ipc.callqueue.impl", + "ipc.client.kill.max", + "yarn.scheduler.maximum-allocation-vcores", + "hadoop.security.auth_to_local", + "yarn.resource-types.memory-mb.minimum-allocation", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "rpc.metrics.percentiles.intervals", + "ipc.0.backoff.enable", + "ipc.client.tcpnodelay", + "yarn.scheduler.maximum-allocation-mb", + "ipc.client.connect.max.retries.on.sasl", + "ipc.server.reuseaddr", + "ipc.client.idlethreshold", + "ipc.maximum.data.length", + "hadoop.security.groups.cache.secs", + "ipc.0.scheduler.priority.levels", + "ipc.client.connection.idle-scan-interval.ms", + "yarn.scheduler.minimum-allocation-vcores", + "ipc.client.bind.wildcard.addr", + "ipc.server.read.connection-queue.size", + "ipc.maximum.response.length", + "yarn.ipc.client.factory.class", + "ipc.server.read.threadpool.size", + "ipc.server.listen.queue.size", + "rpc.metrics.timeunit", + "hadoop.security.group.mapping" + ], + "org.apache.hadoop.yarn.client.TestClientRMProxy#testProxyUserCorrectUGI": [ + "yarn.client.failover-sleep-base-ms", + "ipc.client.tcpnodelay", + "ipc.client.connect.max.retries.on.sasl", + "yarn.client.failover-proxy-provider", + "ipc.client.low-latency", + "yarn.ipc.record.factory.class", + "yarn.client.failover-retries", + "hadoop.rpc.socket.factory.class.default", + "ipc.client.connect.timeout", + "yarn.http.policy", + "ipc.client.rpc-timeout.ms", + "hadoop.security.groups.cache.secs", + "ipc.client.fallback-to-simple-auth-allowed", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "ipc.client.connect.retry.interval", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "ipc.ping.interval", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "ipc.client.bind.wildcard.addr", + "hadoop.security.groups.negative-cache.secs", + "ipc.client.async.calls.max", + "ipc.maximum.response.length", + "hadoop.security.resolver.impl", + "yarn.ipc.client.factory.class", + "ipc.client.ping", + "hadoop.security.groups.cache.background.reload.threads", + "yarn.client.failover-sleep-max-ms", + "hadoop.security.auth_to_local", + "ipc.client.connection.maxidletime", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "yarn.client.failover-retries-on-socket-timeouts", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.client.TestClientRMProxy#testGetRMDelegationTokenService": [ + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "yarn.resourcemanager.address", + "hadoop.security.dns.log-slow-lookups.enabled", + "yarn.resourcemanager.hostname", + "hadoop.security.resolver.impl", + "hadoop.security.token.service.use_ip", + "yarn.http.policy" + ], + "org.apache.hadoop.yarn.client.TestClientRMProxy#testGetAMRMTokenService": [ + "yarn.resourcemanager.scheduler.address", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.dns.log-slow-lookups.enabled", + "yarn.resourcemanager.hostname", + "hadoop.security.resolver.impl", + "hadoop.security.token.service.use_ip", + "yarn.http.policy" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainersForAppAttempt": [ + "yarn.timeline-service.client.retry-interval-ms", + "yarn.ipc.record.factory.class", + "yarn.timeline-service.webapp.address", + "yarn.http.policy", + "hadoop.security.groups.cache.secs", + "yarn.timeline-service.reader.webapp.address", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "yarn.timeline-service.hostname", + "yarn.timeline-service.versions", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip", + "yarn.resourcemanager.cluster-id", + "yarn.timeline-service.client.max-retries" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetApplication": [ + "yarn.timeline-service.client.retry-interval-ms", + "yarn.ipc.record.factory.class", + "yarn.timeline-service.webapp.address", + "yarn.http.policy", + "hadoop.security.groups.cache.secs", + "yarn.timeline-service.reader.webapp.address", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "yarn.timeline-service.hostname", + "yarn.timeline-service.versions", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip", + "yarn.resourcemanager.cluster-id", + "yarn.timeline-service.client.max-retries" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainer": [ + "yarn.timeline-service.client.retry-interval-ms", + "yarn.ipc.record.factory.class", + "yarn.timeline-service.webapp.address", + "yarn.http.policy", + "hadoop.security.groups.cache.secs", + "yarn.timeline-service.reader.webapp.address", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "yarn.timeline-service.hostname", + "yarn.timeline-service.versions", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip", + "yarn.resourcemanager.cluster-id", + "yarn.timeline-service.client.max-retries" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntities": [ + "yarn.timeline-service.client.retry-interval-ms", + "yarn.ipc.record.factory.class", + "yarn.timeline-service.webapp.address", + "yarn.http.policy", + "hadoop.security.groups.cache.secs", + "yarn.timeline-service.reader.webapp.address", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "yarn.timeline-service.hostname", + "yarn.timeline-service.versions", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip", + "yarn.resourcemanager.cluster-id", + "yarn.timeline-service.client.max-retries" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntity": [ + "yarn.timeline-service.client.retry-interval-ms", + "yarn.ipc.record.factory.class", + "yarn.timeline-service.webapp.address", + "yarn.http.policy", + "hadoop.security.groups.cache.secs", + "yarn.timeline-service.reader.webapp.address", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "yarn.timeline-service.hostname", + "yarn.timeline-service.versions", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip", + "yarn.resourcemanager.cluster-id", + "yarn.timeline-service.client.max-retries" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainers": [ + "yarn.timeline-service.client.retry-interval-ms", + "yarn.ipc.record.factory.class", + "yarn.timeline-service.webapp.address", + "yarn.http.policy", + "hadoop.security.groups.cache.secs", + "yarn.timeline-service.reader.webapp.address", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "yarn.timeline-service.hostname", + "yarn.timeline-service.versions", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip", + "yarn.resourcemanager.cluster-id", + "yarn.timeline-service.client.max-retries" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities": [ + "fs.iostatistics.thread.level.enabled", + "fs.automatic.close", + "yarn.timeline-service.client.retry-interval-ms", + "yarn.timeline-service.client.fd-clean-interval-secs", + "yarn.ipc.record.factory.class", + "yarn.timeline-service.entity-group-fs-store.with-user-dir", + "fs.local.block.size", + "yarn.timeline-service.webapp.address", + "yarn.timeline-service.client.fd-retain-secs", + "fs.client.resolve.remote.symlinks", + "yarn.http.policy", + "yarn.timeline-service.client.fd-flush-interval-secs", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "fs.AbstractFileSystem.file.impl", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "yarn.timeline-service.client.internal-attempt-dir-cache-size", + "file.bytes-per-checksum", + "fs.permissions.umask-mode", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "file.stream-buffer-size", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "yarn.timeline-service.hostname", + "yarn.timeline-service.versions", + "fs.defaultFS", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "yarn.timeline-service.entity-file.fs-support-append", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "yarn.timeline-service.client.internal-timers-ttl-secs", + "hadoop.security.token.service.use_ip", + "fs.file.impl", + "yarn.timeline-service.client.max-retries" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir": [ + "fs.iostatistics.thread.level.enabled", + "fs.automatic.close", + "yarn.timeline-service.client.retry-interval-ms", + "yarn.timeline-service.client.fd-clean-interval-secs", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "yarn.timeline-service.webapp.address", + "yarn.timeline-service.client.fd-retain-secs", + "fs.client.resolve.remote.symlinks", + "yarn.http.policy", + "yarn.timeline-service.client.fd-flush-interval-secs", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "fs.AbstractFileSystem.file.impl", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "yarn.timeline-service.client.internal-attempt-dir-cache-size", + "file.bytes-per-checksum", + "fs.permissions.umask-mode", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "file.stream-buffer-size", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "yarn.timeline-service.hostname", + "yarn.timeline-service.versions", + "fs.defaultFS", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "yarn.timeline-service.entity-file.fs-support-append", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "yarn.timeline-service.client.internal-timers-ttl-secs", + "hadoop.security.token.service.use_ip", + "fs.file.impl", + "yarn.timeline-service.client.max-retries" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain": [ + "fs.iostatistics.thread.level.enabled", + "fs.automatic.close", + "yarn.timeline-service.client.retry-interval-ms", + "yarn.timeline-service.client.fd-clean-interval-secs", + "yarn.ipc.record.factory.class", + "yarn.timeline-service.entity-group-fs-store.with-user-dir", + "fs.local.block.size", + "yarn.timeline-service.webapp.address", + "yarn.timeline-service.client.fd-retain-secs", + "fs.client.resolve.remote.symlinks", + "yarn.http.policy", + "yarn.timeline-service.client.fd-flush-interval-secs", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "fs.AbstractFileSystem.file.impl", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "yarn.timeline-service.client.internal-attempt-dir-cache-size", + "file.bytes-per-checksum", + "fs.permissions.umask-mode", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "file.stream-buffer-size", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "yarn.timeline-service.hostname", + "yarn.timeline-service.versions", + "fs.defaultFS", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "yarn.timeline-service.entity-file.fs-support-append", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "yarn.timeline-service.client.internal-timers-ttl-secs", + "hadoop.security.token.service.use_ip", + "fs.file.impl", + "yarn.timeline-service.client.max-retries" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir": [ + "fs.iostatistics.thread.level.enabled", + "fs.automatic.close", + "yarn.timeline-service.client.retry-interval-ms", + "yarn.timeline-service.client.fd-clean-interval-secs", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "yarn.timeline-service.webapp.address", + "yarn.timeline-service.client.fd-retain-secs", + "fs.client.resolve.remote.symlinks", + "yarn.http.policy", + "yarn.timeline-service.client.fd-flush-interval-secs", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "fs.AbstractFileSystem.file.impl", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "yarn.timeline-service.client.internal-attempt-dir-cache-size", + "file.bytes-per-checksum", + "fs.permissions.umask-mode", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "file.stream-buffer-size", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "yarn.timeline-service.hostname", + "yarn.timeline-service.versions", + "fs.defaultFS", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "yarn.timeline-service.entity-file.fs-support-append", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "yarn.timeline-service.client.internal-timers-ttl-secs", + "hadoop.security.token.service.use_ip", + "fs.file.impl", + "yarn.timeline-service.client.max-retries" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenOperationsRetry": [ + "yarn.timeline-service.webapp.address", + "yarn.http.policy", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "yarn.timeline-service.hostname", + "yarn.timeline-service.versions", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntities": [ + "yarn.timeline-service.client.retry-interval-ms", + "yarn.timeline-service.webapp.address", + "yarn.http.policy", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "yarn.timeline-service.hostname", + "yarn.timeline-service.versions", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip", + "yarn.timeline-service.client.max-retries" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineClientCleanup": [ + "hadoop.security.credential.provider.path", + "ssl.client.truststore.type", + "yarn.timeline-service.client.retry-interval-ms", + "ssl.client.keystore.type", + "yarn.timeline-service.webapp.address", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.ssl.enabled.protocols", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "ssl.server.exclude.cipher.list", + "ssl.client.stores.reload.interval", + "hadoop.security.resolver.impl", + "yarn.timeline-service.hostname", + "yarn.timeline-service.versions", + "hadoop.security.credential.clear-text-fallback", + "hadoop.ssl.keystores.factory.class", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "yarn.timeline-service.webapp.https.address", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostIncompleteEntities": [ + "yarn.timeline-service.client.retry-interval-ms", + "yarn.timeline-service.webapp.address", + "yarn.http.policy", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "yarn.timeline-service.hostname", + "yarn.timeline-service.versions", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip", + "yarn.timeline-service.client.max-retries" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainConnectionRefused": [ + "yarn.timeline-service.client.retry-interval-ms", + "yarn.timeline-service.webapp.address", + "yarn.http.policy", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "yarn.timeline-service.hostname", + "yarn.timeline-service.versions", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip", + "yarn.timeline-service.client.max-retries" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesWithError": [ + "yarn.timeline-service.client.retry-interval-ms", + "yarn.timeline-service.webapp.address", + "yarn.http.policy", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "yarn.timeline-service.hostname", + "yarn.timeline-service.versions", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip", + "yarn.timeline-service.client.max-retries" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomain": [ + "yarn.timeline-service.client.retry-interval-ms", + "yarn.timeline-service.webapp.address", + "yarn.http.policy", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "yarn.timeline-service.hostname", + "yarn.timeline-service.versions", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip", + "yarn.timeline-service.client.max-retries" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenDisabledOnSimpleAuth": [ + "yarn.timeline-service.client.retry-interval-ms", + "yarn.timeline-service.webapp.address", + "yarn.http.policy", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "yarn.timeline-service.hostname", + "yarn.timeline-service.versions", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip", + "yarn.timeline-service.client.max-retries" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testCheckRetryCount": [ + "yarn.timeline-service.webapp.address", + "yarn.http.policy", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "yarn.timeline-service.hostname", + "yarn.timeline-service.versions", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesNoResponse": [ + "yarn.timeline-service.client.retry-interval-ms", + "yarn.timeline-service.webapp.address", + "yarn.http.policy", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "yarn.timeline-service.hostname", + "yarn.timeline-service.versions", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip", + "yarn.timeline-service.client.max-retries" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesConnectionRefused": [ + "yarn.timeline-service.client.retry-interval-ms", + "yarn.timeline-service.webapp.address", + "yarn.http.policy", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "yarn.timeline-service.hostname", + "yarn.timeline-service.versions", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip", + "yarn.timeline-service.client.max-retries" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainNoResponse": [ + "yarn.timeline-service.client.retry-interval-ms", + "yarn.timeline-service.webapp.address", + "yarn.http.policy", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "yarn.timeline-service.hostname", + "yarn.timeline-service.versions", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip", + "yarn.timeline-service.client.max-retries" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineConnectorDestroy": [ + "yarn.timeline-service.client.retry-interval-ms", + "yarn.timeline-service.webapp.address", + "yarn.http.policy", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "yarn.timeline-service.hostname", + "yarn.timeline-service.versions", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip", + "yarn.timeline-service.client.max-retries" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSyncCall": [ + "yarn.timeline-service.client.retry-interval-ms", + "yarn.ipc.record.factory.class", + "yarn.timeline-service.client.drain-entities.timeout.ms", + "yarn.http.policy", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "yarn.timeline-service.versions", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip", + "yarn.timeline-service.client.max-retries" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testPostEntities": [ + "yarn.timeline-service.client.retry-interval-ms", + "yarn.ipc.record.factory.class", + "yarn.timeline-service.client.drain-entities.timeout.ms", + "yarn.http.policy", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "yarn.timeline-service.versions", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip", + "yarn.timeline-service.client.max-retries" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSetTimelineToken": [ + "yarn.timeline-service.client.retry-interval-ms", + "yarn.ipc.record.factory.class", + "yarn.timeline-service.client.drain-entities.timeout.ms", + "yarn.http.policy", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "yarn.timeline-service.versions", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip", + "yarn.timeline-service.client.max-retries" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionCalls": [ + "yarn.timeline-service.client.retry-interval-ms", + "yarn.ipc.record.factory.class", + "yarn.timeline-service.client.drain-entities.timeout.ms", + "yarn.http.policy", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "yarn.timeline-service.versions", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip", + "yarn.timeline-service.client.max-retries" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionMultipleRetry": [ + "yarn.timeline-service.client.retry-interval-ms", + "yarn.ipc.record.factory.class", + "yarn.timeline-service.client.drain-entities.timeout.ms", + "yarn.http.policy", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "yarn.timeline-service.versions", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testASyncCallMerge": [ + "yarn.timeline-service.client.retry-interval-ms", + "yarn.ipc.record.factory.class", + "yarn.timeline-service.client.drain-entities.timeout.ms", + "yarn.http.policy", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "yarn.timeline-service.versions", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip", + "yarn.timeline-service.client.max-retries" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testConfigurableNumberOfMerges": [ + "yarn.timeline-service.client.retry-interval-ms", + "yarn.ipc.record.factory.class", + "yarn.timeline-service.client.drain-entities.timeout.ms", + "yarn.http.policy", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "yarn.timeline-service.versions", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip", + "yarn.timeline-service.client.max-retries" + ], + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testAfterStop": [ + "yarn.timeline-service.client.retry-interval-ms", + "yarn.ipc.record.factory.class", + "yarn.timeline-service.client.drain-entities.timeout.ms", + "yarn.http.policy", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "yarn.timeline-service.versions", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "yarn.timeline-service.http-authentication.type", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip", + "yarn.timeline-service.client.max-retries" + ], + "org.apache.hadoop.yarn.util.TestApps#testSetEnvFromInputPropertyDefault": [ + "mapreduce.map.envbogus" + ], + "org.apache.hadoop.yarn.util.TestApps#testSetEnvFromInputPropertyNull": [ + "bogus1" + ], + "org.apache.hadoop.yarn.util.TestApps#testSetEnvFromInputPropertyOverrideDefault": [ + "mapreduce.reduce.env" + ], + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testProcessTreeDump": [ + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "fs.AbstractFileSystem.file.impl", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testProcessTree": [ + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "fs.AbstractFileSystem.file.impl", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testMemForOlderProcesses": [ + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "fs.AbstractFileSystem.file.impl", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testCpuAndMemoryForProcessTree": [ + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "fs.AbstractFileSystem.file.impl", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testDestroyProcessTree": [ + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "fs.AbstractFileSystem.file.impl", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithExtraResource[DefaultResourceCalculator]": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.resource-types.test.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.test.minimum-allocation", + "yarn.resource-types.test.units", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types.test.tags", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb", + "yarn.resource-types.test.type" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithEmptyCluster[DefaultResourceCalculator]": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompare[DefaultResourceCalculator]": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.resource-types.test.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.test.minimum-allocation", + "yarn.resource-types.test.units", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types.test.tags", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb", + "yarn.resource-types.test.type" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithNoExtraResource[DefaultResourceCalculator]": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testNormalize[DefaultResourceCalculator]": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioNumeratorAndDenominatorIsZero[DefaultResourceCalculator]": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithOnlyMandatory[DefaultResourceCalculator]": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsIn[DefaultResourceCalculator]": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioDenominatorIsZero[DefaultResourceCalculator]": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsInDiagnosticsCollector[DefaultResourceCalculator]": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithExtraResource[DominantResourceCalculator]": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.resource-types.test.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.test.minimum-allocation", + "yarn.resource-types.test.units", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types.test.tags", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb", + "yarn.resource-types.test.type" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithEmptyCluster[DominantResourceCalculator]": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompare[DominantResourceCalculator]": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.resource-types.test.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.test.minimum-allocation", + "yarn.resource-types.test.units", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types.test.tags", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb", + "yarn.resource-types.test.type" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithNoExtraResource[DominantResourceCalculator]": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testNormalize[DominantResourceCalculator]": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioNumeratorAndDenominatorIsZero[DominantResourceCalculator]": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithOnlyMandatory[DominantResourceCalculator]": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsIn[DominantResourceCalculator]": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioDenominatorIsZero[DominantResourceCalculator]": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsInDiagnosticsCollector[DominantResourceCalculator]": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateSimpleResourceWithSameIntValue": [ + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource2.units", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types.resource2.type", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResources#testAdd": [ + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource2.units", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types.resource2.type", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResources#testSubtract": [ + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource2.units", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types.resource2.type", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResources#testClone": [ + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource2.units", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types.resource2.type", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateResourceWithSameIntValue": [ + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource2.units", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types.resource2.type", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyRoundUp": [ + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource2.units", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types.resource2.type", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndRoundUpCustomResources": [ + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource2.units", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types.resource2.type", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateSimpleResourceWithSameLongValue": [ + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource2.units", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types.resource2.type", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResources#testCompareToWithNoneResource": [ + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource2.units", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types.resource2.type", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResources#testComponentwiseMax": [ + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource2.units", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types.resource2.type", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResources#testComponentwiseMin": [ + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource2.units", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types.resource2.type", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResources#testFitsIn": [ + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource2.units", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types.resource2.type", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateResourceWithSameLongValue": [ + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource2.units", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types.resource2.type", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiply": [ + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource2.units", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types.resource2.type", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndRoundDown": [ + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource2.units", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types.resource2.type", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResources#testCompareToWithUnboundedResource": [ + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource2.units", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types.resource2.type", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndAddTo": [ + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource2.units", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types.resource2.type", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetNodeResourcesRedefineGpuErrors": [ + "yarn.resource-types.yarn.io/gpu.maximum-allocation", + "yarn.resource-types.yarn.io/gpu.tags", + "yarn.resource-types.yarn.io/gpu.minimum-allocation", + "yarn.resource-types.yarn.io/gpu.type", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.yarn.io/gpu.units" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testInitializeResourcesMap": [ + "yarn.scheduler.maximum-allocation-mb", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource1.minimum-allocation", + "yarn.resource-types.resource2.type", + "yarn.resource-types.resource1.type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resourcemanager.configuration.provider-class", + "yarn.scheduler.minimum-allocation-mb", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.resource-types.resource1.maximum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.resource1.tags", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testResourceNameFormatValidation": [ + "yarn.scheduler.maximum-allocation-mb", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource1.minimum-allocation", + "yarn.resource-types.resource2.type", + "yarn.resource-types.resource1.type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resourcemanager.configuration.provider-class", + "yarn.scheduler.minimum-allocation-mb", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.resource-types.resource1.maximum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.resource1.tags", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypes": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformationWithDiffUnits": [ + "yarn.scheduler.maximum-allocation-mb", + "yarn.resource-types.yarn.io/gpu.tags", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource1.minimum-allocation", + "yarn.resource-types.resource2.type", + "yarn.resource-types.resource1.type", + "yarn.resource-types.resource1.units", + "yarn.resource-types.yarn.io/gpu.minimum-allocation", + "yarn.resource-types.yarn.io/gpu.type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resourcemanager.configuration.provider-class", + "yarn.scheduler.minimum-allocation-mb", + "yarn.resource-types.resource2.units", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.resource-types.yarn.io/gpu.units", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.resource-types.resource1.maximum-allocation", + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.resource-types.resource1.tags", + "yarn.resource-types.yarn.io/gpu.maximum-allocation", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testMultipleOpsForResourcesWithTags": [ + "yarn.scheduler.maximum-allocation-mb", + "yarn.resource-types.yarn.io/gpu.tags", + "yarn.resource-types.resource3.maximum-allocation", + "yarn.resource-types.resource1.minimum-allocation", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource2.type", + "yarn.resource-types.yarn.io/test-volume.maximum-allocation", + "yarn.resource-types.resource1.type", + "yarn.resource-types.resource3.units", + "yarn.resource-types.yarn.io/test-volume.minimum-allocation", + "yarn.resource-types.resource1.units", + "yarn.resource-types.yarn.io/gpu.minimum-allocation", + "yarn.resource-types.yarn.io/gpu.type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resourcemanager.configuration.provider-class", + "yarn.scheduler.minimum-allocation-mb", + "yarn.resource-types.resource3.tags", + "yarn.resource-types.resource2.units", + "yarn.resource-types.yarn.io/test-volume.type", + "yarn.resource-types.resource3.minimum-allocation", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.resource-types.resource3.type", + "yarn.resource-types.yarn.io/test-volume.units", + "yarn.resource-types.yarn.io/gpu.units", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.resource-types.resource1.maximum-allocation", + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.resource-types.resource1.tags", + "yarn.resource-types.yarn.io/gpu.maximum-allocation", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types", + "yarn.resource-types.yarn.io/test-volume.tags" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetRequestedResourcesFromConfig": [ + "yarn.scheduler.maximum-allocation-mb", + "yarn.resource-types.yarn.io/gpu.tags", + "yarn.resource-types.resource3.maximum-allocation", + "yarn.resource-types.resource1.minimum-allocation", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource2.type", + "yarn.resource-types.yarn.io/test-volume.maximum-allocation", + "yarn.resource-types.resource1.type", + "yarn.resource-types.resource3.units", + "yarn.resource-types.yarn.io/test-volume.minimum-allocation", + "yarn.resource-types.resource1.units", + "yarn.resource-types.yarn.io/gpu.minimum-allocation", + "yarn.resource-types.yarn.io/gpu.type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resourcemanager.configuration.provider-class", + "yarn.scheduler.minimum-allocation-mb", + "yarn.resource-types.resource3.tags", + "yarn.resource-types.resource2.units", + "yarn.resource-types.yarn.io/test-volume.type", + "yarn.resource-types.resource3.minimum-allocation", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.resource-types.resource3.type", + "yarn.resource-types.yarn.io/test-volume.units", + "yarn.resource-types.yarn.io/gpu.units", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.resource-types.resource1.maximum-allocation", + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.resource-types.resource1.tags", + "yarn.resource-types.yarn.io/gpu.maximum-allocation", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types", + "yarn.resource-types.yarn.io/test-volume.tags" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetNodeResourcesConfigErrors": [ + "yarn.scheduler.maximum-allocation-mb", + "yarn.resource-types.yarn.io/gpu.tags", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource1.minimum-allocation", + "yarn.resource-types.resource2.type", + "yarn.resource-types.resource1.type", + "yarn.resource-types.resource1.units", + "yarn.resource-types.yarn.io/gpu.minimum-allocation", + "yarn.resource-types.yarn.io/gpu.type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resourcemanager.configuration.provider-class", + "yarn.scheduler.minimum-allocation-mb", + "yarn.resource-types.resource2.units", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.resource-types.yarn.io/gpu.units", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.resource-types.resource1.maximum-allocation", + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.resource-types.resource1.tags", + "yarn.resource-types.yarn.io/gpu.maximum-allocation", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testResourceUnitParsing": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.ipc.record.factory.class", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetNodeResourcesRedefineFpgaErrors": [ + "yarn.resource-types.yarn.io/fpga.maximum-allocation", + "yarn.resource-types.yarn.io/fpga.tags", + "yarn.resource-types.yarn.io/fpga.type", + "yarn.resource-types.yarn.io/fpga.units", + "yarn.resource-types.yarn.io/fpga.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigErrors": [ + "yarn.scheduler.maximum-allocation-mb", + "yarn.resource-types.memory.units", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource1.minimum-allocation", + "yarn.resource-types.resource2.type", + "yarn.resource-types.resource1.type", + "yarn.resource-types.memory.minimum-allocation", + "yarn.resource-types.resource1.units", + "yarn.resource-types.memory.maximum-allocation", + "yarn.resource-types.memory-mb.units", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resourcemanager.configuration.provider-class", + "yarn.scheduler.minimum-allocation-mb", + "yarn.resource-types.resource2.units", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.resource-types.memory-mb.type", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.resource-types.resource1.maximum-allocation", + "yarn.resource-types.memory.tags", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.resource1.tags", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.tags", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types.memory.type", + "yarn.resource-types" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformation": [ + "yarn.scheduler.maximum-allocation-mb", + "yarn.resource-types.yarn.io/gpu.tags", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource1.minimum-allocation", + "yarn.resource-types.resource2.type", + "yarn.resource-types.resource1.type", + "yarn.resource-types.resource1.units", + "yarn.resource-types.yarn.io/gpu.minimum-allocation", + "yarn.resource-types.yarn.io/gpu.type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resourcemanager.configuration.provider-class", + "yarn.scheduler.minimum-allocation-mb", + "yarn.resource-types.resource2.units", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.resource-types.yarn.io/gpu.units", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.resource-types.resource1.maximum-allocation", + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.resource-types.resource1.tags", + "yarn.resource-types.yarn.io/gpu.maximum-allocation", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigs": [ + "yarn.scheduler.maximum-allocation-mb", + "yarn.resource-types.yarn.io/gpu.tags", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource1.minimum-allocation", + "yarn.resource-types.resource2.type", + "yarn.resource-types.resource1.type", + "yarn.resource-types.resource1.units", + "yarn.resource-types.yarn.io/gpu.minimum-allocation", + "yarn.resource-types.yarn.io/gpu.type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resourcemanager.configuration.provider-class", + "yarn.scheduler.minimum-allocation-mb", + "yarn.resource-types.resource2.units", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.resource-types.yarn.io/gpu.units", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.resource-types.resource1.maximum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.resource1.tags", + "yarn.resource-types.yarn.io/gpu.maximum-allocation", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types" + ], + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testInitializeResourcesMapErrors": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.resource-types.memory.maximum-allocation", + "yarn.resource-types.vcores.tags", + "yarn.resource-types.vcores.type", + "yarn.resource-types.memory-mb.tags", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types.memory-mb.type", + "yarn.resource-types.memory.type", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.resource-types.memory.minimum-allocation", + "yarn.resource-types.memory.tags" + ], + "org.apache.hadoop.yarn.util.TestFSDownload#testDirDownload": [ + "fs.iostatistics.thread.level.enabled", + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.option.openfile.buffer.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "fs.AbstractFileSystem.file.impl", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "fs.file.impl.disable.cache", + "hadoop.security.authentication", + "file.bytes-per-checksum", + "fs.permissions.umask-mode", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "file.stream-buffer-size", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "fs.defaultFS", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.util.TestFSDownload#testUniqueDestinationPath": [ + "fs.iostatistics.thread.level.enabled", + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.option.openfile.buffer.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "fs.AbstractFileSystem.file.impl", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "fs.file.impl.disable.cache", + "hadoop.security.authentication", + "file.bytes-per-checksum", + "fs.permissions.umask-mode", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "file.stream-buffer-size", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "fs.defaultFS", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.util.TestFSDownload#testResourceTimestampChangeDuringDownload": [ + "fs.iostatistics.thread.level.enabled", + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "fs.AbstractFileSystem.file.impl", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "fs.file.impl.disable.cache", + "hadoop.security.authentication", + "file.bytes-per-checksum", + "fs.permissions.umask-mode", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "fs.defaultFS", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZipWithTurkishLocale": [ + "fs.iostatistics.thread.level.enabled", + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.option.openfile.buffer.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "fs.AbstractFileSystem.file.impl", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "fs.file.impl.disable.cache", + "hadoop.security.authentication", + "file.bytes-per-checksum", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "file.stream-buffer-size", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "fs.defaultFS", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPatternJar": [ + "fs.iostatistics.thread.level.enabled", + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.option.openfile.buffer.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "fs.AbstractFileSystem.file.impl", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "fs.file.impl.disable.cache", + "hadoop.security.authentication", + "file.bytes-per-checksum", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "file.stream-buffer-size", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "fs.defaultFS", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchive": [ + "fs.iostatistics.thread.level.enabled", + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.option.openfile.buffer.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "fs.AbstractFileSystem.file.impl", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "fs.file.impl.disable.cache", + "hadoop.security.authentication", + "file.bytes-per-checksum", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "file.stream-buffer-size", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "fs.defaultFS", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveTgz": [ + "fs.iostatistics.thread.level.enabled", + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.option.openfile.buffer.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "fs.AbstractFileSystem.file.impl", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "fs.file.impl.disable.cache", + "hadoop.security.authentication", + "file.bytes-per-checksum", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "file.stream-buffer-size", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "fs.defaultFS", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZip": [ + "fs.iostatistics.thread.level.enabled", + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.option.openfile.buffer.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "fs.AbstractFileSystem.file.impl", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "fs.file.impl.disable.cache", + "hadoop.security.authentication", + "file.bytes-per-checksum", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "file.stream-buffer-size", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "fs.defaultFS", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadBadPublic": [ + "fs.iostatistics.thread.level.enabled", + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "fs.AbstractFileSystem.file.impl", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "fs.file.impl.disable.cache", + "hadoop.security.authentication", + "file.bytes-per-checksum", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "fs.defaultFS", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPublicWithStatCache": [ + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "fs.AbstractFileSystem.file.impl", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "fs.file.impl.disable.cache", + "hadoop.security.authentication", + "file.bytes-per-checksum", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "fs.defaultFS", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.util.TestFSDownload#testDownload": [ + "fs.iostatistics.thread.level.enabled", + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.option.openfile.buffer.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "fs.AbstractFileSystem.file.impl", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "fs.file.impl.disable.cache", + "hadoop.security.authentication", + "file.bytes-per-checksum", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "file.stream-buffer-size", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "fs.defaultFS", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.util.TestRackResolverScriptBasedMapping#testScriptName": [ + "net.topology.script.number.args" + ], + "org.apache.hadoop.yarn.util.TestConverterUtils#testNodeIdWithDefaultPort": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.util.TestConverterUtils#testInvalidAppattemptId": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.util.TestConverterUtils#testConvertUrlWithNoPort": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.util.TestConverterUtils#testContainerIdWithEpoch": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.util.TestConverterUtils#testContainerId": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.util.TestConverterUtils#testContainerIdNull": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.util.TestConverterUtils#testConvertUrlWithUserinfo": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.util.TestConverterUtils#testApplicationId": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.util.TestConverterUtils#testInvalidContainerId": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccessWithPartialACLS": [ + "yarn.ipc.record.factory.class", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccess": [ + "yarn.ipc.record.factory.class", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccessWithNullACLS": [ + "yarn.ipc.record.factory.class", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testDispatcherMetricsHistogram": [ + "yarn.dispatcher.print-thread-pool.maximum-pool-size", + "yarn.dispatcher.print-thread-pool.core-pool-size", + "yarn.dispatcher.print-events-info.threshold", + "yarn.dispatcher.print-thread-pool.keep-alive-time" + ], + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testDispatcherOnCloseIfQueueEmpty": [ + "yarn.dispatcher.print-thread-pool.core-pool-size", + "yarn.dispatcher.print-events-info.threshold", + "yarn.dispatcher.print-thread-pool.keep-alive-time", + "yarn.dispatcher.drain-events.timeout", + "yarn.dispatcher.print-thread-pool.maximum-pool-size" + ], + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testPrintDispatcherEventDetails": [ + "yarn.dispatcher.print-thread-pool.maximum-pool-size", + "yarn.dispatcher.print-thread-pool.core-pool-size", + "yarn.dispatcher.print-thread-pool.keep-alive-time" + ], + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testMetricsForDispatcher": [ + "yarn.dispatcher.print-thread-pool.maximum-pool-size", + "yarn.dispatcher.print-thread-pool.core-pool-size", + "yarn.dispatcher.print-events-info.threshold", + "yarn.dispatcher.print-thread-pool.keep-alive-time" + ], + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testPrintDispatcherEventDetailsAvoidDeadLoop": [ + "yarn.dispatcher.print-thread-pool.maximum-pool-size", + "yarn.dispatcher.print-thread-pool.core-pool-size", + "yarn.dispatcher.print-thread-pool.keep-alive-time" + ], + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testDispatchStopOnTimeout": [ + "yarn.dispatcher.print-thread-pool.core-pool-size", + "yarn.dispatcher.print-events-info.threshold", + "yarn.dispatcher.print-thread-pool.keep-alive-time", + "yarn.dispatcher.print-thread-pool.maximum-pool-size" + ], + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testDrainDispatcherDrainEventsOnStop": [ + "yarn.dispatcher.print-thread-pool.core-pool-size", + "yarn.dispatcher.print-events-info.threshold", + "yarn.dispatcher.print-thread-pool.keep-alive-time", + "yarn.dispatcher.print-thread-pool.maximum-pool-size" + ], + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetPassword": [ + "fs.iostatistics.thread.level.enabled", + "fs.automatic.close", + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "fs.file.impl.disable.cache", + "hadoop.token.files", + "hadoop.security.authentication", + "fs.permissions.umask-mode", + "file.bytes-per-checksum", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "file.stream-buffer-size", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.credstore.java-keystore-provider.password-file", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "fs.defaultFS", + "hadoop.security.credential.clear-text-fallback", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "invalid-alias", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetHtmlEscapedURIWithQueryString": [ + "fs.iostatistics.thread.level.enabled", + "fs.automatic.close", + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "fs.file.impl.disable.cache", + "hadoop.token.files", + "hadoop.security.authentication", + "fs.permissions.umask-mode", + "file.bytes-per-checksum", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "file.stream-buffer-size", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.credstore.java-keystore-provider.password-file", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "fs.defaultFS", + "hadoop.security.credential.clear-text-fallback", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "invalid-alias", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testAppendQueryParams": [ + "fs.iostatistics.thread.level.enabled", + "fs.automatic.close", + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "fs.file.impl.disable.cache", + "hadoop.token.files", + "hadoop.security.authentication", + "fs.permissions.umask-mode", + "file.bytes-per-checksum", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "file.stream-buffer-size", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.credstore.java-keystore-provider.password-file", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "fs.defaultFS", + "hadoop.security.credential.clear-text-fallback", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "invalid-alias", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testLoadSslConfiguration": [ + "fs.iostatistics.thread.level.enabled", + "fs.automatic.close", + "ssl.server.keystore.type", + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "ssl.server.truststore.type", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "fs.file.impl.disable.cache", + "hadoop.token.files", + "hadoop.security.authentication", + "fs.permissions.umask-mode", + "file.bytes-per-checksum", + "hadoop.security.groups.cache.background.reload", + "ssl.server.truststore.location", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "file.stream-buffer-size", + "hadoop.security.groups.negative-cache.secs", + "ssl.server.exclude.cipher.list", + "hadoop.security.credstore.java-keystore-provider.password-file", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "ssl.server.keystore.location", + "fs.defaultFS", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#TestRMWebAppURLRemoteAndLocal": [ + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.security.resolver.impl", + "hadoop.security.token.service.use_ip", + "yarn.http.policy" + ], + "org.apache.hadoop.yarn.webapp.util.TestWebServiceClient#testGetWebServiceClient": [ + "ssl.client.truststore.type", + "hadoop.ssl.keystores.factory.class", + "ssl.client.stores.reload.interval", + "ssl.server.exclude.cipher.list", + "hadoop.ssl.enabled.protocols", + "hadoop.ssl.hostname.verifier", + "ssl.client.truststore.location", + "hadoop.ssl.client.conf", + "ssl.client.keystore.type" + ], + "org.apache.hadoop.yarn.webapp.util.TestWebServiceClient#testCreateClient": [ + "hadoop.security.credential.provider.path", + "ssl.client.truststore.type", + "ssl.{0}.stores.reload.interval", + "ssl.server.keystore.type", + "hadoop.http.acceptor.count", + "hadoop.http.socket.backlog.size", + "ssl.client.keystore.type", + "hadoop.http.temp.dir", + "hadoop.http.max.response.header.size", + "hadoop.http.max.threads", + "hadoop.http.selector.count", + "hadoop.ssl.enabled.protocols", + "ssl.server.truststore.type", + "hadoop.http.filter.initializers", + "hadoop.http.sni.host.check.enabled", + "ssl.client.stores.reload.interval", + "ssl.server.exclude.cipher.list", + "hadoop.prometheus.endpoint.enabled", + "hadoop.jetty.logs.serve.aliases", + "hadoop.http.logs.enabled", + "hadoop.http.idle_timeout.ms", + "hadoop.http.metrics.enabled", + "hadoop.ssl.keystores.factory.class", + "hadoop.security.credential.clear-text-fallback", + "hadoop.http.max.request.header.size" + ], + "org.apache.hadoop.yarn.webapp.TestWebApp#testYARNWebAppContext": [ + "hadoop.http.authentication.kerberos.principal", + "hadoop.http.authentication.kerberos.keytab", + "hadoop.http.acceptor.count", + "hadoop.http.socket.backlog.size", + "hadoop.http.authentication.simple.anonymous.allowed", + "hadoop.http.temp.dir", + "hadoop.http.authentication.signature.secret.file", + "yarn.http.policy", + "hadoop.security.authorization", + "hadoop.http.max.response.header.size", + "hadoop.security.groups.cache.secs", + "hadoop.http.max.threads", + "hadoop.http.selector.count", + "hadoop.http.filter.initializers", + "hadoop.http.authentication.token.validity", + "hadoop.security.groups.cache.background.reload", + "hadoop.http.sni.host.check.enabled", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.negative-cache.secs", + "dfs.web.ugi", + "hadoop.prometheus.endpoint.enabled", + "hadoop.jetty.logs.serve.aliases", + "hadoop.security.resolver.impl", + "hadoop.http.logs.enabled", + "hadoop.http.idle_timeout.ms", + "hadoop.http.authentication.type", + "hadoop.http.metrics.enabled", + "hadoop.security.groups.cache.background.reload.threads", + "yarn.admin.acl", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.user.group.static.mapping.overrides", + "hadoop.http.max.request.header.size", + "hadoop.security.group.mapping", + "hadoop.http.staticuser.user", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.webapp.TestWebApp#testDefaultRoutes": [ + "hadoop.http.authentication.kerberos.principal", + "hadoop.http.authentication.kerberos.keytab", + "hadoop.http.acceptor.count", + "hadoop.http.socket.backlog.size", + "hadoop.http.authentication.simple.anonymous.allowed", + "hadoop.http.temp.dir", + "hadoop.http.authentication.signature.secret.file", + "yarn.http.policy", + "hadoop.http.max.response.header.size", + "hadoop.security.groups.cache.secs", + "hadoop.http.max.threads", + "hadoop.http.selector.count", + "hadoop.http.filter.initializers", + "hadoop.http.authentication.token.validity", + "hadoop.security.groups.cache.background.reload", + "hadoop.http.sni.host.check.enabled", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.negative-cache.secs", + "dfs.web.ugi", + "hadoop.prometheus.endpoint.enabled", + "hadoop.jetty.logs.serve.aliases", + "hadoop.security.resolver.impl", + "hadoop.http.logs.enabled", + "hadoop.http.idle_timeout.ms", + "hadoop.http.authentication.type", + "hadoop.http.metrics.enabled", + "hadoop.security.groups.cache.background.reload.threads", + "yarn.admin.acl", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.user.group.static.mapping.overrides", + "hadoop.http.max.request.header.size", + "hadoop.security.group.mapping", + "hadoop.http.staticuser.user", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithBindAddressNonZeroPort": [ + "hadoop.http.authentication.kerberos.principal", + "hadoop.http.authentication.kerberos.keytab", + "hadoop.http.acceptor.count", + "hadoop.http.socket.backlog.size", + "hadoop.http.authentication.simple.anonymous.allowed", + "hadoop.http.temp.dir", + "hadoop.http.authentication.signature.secret.file", + "yarn.http.policy", + "hadoop.http.max.response.header.size", + "hadoop.security.groups.cache.secs", + "hadoop.http.max.threads", + "hadoop.http.selector.count", + "hadoop.http.filter.initializers", + "hadoop.http.authentication.token.validity", + "hadoop.security.groups.cache.background.reload", + "hadoop.http.sni.host.check.enabled", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.negative-cache.secs", + "dfs.web.ugi", + "hadoop.prometheus.endpoint.enabled", + "hadoop.jetty.logs.serve.aliases", + "hadoop.security.resolver.impl", + "hadoop.http.logs.enabled", + "hadoop.http.idle_timeout.ms", + "hadoop.http.authentication.type", + "hadoop.http.metrics.enabled", + "hadoop.security.groups.cache.background.reload.threads", + "yarn.admin.acl", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.user.group.static.mapping.overrides", + "hadoop.http.max.request.header.size", + "hadoop.security.group.mapping", + "hadoop.http.staticuser.user", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithPort": [ + "hadoop.http.authentication.kerberos.principal", + "hadoop.http.authentication.kerberos.keytab", + "hadoop.http.acceptor.count", + "hadoop.http.socket.backlog.size", + "hadoop.http.authentication.simple.anonymous.allowed", + "hadoop.http.temp.dir", + "hadoop.http.authentication.signature.secret.file", + "yarn.http.policy", + "hadoop.http.max.response.header.size", + "hadoop.security.groups.cache.secs", + "hadoop.http.max.threads", + "hadoop.http.selector.count", + "hadoop.http.filter.initializers", + "hadoop.http.authentication.token.validity", + "hadoop.security.groups.cache.background.reload", + "hadoop.http.sni.host.check.enabled", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.negative-cache.secs", + "dfs.web.ugi", + "hadoop.prometheus.endpoint.enabled", + "hadoop.jetty.logs.serve.aliases", + "hadoop.security.resolver.impl", + "hadoop.http.logs.enabled", + "hadoop.http.idle_timeout.ms", + "hadoop.http.authentication.type", + "hadoop.http.metrics.enabled", + "hadoop.security.groups.cache.background.reload.threads", + "yarn.admin.acl", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.user.group.static.mapping.overrides", + "hadoop.http.max.request.header.size", + "hadoop.security.group.mapping", + "hadoop.http.staticuser.user", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.webapp.TestWebApp#testEncodedUrl": [ + "hadoop.http.authentication.kerberos.principal", + "hadoop.http.authentication.kerberos.keytab", + "hadoop.http.acceptor.count", + "hadoop.http.socket.backlog.size", + "hadoop.http.authentication.simple.anonymous.allowed", + "hadoop.http.temp.dir", + "hadoop.http.authentication.signature.secret.file", + "yarn.http.policy", + "hadoop.http.max.response.header.size", + "hadoop.security.groups.cache.secs", + "hadoop.http.max.threads", + "hadoop.http.selector.count", + "hadoop.http.filter.initializers", + "hadoop.http.authentication.token.validity", + "hadoop.security.groups.cache.background.reload", + "hadoop.http.sni.host.check.enabled", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.negative-cache.secs", + "dfs.web.ugi", + "hadoop.prometheus.endpoint.enabled", + "hadoop.jetty.logs.serve.aliases", + "hadoop.security.resolver.impl", + "hadoop.http.logs.enabled", + "hadoop.http.idle_timeout.ms", + "hadoop.http.authentication.type", + "hadoop.http.metrics.enabled", + "hadoop.security.groups.cache.background.reload.threads", + "yarn.admin.acl", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.user.group.static.mapping.overrides", + "hadoop.http.max.request.header.size", + "hadoop.security.group.mapping", + "hadoop.http.staticuser.user", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithNonZeroPort": [ + "hadoop.http.authentication.kerberos.principal", + "hadoop.http.authentication.kerberos.keytab", + "hadoop.http.acceptor.count", + "hadoop.http.socket.backlog.size", + "hadoop.http.authentication.simple.anonymous.allowed", + "hadoop.http.temp.dir", + "hadoop.http.authentication.signature.secret.file", + "yarn.http.policy", + "hadoop.http.max.response.header.size", + "hadoop.security.groups.cache.secs", + "hadoop.http.max.threads", + "hadoop.http.selector.count", + "hadoop.http.filter.initializers", + "hadoop.http.authentication.token.validity", + "hadoop.security.groups.cache.background.reload", + "hadoop.http.sni.host.check.enabled", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.negative-cache.secs", + "dfs.web.ugi", + "hadoop.prometheus.endpoint.enabled", + "hadoop.jetty.logs.serve.aliases", + "hadoop.security.resolver.impl", + "hadoop.http.logs.enabled", + "hadoop.http.idle_timeout.ms", + "hadoop.http.authentication.type", + "hadoop.http.metrics.enabled", + "hadoop.security.groups.cache.background.reload.threads", + "yarn.admin.acl", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.user.group.static.mapping.overrides", + "hadoop.http.max.request.header.size", + "hadoop.security.group.mapping", + "hadoop.http.staticuser.user", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.webapp.TestWebApp#testPortRanges": [ + "hadoop.http.authentication.kerberos.principal", + "hadoop.http.authentication.kerberos.keytab", + "hadoop.http.acceptor.count", + "hadoop.http.socket.backlog.size", + "hadoop.http.authentication.simple.anonymous.allowed", + "hadoop.http.temp.dir", + "hadoop.http.authentication.signature.secret.file", + "yarn.http.policy", + "hadoop.http.max.response.header.size", + "hadoop.security.groups.cache.secs", + "hadoop.http.max.threads", + "hadoop.http.selector.count", + "hadoop.http.filter.initializers", + "hadoop.http.authentication.token.validity", + "hadoop.security.groups.cache.background.reload", + "hadoop.http.sni.host.check.enabled", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.negative-cache.secs", + "dfs.web.ugi", + "hadoop.prometheus.endpoint.enabled", + "hadoop.jetty.logs.serve.aliases", + "hadoop.security.resolver.impl", + "hadoop.http.logs.enabled", + "hadoop.http.idle_timeout.ms", + "hadoop.http.authentication.type", + "hadoop.http.metrics.enabled", + "hadoop.security.groups.cache.background.reload.threads", + "yarn.admin.acl", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.user.group.static.mapping.overrides", + "hadoop.http.max.request.header.size", + "hadoop.security.group.mapping", + "hadoop.http.staticuser.user", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePathsNoName": [ + "hadoop.http.authentication.kerberos.principal", + "hadoop.http.authentication.kerberos.keytab", + "hadoop.http.acceptor.count", + "hadoop.http.socket.backlog.size", + "hadoop.http.authentication.simple.anonymous.allowed", + "hadoop.http.temp.dir", + "hadoop.http.authentication.signature.secret.file", + "yarn.http.policy", + "hadoop.http.max.response.header.size", + "hadoop.security.groups.cache.secs", + "hadoop.http.max.threads", + "hadoop.http.selector.count", + "hadoop.http.filter.initializers", + "hadoop.http.authentication.token.validity", + "hadoop.security.groups.cache.background.reload", + "hadoop.http.sni.host.check.enabled", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.negative-cache.secs", + "dfs.web.ugi", + "hadoop.prometheus.endpoint.enabled", + "hadoop.jetty.logs.serve.aliases", + "hadoop.security.resolver.impl", + "hadoop.http.logs.enabled", + "hadoop.http.idle_timeout.ms", + "hadoop.http.authentication.type", + "hadoop.http.metrics.enabled", + "hadoop.security.groups.cache.background.reload.threads", + "yarn.admin.acl", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.user.group.static.mapping.overrides", + "hadoop.http.max.request.header.size", + "hadoop.security.group.mapping", + "hadoop.http.staticuser.user", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreate": [ + "hadoop.http.authentication.kerberos.principal", + "hadoop.http.authentication.kerberos.keytab", + "hadoop.http.acceptor.count", + "hadoop.http.socket.backlog.size", + "hadoop.http.authentication.simple.anonymous.allowed", + "hadoop.http.temp.dir", + "hadoop.http.authentication.signature.secret.file", + "yarn.http.policy", + "hadoop.http.max.response.header.size", + "hadoop.security.groups.cache.secs", + "hadoop.http.max.threads", + "hadoop.http.selector.count", + "hadoop.http.filter.initializers", + "hadoop.http.authentication.token.validity", + "hadoop.security.groups.cache.background.reload", + "hadoop.http.sni.host.check.enabled", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.negative-cache.secs", + "dfs.web.ugi", + "hadoop.prometheus.endpoint.enabled", + "hadoop.jetty.logs.serve.aliases", + "hadoop.security.resolver.impl", + "hadoop.http.logs.enabled", + "hadoop.http.idle_timeout.ms", + "hadoop.http.authentication.type", + "hadoop.http.metrics.enabled", + "hadoop.security.groups.cache.background.reload.threads", + "yarn.admin.acl", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.user.group.static.mapping.overrides", + "hadoop.http.max.request.header.size", + "hadoop.security.group.mapping", + "hadoop.http.staticuser.user", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.webapp.TestWebApp#testCustomRoutes": [ + "hadoop.http.authentication.kerberos.principal", + "hadoop.http.authentication.kerberos.keytab", + "hadoop.http.acceptor.count", + "hadoop.http.socket.backlog.size", + "hadoop.http.authentication.simple.anonymous.allowed", + "hadoop.http.temp.dir", + "hadoop.http.authentication.signature.secret.file", + "yarn.http.policy", + "hadoop.http.max.response.header.size", + "hadoop.security.groups.cache.secs", + "hadoop.http.max.threads", + "hadoop.http.selector.count", + "hadoop.http.filter.initializers", + "hadoop.http.authentication.token.validity", + "hadoop.security.groups.cache.background.reload", + "hadoop.http.sni.host.check.enabled", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.negative-cache.secs", + "dfs.web.ugi", + "hadoop.prometheus.endpoint.enabled", + "hadoop.jetty.logs.serve.aliases", + "hadoop.security.resolver.impl", + "hadoop.http.logs.enabled", + "hadoop.http.idle_timeout.ms", + "hadoop.http.authentication.type", + "hadoop.http.metrics.enabled", + "hadoop.security.groups.cache.background.reload.threads", + "yarn.admin.acl", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.user.group.static.mapping.overrides", + "hadoop.http.max.request.header.size", + "hadoop.security.group.mapping", + "hadoop.http.staticuser.user", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePaths": [ + "hadoop.http.authentication.kerberos.principal", + "hadoop.http.authentication.kerberos.keytab", + "hadoop.http.acceptor.count", + "hadoop.http.socket.backlog.size", + "hadoop.http.authentication.simple.anonymous.allowed", + "hadoop.http.temp.dir", + "hadoop.http.authentication.signature.secret.file", + "yarn.http.policy", + "hadoop.http.max.response.header.size", + "hadoop.security.groups.cache.secs", + "hadoop.http.max.threads", + "hadoop.http.selector.count", + "hadoop.http.filter.initializers", + "hadoop.http.authentication.token.validity", + "hadoop.security.groups.cache.background.reload", + "hadoop.http.sni.host.check.enabled", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.negative-cache.secs", + "dfs.web.ugi", + "hadoop.prometheus.endpoint.enabled", + "hadoop.jetty.logs.serve.aliases", + "hadoop.security.resolver.impl", + "hadoop.http.logs.enabled", + "hadoop.http.idle_timeout.ms", + "hadoop.http.authentication.type", + "hadoop.http.metrics.enabled", + "hadoop.security.groups.cache.background.reload.threads", + "yarn.admin.acl", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.user.group.static.mapping.overrides", + "hadoop.http.max.request.header.size", + "hadoop.security.group.mapping", + "hadoop.http.staticuser.user", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.webapp.TestWebApp#testRobotsText": [ + "hadoop.http.authentication.kerberos.principal", + "hadoop.http.authentication.kerberos.keytab", + "hadoop.http.acceptor.count", + "hadoop.http.socket.backlog.size", + "hadoop.http.authentication.simple.anonymous.allowed", + "hadoop.http.temp.dir", + "hadoop.http.authentication.signature.secret.file", + "yarn.http.policy", + "hadoop.http.max.response.header.size", + "hadoop.security.groups.cache.secs", + "hadoop.http.max.threads", + "hadoop.http.selector.count", + "hadoop.http.filter.initializers", + "hadoop.http.authentication.token.validity", + "hadoop.security.groups.cache.background.reload", + "hadoop.http.sni.host.check.enabled", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.negative-cache.secs", + "dfs.web.ugi", + "hadoop.prometheus.endpoint.enabled", + "hadoop.jetty.logs.serve.aliases", + "hadoop.security.resolver.impl", + "hadoop.http.logs.enabled", + "hadoop.http.idle_timeout.ms", + "hadoop.http.authentication.type", + "hadoop.http.metrics.enabled", + "hadoop.security.groups.cache.background.reload.threads", + "yarn.admin.acl", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.user.group.static.mapping.overrides", + "hadoop.http.max.request.header.size", + "hadoop.security.group.mapping", + "hadoop.http.staticuser.user", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.TestYarnUncaughtExceptionHandler#testUncaughtExceptionHandlerWithError": [ + "hadoop.service.shutdown.timeout" + ], + "org.apache.hadoop.yarn.TestYarnUncaughtExceptionHandler#testUncaughtExceptionHandlerWithRuntimeException": [ + "hadoop.service.shutdown.timeout" + ], + "org.apache.hadoop.yarn.TestYarnUncaughtExceptionHandler#testUncaughtExceptionHandlerWithOutOfMemoryError": [ + "hadoop.service.shutdown.timeout" + ], + "org.apache.hadoop.yarn.TestRPCFactories#test": [ + "ipc.0.backoff.enable", + "ipc.client.tcpnodelay", + "ipc.server.metrics.update.runner.interval", + "ipc.client.connect.max.retries.on.sasl", + "ipc.server.reuseaddr", + "ipc.client.low-latency", + "ipc.0.callqueue.capacity.weights", + "ipc.client.idlethreshold", + "ipc.maximum.data.length", + "ipc.0.faircallqueue.priority-levels", + "ipc.client.connect.timeout", + "hadoop.rpc.socket.factory.class.default", + "ipc.server.tcpnodelay", + "ipc.0.callqueue.overflow.trigger.failover", + "hadoop.security.authorization", + "ipc.0.scheduler.impl", + "ipc.client.rpc-timeout.ms", + "hadoop.security.groups.cache.secs", + "ipc.client.fallback-to-simple-auth-allowed", + "hadoop.user.group.metrics.percentiles.intervals", + "ipc.server.max.response.size", + "ipc.0.scheduler.priority.levels", + "ipc.client.connection.idle-scan-interval.ms", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "ipc.scheduler.impl", + "ipc.client.connect.retry.interval", + "ipc.client.connect.max.retries.on.timeouts", + "hadoop.security.authentication", + "ipc.ping.interval", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "ipc.server.read.connection-queue.size", + "hadoop.security.groups.cache.warn.after.ms", + "ipc.client.bind.wildcard.addr", + "ipc.0.callqueue.impl", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.token.service.use_ip", + "ipc.client.async.calls.max", + "hadoop.security.resolver.impl", + "ipc.backoff.enable", + "ipc.server.max.connections", + "ipc.client.connect.max.retries", + "ipc.client.ping", + "ipc.server.log.slow.rpc", + "ipc.server.read.threadpool.size", + "ipc.server.handler.queue.size", + "ipc.callqueue.impl", + "ipc.client.kill.max", + "hadoop.security.groups.cache.background.reload.threads", + "ipc.server.listen.queue.size", + "hadoop.security.auth_to_local", + "ipc.client.connection.maxidletime", + "rpc.metrics.timeunit", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "rpc.metrics.percentiles.intervals", + "ipc.server.purge.interval" + ], + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout": [ + "ipc.server.metrics.update.runner.interval", + "ipc.0.callqueue.overflow.trigger.failover", + "hadoop.security.authorization", + "ipc.server.max.response.size", + "hadoop.kerberos.min.seconds.before.relogin", + "ipc.client.connect.max.retries.on.timeouts", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "yarn.resourcemanager.configuration.provider-class", + "hadoop.security.authentication", + "yarn.scheduler.minimum-allocation-mb", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "ipc.backoff.enable", + "ipc.server.max.connections", + "ipc.client.ping", + "ipc.server.log.slow.rpc", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.resource-types", + "hadoop.security.token.service.use_ip", + "ipc.server.purge.interval", + "ipc.client.low-latency", + "hadoop.rpc.socket.factory.class.default", + "ipc.server.tcpnodelay", + "ipc.client.fallback-to-simple-auth-allowed", + "hadoop.user.group.metrics.percentiles.intervals", + "ipc.ping.interval", + "ipc.0.callqueue.impl", + "hadoop.security.groups.cache.background.reload.threads", + "ipc.client.connection.maxidletime", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "yarn.ipc.record.factory.class", + "ipc.0.callqueue.capacity.weights", + "ipc.0.faircallqueue.priority-levels", + "ipc.client.connect.timeout", + "ipc.0.scheduler.impl", + "ipc.client.connect.retry.interval", + "ipc.scheduler.impl", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.ipc.server.factory.class", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "ipc.client.async.calls.max", + "ipc.client.connect.max.retries", + "yarn.resource-types.vcores.maximum-allocation", + "ipc.server.handler.queue.size", + "ipc.callqueue.impl", + "ipc.client.kill.max", + "yarn.scheduler.maximum-allocation-vcores", + "hadoop.security.auth_to_local", + "yarn.resource-types.memory-mb.minimum-allocation", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "rpc.metrics.percentiles.intervals", + "ipc.0.backoff.enable", + "ipc.client.tcpnodelay", + "yarn.scheduler.maximum-allocation-mb", + "ipc.client.connect.max.retries.on.sasl", + "ipc.server.reuseaddr", + "ipc.client.idlethreshold", + "ipc.maximum.data.length", + "hadoop.security.groups.cache.secs", + "ipc.0.scheduler.priority.levels", + "ipc.client.connection.idle-scan-interval.ms", + "yarn.scheduler.minimum-allocation-vcores", + "ipc.client.bind.wildcard.addr", + "ipc.server.read.connection-queue.size", + "ipc.maximum.response.length", + "yarn.ipc.client.factory.class", + "ipc.server.read.threadpool.size", + "ipc.server.listen.queue.size", + "rpc.metrics.timeunit", + "hadoop.security.group.mapping" + ], + "org.apache.hadoop.yarn.nodelabels.TestNodeLabelUtil#testIsNodeAttributesEquals": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.nodelabels.TestNodeLabelUtil#testAttributeValueAddition": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddInvalidlabel": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.ipc.record.factory.class", + "yarn.node-labels.configuration-type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddlabelWithExclusivity": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.ipc.record.factory.class", + "yarn.node-labels.configuration-type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testReplaceLabelsOnHostsShouldUpdateNodesBelongTo": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.ipc.record.factory.class", + "yarn.node-labels.configuration-type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsToNodes": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.ipc.record.factory.class", + "yarn.node-labels.configuration-type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testGetNodeLabelsInfo": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.ipc.record.factory.class", + "yarn.node-labels.configuration-type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testTrimLabelsWhenAddRemoveNodeLabels": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.ipc.record.factory.class", + "yarn.node-labels.configuration-type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddRemovelabel": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.ipc.record.factory.class", + "yarn.node-labels.configuration-type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddlabelWithCase": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.ipc.record.factory.class", + "yarn.node-labels.configuration-type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testTrimLabelsWhenModifyLabelsOnNodes": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.ipc.record.factory.class", + "yarn.node-labels.configuration-type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsToNodesForSelectedLabels": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.ipc.record.factory.class", + "yarn.node-labels.configuration-type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testRemoveNodeLabelsInfo": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.ipc.record.factory.class", + "yarn.node-labels.configuration-type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testRemovelabelWithNodes": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.ipc.record.factory.class", + "yarn.node-labels.configuration-type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testNoMoreThanOneLabelExistedInOneHost": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.ipc.record.factory.class", + "yarn.node-labels.configuration-type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsInfoToNodes": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.ipc.record.factory.class", + "yarn.node-labels.configuration-type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddReplaceRemoveLabelsOnNodes": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.ipc.record.factory.class", + "yarn.node-labels.configuration-type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testNodeLabelsDisabled": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.ipc.record.factory.class", + "yarn.node-labels.configuration-type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testReplaceLabelsOnNodeInDistributedMode": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.ipc.record.factory.class", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[0]": [ + "fs.iostatistics.thread.level.enabled", + "yarn.scheduler.maximum-allocation-mb", + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "yarn.resourcemanager.configuration.provider-class", + "hadoop.token.files", + "hadoop.security.authentication", + "yarn.scheduler.minimum-allocation-mb", + "fs.file.impl.disable.cache", + "file.bytes-per-checksum", + "fs.permissions.umask-mode", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "fs.defaultFS", + "yarn.scheduler.maximum-allocation-vcores", + "hadoop.security.groups.cache.background.reload.threads", + "yarn.fs-store.file.replication", + "hadoop.security.auth_to_local", + "yarn.resource-types.memory-mb.minimum-allocation", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "yarn.resource-types", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[0]": [ + "fs.iostatistics.thread.level.enabled", + "yarn.scheduler.maximum-allocation-mb", + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "yarn.node-labels.configuration-type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "yarn.resourcemanager.configuration.provider-class", + "hadoop.token.files", + "hadoop.security.authentication", + "yarn.scheduler.minimum-allocation-mb", + "fs.file.impl.disable.cache", + "file.bytes-per-checksum", + "fs.permissions.umask-mode", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "fs.defaultFS", + "yarn.scheduler.maximum-allocation-vcores", + "hadoop.security.groups.cache.background.reload.threads", + "yarn.fs-store.file.replication", + "hadoop.security.auth_to_local", + "yarn.resource-types.memory-mb.minimum-allocation", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "yarn.resource-types", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[0]": [ + "fs.iostatistics.thread.level.enabled", + "yarn.scheduler.maximum-allocation-mb", + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "yarn.node-labels.configuration-type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "yarn.resourcemanager.configuration.provider-class", + "hadoop.token.files", + "hadoop.security.authentication", + "yarn.scheduler.minimum-allocation-mb", + "fs.file.impl.disable.cache", + "file.bytes-per-checksum", + "fs.permissions.umask-mode", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "fs.defaultFS", + "yarn.scheduler.maximum-allocation-vcores", + "hadoop.security.groups.cache.background.reload.threads", + "yarn.fs-store.file.replication", + "hadoop.security.auth_to_local", + "yarn.resource-types.memory-mb.minimum-allocation", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "yarn.resource-types", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[0]": [ + "fs.iostatistics.thread.level.enabled", + "yarn.scheduler.maximum-allocation-mb", + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "yarn.node-labels.configuration-type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "yarn.resourcemanager.configuration.provider-class", + "hadoop.token.files", + "hadoop.security.authentication", + "yarn.scheduler.minimum-allocation-mb", + "fs.file.impl.disable.cache", + "file.bytes-per-checksum", + "fs.permissions.umask-mode", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "fs.defaultFS", + "yarn.scheduler.maximum-allocation-vcores", + "hadoop.security.groups.cache.background.reload.threads", + "yarn.fs-store.file.replication", + "hadoop.security.auth_to_local", + "yarn.resource-types.memory-mb.minimum-allocation", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "yarn.resource-types", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[0]": [ + "fs.iostatistics.thread.level.enabled", + "yarn.scheduler.maximum-allocation-mb", + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "yarn.node-labels.configuration-type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "yarn.resourcemanager.configuration.provider-class", + "hadoop.token.files", + "hadoop.security.authentication", + "yarn.scheduler.minimum-allocation-mb", + "fs.file.impl.disable.cache", + "file.bytes-per-checksum", + "fs.permissions.umask-mode", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "fs.defaultFS", + "yarn.scheduler.maximum-allocation-vcores", + "hadoop.security.groups.cache.background.reload.threads", + "yarn.fs-store.file.replication", + "hadoop.security.auth_to_local", + "yarn.resource-types.memory-mb.minimum-allocation", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "yarn.resource-types", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[1]": [ + "fs.iostatistics.thread.level.enabled", + "yarn.scheduler.maximum-allocation-mb", + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "yarn.resourcemanager.configuration.provider-class", + "hadoop.token.files", + "hadoop.security.authentication", + "yarn.scheduler.minimum-allocation-mb", + "fs.file.impl.disable.cache", + "file.bytes-per-checksum", + "fs.permissions.umask-mode", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "fs.defaultFS", + "yarn.scheduler.maximum-allocation-vcores", + "hadoop.security.groups.cache.background.reload.threads", + "yarn.fs-store.file.replication", + "hadoop.security.auth_to_local", + "yarn.resource-types.memory-mb.minimum-allocation", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "yarn.resource-types", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[1]": [ + "yarn.scheduler.maximum-allocation-mb", + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "yarn.node-labels.configuration-type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "yarn.resourcemanager.configuration.provider-class", + "hadoop.token.files", + "hadoop.security.authentication", + "yarn.scheduler.minimum-allocation-mb", + "fs.file.impl.disable.cache", + "file.bytes-per-checksum", + "fs.permissions.umask-mode", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "fs.defaultFS", + "yarn.scheduler.maximum-allocation-vcores", + "hadoop.security.groups.cache.background.reload.threads", + "yarn.fs-store.file.replication", + "hadoop.security.auth_to_local", + "yarn.resource-types.memory-mb.minimum-allocation", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "yarn.resource-types", + "hadoop.security.group.mapping", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[1]": [ + "fs.iostatistics.thread.level.enabled", + "yarn.scheduler.maximum-allocation-mb", + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "yarn.node-labels.configuration-type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "yarn.resourcemanager.configuration.provider-class", + "hadoop.token.files", + "hadoop.security.authentication", + "yarn.scheduler.minimum-allocation-mb", + "fs.file.impl.disable.cache", + "file.bytes-per-checksum", + "fs.permissions.umask-mode", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "fs.defaultFS", + "yarn.scheduler.maximum-allocation-vcores", + "hadoop.security.groups.cache.background.reload.threads", + "yarn.fs-store.file.replication", + "hadoop.security.auth_to_local", + "yarn.resource-types.memory-mb.minimum-allocation", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "yarn.resource-types", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[1]": [ + "fs.iostatistics.thread.level.enabled", + "yarn.scheduler.maximum-allocation-mb", + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "yarn.node-labels.configuration-type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "yarn.resourcemanager.configuration.provider-class", + "hadoop.token.files", + "hadoop.security.authentication", + "yarn.scheduler.minimum-allocation-mb", + "fs.file.impl.disable.cache", + "file.bytes-per-checksum", + "fs.permissions.umask-mode", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "fs.defaultFS", + "yarn.scheduler.maximum-allocation-vcores", + "hadoop.security.groups.cache.background.reload.threads", + "yarn.fs-store.file.replication", + "hadoop.security.auth_to_local", + "yarn.resource-types.memory-mb.minimum-allocation", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "yarn.resource-types", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[1]": [ + "fs.iostatistics.thread.level.enabled", + "yarn.scheduler.maximum-allocation-mb", + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "yarn.node-labels.configuration-type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "yarn.resourcemanager.configuration.provider-class", + "hadoop.token.files", + "hadoop.security.authentication", + "yarn.scheduler.minimum-allocation-mb", + "fs.file.impl.disable.cache", + "file.bytes-per-checksum", + "fs.permissions.umask-mode", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "fs.defaultFS", + "yarn.scheduler.maximum-allocation-vcores", + "hadoop.security.groups.cache.background.reload.threads", + "yarn.fs-store.file.replication", + "hadoop.security.auth_to_local", + "yarn.resource-types.memory-mb.minimum-allocation", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "yarn.resource-types", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAccessDenied": [ + "fs.iostatistics.thread.level.enabled", + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.option.openfile.buffer.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "fs.AbstractFileSystem.file.impl", + "hadoop.service.shutdown.timeout", + "yarn.nodemanager.log-aggregation.compression-type", + "hadoop.kerberos.min.seconds.before.relogin", + "yarn.nodemanager.remote-app-log-dir-include-older", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "fs.file.impl.disable.cache", + "hadoop.security.authentication", + "yarn.log-aggregation.TFile.remote-app-log-dir-suffix", + "fs.permissions.umask-mode", + "file.bytes-per-checksum", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "tfile.fs.output.buffer.size", + "hadoop.security.groups.negative-cache.secs", + "yarn.nodemanager.remote-app-log-dir-suffix", + "yarn.log-aggregation.file-controller.TFile.class", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "tfile.io.chunk.size", + "tfile.fs.input.buffer.size", + "yarn.nodemanager.log-aggregation.num-log-files-per-app", + "fs.defaultFS", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "yarn.log-aggregation.file-formats", + "yarn.log-aggregation.TFile.remote-app-log-dir", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBlockContainsPortNumForUnavailableAppLog": [ + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "yarn.http.policy", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "fs.AbstractFileSystem.file.impl", + "hadoop.kerberos.min.seconds.before.relogin", + "yarn.nodemanager.remote-app-log-dir-include-older", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "yarn.log-aggregation.TFile.remote-app-log-dir-suffix", + "hadoop.security.groups.cache.background.reload", + "yarn.nodemanager.hostname", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "yarn.nodemanager.remote-app-log-dir-suffix", + "hadoop.security.token.service.use_ip", + "yarn.log-aggregation.file-controller.TFile.class", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "yarn.nodemanager.log-aggregation.num-log-files-per-app", + "fs.defaultFS", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "yarn.log-aggregation.file-formats", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "yarn.log-aggregation.TFile.remote-app-log-dir", + "yarn.nodemanager.webapp.address" + ], + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBadLogs": [ + "fs.iostatistics.thread.level.enabled", + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "yarn.http.policy", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "fs.AbstractFileSystem.file.impl", + "hadoop.service.shutdown.timeout", + "yarn.nodemanager.log-aggregation.compression-type", + "hadoop.kerberos.min.seconds.before.relogin", + "yarn.nodemanager.remote-app-log-dir-include-older", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "fs.file.impl.disable.cache", + "fs.file.impl", + "hadoop.security.authentication", + "yarn.log-aggregation.TFile.remote-app-log-dir-suffix", + "fs.permissions.umask-mode", + "file.bytes-per-checksum", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "yarn.nodemanager.hostname", + "tfile.fs.output.buffer.size", + "hadoop.security.groups.negative-cache.secs", + "yarn.nodemanager.remote-app-log-dir-suffix", + "hadoop.security.token.service.use_ip", + "yarn.log-aggregation.file-controller.TFile.class", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "tfile.io.chunk.size", + "yarn.nodemanager.log-aggregation.num-log-files-per-app", + "fs.defaultFS", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "yarn.log-aggregation.file-formats", + "yarn.log-aggregation.TFile.remote-app-log-dir", + "yarn.nodemanager.webapp.address" + ], + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlockHar": [ + "fs.iostatistics.thread.level.enabled", + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.option.openfile.buffer.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "fs.AbstractFileSystem.file.impl", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "yarn.nodemanager.remote-app-log-dir-include-older", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "fs.file.impl.disable.cache", + "hadoop.security.authentication", + "file.bytes-per-checksum", + "hadoop.security.groups.cache.background.reload", + "fs.AbstractFileSystem.har.impl", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "file.stream-buffer-size", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "tfile.fs.input.buffer.size", + "fs.defaultFS", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "fs.har.metadatacache.entries", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlock": [ + "fs.iostatistics.thread.level.enabled", + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.option.openfile.buffer.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "fs.AbstractFileSystem.file.impl", + "hadoop.service.shutdown.timeout", + "yarn.nodemanager.log-aggregation.compression-type", + "hadoop.kerberos.min.seconds.before.relogin", + "yarn.nodemanager.remote-app-log-dir-include-older", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "fs.file.impl.disable.cache", + "hadoop.security.authentication", + "yarn.log-aggregation.TFile.remote-app-log-dir-suffix", + "fs.permissions.umask-mode", + "file.bytes-per-checksum", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "tfile.fs.output.buffer.size", + "hadoop.security.groups.negative-cache.secs", + "yarn.nodemanager.remote-app-log-dir-suffix", + "yarn.log-aggregation.file-controller.TFile.class", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "tfile.io.chunk.size", + "tfile.fs.input.buffer.size", + "yarn.nodemanager.log-aggregation.num-log-files-per-app", + "fs.defaultFS", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "yarn.log-aggregation.file-formats", + "yarn.log-aggregation.TFile.remote-app-log-dir", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testNoLogs": [ + "fs.iostatistics.thread.level.enabled", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.option.openfile.buffer.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "fs.AbstractFileSystem.file.impl", + "yarn.nodemanager.log-aggregation.compression-type", + "hadoop.kerberos.min.seconds.before.relogin", + "yarn.nodemanager.remote-app-log-dir-include-older", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "yarn.log-aggregation.TFile.remote-app-log-dir-suffix", + "fs.permissions.umask-mode", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "tfile.fs.output.buffer.size", + "hadoop.security.groups.negative-cache.secs", + "yarn.nodemanager.remote-app-log-dir-suffix", + "yarn.log-aggregation.file-controller.TFile.class", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "tfile.io.chunk.size", + "tfile.fs.input.buffer.size", + "yarn.nodemanager.log-aggregation.num-log-files-per-app", + "fs.defaultFS", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "yarn.log-aggregation.file-formats", + "yarn.log-aggregation.TFile.remote-app-log-dir", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRefreshLogRetentionSettings": [ + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "fs.mockfs.impl.disable.cache", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "yarn.log-aggregation.TFile.remote-app-log-dir-suffix", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "yarn.nodemanager.log-aggregation.num-log-files-per-app", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "yarn.log-aggregation.TFile.remote-app-log-dir", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testCheckInterval": [ + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "fs.mockfs.impl.disable.cache", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "yarn.log-aggregation.TFile.remote-app-log-dir-suffix", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "yarn.nodemanager.log-aggregation.num-log-files-per-app", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "yarn.log-aggregation.TFile.remote-app-log-dir", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletionTwoControllers": [ + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "indexedFile.fs.op.num-retries", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.service.shutdown.timeout", + "yarn.nodemanager.log-aggregation.compression-type", + "hadoop.kerberos.min.seconds.before.relogin", + "fs.mockfs.impl.disable.cache", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "indexedFile.log.roll-over.max-file-size-gb", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "yarn.nodemanager.log-aggregation.num-log-files-per-app", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "indexedFile.fs.retry-interval-ms", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletion": [ + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "fs.mockfs.impl.disable.cache", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "yarn.log-aggregation.TFile.remote-app-log-dir-suffix", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "yarn.nodemanager.log-aggregation.num-log-files-per-app", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "yarn.log-aggregation.TFile.remote-app-log-dir", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRobustLogDeletion": [ + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "fs.mockfs.impl.disable.cache", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.token.files", + "hadoop.security.authentication", + "yarn.log-aggregation.TFile.remote-app-log-dir-suffix", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "yarn.nodemanager.log-aggregation.num-log-files-per-app", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "yarn.log-aggregation.TFile.remote-app-log-dir", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.logaggregation.TestLogAggregationMetaCollector#testAllNull": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.logaggregation.TestLogAggregationMetaCollector#testMultipleFileRegex": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.logaggregation.TestLogAggregationMetaCollector#testMultipleNodeRegexRequest": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.logaggregation.TestLogAggregationMetaCollector#testInvalidQueryStrings": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.logaggregation.TestLogAggregationMetaCollector#testContainerIdExactMatch": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.logaggregation.TestLogAggregationMetaCollector#testSingleNodeRequest": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.logaggregation.TestLogAggregationMetaCollector#testAllSet": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.logaggregation.TestLogAggregationMetaCollector#testMultipleFileBetweenSize": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testDefaultLogAggregationFileControllerFactory": [ + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "fs.AbstractFileSystem.file.impl", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "yarn.nodemanager.remote-app-log-dir-include-older", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "fs.file.impl.disable.cache", + "hadoop.token.files", + "hadoop.security.authentication", + "yarn.log-aggregation.TFile.remote-app-log-dir-suffix", + "fs.permissions.umask-mode", + "file.bytes-per-checksum", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "yarn.log-aggregation.file-controller.TFile.class", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "yarn.nodemanager.log-aggregation.num-log-files-per-app", + "fs.defaultFS", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "yarn.log-aggregation.file-formats", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "yarn.log-aggregation.TFile.remote-app-log-dir", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testClassConfUsed": [ + "yarn.nodemanager.log-aggregation.num-log-files-per-app", + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testLogAggregationFileControllerFactoryClassNotSet": [ + "yarn.log-aggregation.TestLogAggregationFileController.remote-app-log-dir", + "yarn.ipc.record.factory.class", + "yarn.log-aggregation.file-controller.TestLogAggregationFileController.class", + "yarn.log-aggregation.TestLogAggregationFileController.remote-app-log-dir-suffix" + ], + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testLogAggregationFileControllerFactory": [ + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "indexedFile.fs.op.num-retries", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "fs.AbstractFileSystem.file.impl", + "hadoop.service.shutdown.timeout", + "yarn.nodemanager.log-aggregation.compression-type", + "hadoop.kerberos.min.seconds.before.relogin", + "yarn.nodemanager.remote-app-log-dir-include-older", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "fs.file.impl.disable.cache", + "hadoop.token.files", + "hadoop.security.authentication", + "file.bytes-per-checksum", + "fs.permissions.umask-mode", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "indexedFile.log.roll-over.max-file-size-gb", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.token.service.use_ip", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "yarn.nodemanager.log-aggregation.num-log-files-per-app", + "fs.defaultFS", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "indexedFile.fs.retry-interval-ms", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testNodemanagerConfigurationIsUsed": [ + "yarn.nodemanager.log-aggregation.num-log-files-per-app", + "yarn.ipc.record.factory.class", + "yarn.log-aggregation.file-controller.TFile.class", + "yarn.log-aggregation.TFile.remote-app-log-dir", + "yarn.log-aggregation.TFile.remote-app-log-dir-suffix" + ], + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testDefaultConfUsed": [ + "yarn.nodemanager.log-aggregation.num-log-files-per-app", + "yarn.ipc.record.factory.class", + "yarn.log-aggregation.file-controller.TFile.class", + "yarn.log-aggregation.TFile.remote-app-log-dir", + "yarn.log-aggregation.TFile.remote-app-log-dir-suffix" + ], + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomUser": [ + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.security.authentication", + "yarn.log-aggregation.TFile.remote-app-log-dir-suffix", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "yarn.nodemanager.remote-app-log-dir-suffix", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "yarn.nodemanager.log-aggregation.num-log-files-per-app", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "yarn.log-aggregation.TFile.remote-app-log-dir", + "yarn.nodemanager.remote-app-log-dir", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomGroup": [ + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.security.authentication", + "yarn.log-aggregation.TFile.remote-app-log-dir-suffix", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "yarn.nodemanager.remote-app-log-dir-suffix", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "yarn.nodemanager.log-aggregation.num-log-files-per-app", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "yarn.log-aggregation.TFile.remote-app-log-dir", + "yarn.nodemanager.remote-app-log-dir", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationDefault": [ + "yarn.nodemanager.remote-app-log-dir.groupname", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "hadoop.security.authentication", + "yarn.log-aggregation.TFile.remote-app-log-dir-suffix", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "hadoop.security.groups.negative-cache.secs", + "yarn.nodemanager.remote-app-log-dir-suffix", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "yarn.nodemanager.log-aggregation.num-log-files-per-app", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "yarn.log-aggregation.TFile.remote-app-log-dir", + "yarn.nodemanager.remote-app-log-dir", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testFetchApplictionLogsHar": [ + "fs.iostatistics.thread.level.enabled", + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.option.openfile.buffer.size", + "fs.client.resolve.remote.symlinks", + "indexedFile.fs.op.num-retries", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "fs.AbstractFileSystem.file.impl", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "yarn.nodemanager.remote-app-log-dir-include-older", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "fs.file.impl.disable.cache", + "hadoop.token.files", + "hadoop.security.authentication", + "file.bytes-per-checksum", + "fs.permissions.umask-mode", + "hadoop.security.groups.cache.background.reload", + "fs.AbstractFileSystem.har.impl", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "indexedFile.log.roll-over.max-file-size-gb", + "file.stream-buffer-size", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "fs.defaultFS", + "yarn.nodemanager.log-aggregation.num-log-files-per-app", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "fs.har.metadatacache.entries", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "indexedFile.fs.retry-interval-ms", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetLogMetaFilesOfNode": [ + "fs.iostatistics.thread.level.enabled", + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "indexedFile.fs.op.num-retries", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "fs.AbstractFileSystem.file.impl", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "fs.file.impl.disable.cache", + "hadoop.token.files", + "hadoop.security.authentication", + "file.bytes-per-checksum", + "fs.permissions.umask-mode", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "indexedFile.log.roll-over.max-file-size-gb", + "file.stream-buffer-size", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "fs.defaultFS", + "yarn.nodemanager.log-aggregation.num-log-files-per-app", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "indexedFile.fs.retry-interval-ms", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetRollOverLogMaxSize": [ + "ssl.client.truststore.type", + "yarn.nodemanager.remote-app-log-dir", + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "hadoop.ssl.client.conf", + "ssl.client.keystore.type", + "fs.client.resolve.remote.symlinks", + "indexedFile.fs.op.num-retries", + "hadoop.security.groups.cache.secs", + "ipc.client.fallback-to-simple-auth-allowed", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.service.shutdown.timeout", + "hadoop.ssl.enabled.protocols", + "hadoop.kerberos.min.seconds.before.relogin", + "ssl.client.truststore.location", + "hadoop.ssl.hostname.verifier", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "fs.file.impl.disable.cache", + "hadoop.token.files", + "hadoop.security.authentication", + "file.bytes-per-checksum", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "indexedFile.log.roll-over.max-file-size-gb", + "hadoop.security.groups.negative-cache.secs", + "ssl.server.exclude.cipher.list", + "yarn.nodemanager.remote-app-log-dir-suffix", + "ssl.client.stores.reload.interval", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "fs.defaultFS", + "yarn.nodemanager.log-aggregation.num-log-files-per-app", + "hadoop.ssl.keystores.factory.class", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "indexedFile.fs.retry-interval-ms", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testLogAggregationIndexFileFormat": [ + "fs.iostatistics.thread.level.enabled", + "fs.automatic.close", + "yarn.ipc.record.factory.class", + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "indexedFile.fs.op.num-retries", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "fs.AbstractFileSystem.file.impl", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "yarn.nodemanager.remote-app-log-dir-include-older", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "fs.file.impl.disable.cache", + "hadoop.token.files", + "hadoop.security.authentication", + "file.bytes-per-checksum", + "fs.permissions.umask-mode", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "indexedFile.log.roll-over.max-file-size-gb", + "file.stream-buffer-size", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "fs.defaultFS", + "yarn.nodemanager.log-aggregation.num-log-files-per-app", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "indexedFile.fs.retry-interval-ms", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.conf.TestYarnConfiguration#testUpdateConnectAddr": [ + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "yarn.nodemanager.localizer.address.rm1", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.security.resolver.impl", + "hadoop.security.token.service.use_ip", + "yarn.http.policy" + ], + "org.apache.hadoop.yarn.conf.TestYarnConfiguration#testGetSocketAddressForNMWithHA": [ + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.security.resolver.impl", + "hadoop.security.token.service.use_ip", + "yarn.http.policy" + ], + "org.apache.hadoop.yarn.conf.TestYarnConfiguration#testRMWebUrlSpecified": [ + "yarn.resourcemanager.ha.enabled", + "yarn.http.policy" + ], + "org.apache.hadoop.yarn.conf.TestYarnConfiguration#testDefaultRMWebUrl": [ + "yarn.resourcemanager.hostname", + "yarn.resourcemanager.webapp.address", + "yarn.http.policy" + ], + "org.apache.hadoop.yarn.conf.TestYarnConfiguration#testGetSocketAddr": [ + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.dns.log-slow-lookups.enabled", + "yarn.resourcemanager.ha.enabled", + "yarn.resourcemanager.hostname", + "hadoop.security.resolver.impl", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.conf.TestHAUtil#testVerifyAndSetConfiguration": [ + "yarn.http.policy", + "yarn.resourcemanager.hostname.rm1" + ], + "org.apache.hadoop.yarn.conf.TestHAUtil#testGetRMServiceId": [ + "yarn.http.policy" + ], + "org.apache.hadoop.yarn.conf.TestHAUtil#testGetRMId": [ + "yarn.http.policy" + ], + "org.apache.hadoop.yarn.conf.TestHAUtil#testGetConfKeyForRMInstance": [ + "yarn.http.policy" + ], + "org.apache.hadoop.yarn.api.TestApplicationId#testApplicationId": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.api.TestNodeId#testNodeId": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.api.TestGetApplicationsRequest#testGetApplicationsRequest": [ + "yarn.ipc.record.factory.class", + "yarn.resourcemanager.application-tag-based-placement.force-lowercase" + ], + "org.apache.hadoop.yarn.api.protocolrecords.impl.pb.TestGetApplicationsRequestPBImpl#testAppTagsLowerCaseConversionDefault[0]": [ + "yarn.resourcemanager.application-tag-based-placement.force-lowercase" + ], + "org.apache.hadoop.yarn.api.protocolrecords.impl.pb.TestGetApplicationsRequestPBImpl#testAppTagsLowerCaseConversionDisabled[0]": [ + "yarn.resourcemanager.application-tag-based-placement.force-lowercase" + ], + "org.apache.hadoop.yarn.api.protocolrecords.impl.pb.TestGetApplicationsRequestPBImpl#testAppTagsLowerCaseConversionEnabled[0]": [ + "yarn.resourcemanager.application-tag-based-placement.force-lowercase" + ], + "org.apache.hadoop.yarn.api.protocolrecords.impl.pb.TestGetApplicationsRequestPBImpl#testAppTagsLowerCaseConversionDefault[1]": [ + "yarn.resourcemanager.application-tag-based-placement.force-lowercase" + ], + "org.apache.hadoop.yarn.api.protocolrecords.impl.pb.TestGetApplicationsRequestPBImpl#testAppTagsLowerCaseConversionDisabled[1]": [ + "yarn.resourcemanager.application-tag-based-placement.force-lowercase" + ], + "org.apache.hadoop.yarn.api.protocolrecords.impl.pb.TestGetApplicationsRequestPBImpl#testAppTagsLowerCaseConversionEnabled[1]": [ + "yarn.resourcemanager.application-tag-based-placement.force-lowercase" + ], + "org.apache.hadoop.yarn.api.TestTimelineEntityGroupId#testTimelineEntityGroupId": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.api.TestContainerId#testContainerId": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.api.TestApplicationAttemptId#testApplicationAttemptId": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBInitFromOldPB": [ + "yarn.scheduler.maximum-allocation-mb", + "yarn.resource-types.yarn.io/gpu.tags", + "yarn.resource-types.resource3.maximum-allocation", + "yarn.resource-types.resource1.minimum-allocation", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource2.type", + "yarn.resource-types.yarn.io/test-volume.maximum-allocation", + "yarn.resource-types.resource1.type", + "yarn.resource-types.resource3.units", + "yarn.resource-types.yarn.io/test-volume.minimum-allocation", + "yarn.resource-types.resource1.units", + "yarn.resource-types.yarn.io/gpu.minimum-allocation", + "yarn.resource-types.yarn.io/gpu.type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resourcemanager.configuration.provider-class", + "yarn.scheduler.minimum-allocation-mb", + "yarn.resource-types.resource3.tags", + "yarn.resource-types.resource2.units", + "yarn.resource-types.yarn.io/test-volume.type", + "yarn.resource-types.resource3.minimum-allocation", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.resource-types.resource3.type", + "yarn.resource-types.yarn.io/test-volume.units", + "yarn.resource-types.yarn.io/gpu.units", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.resource-types.resource1.maximum-allocation", + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.resource-types.resource1.tags", + "yarn.resource-types.yarn.io/gpu.maximum-allocation", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types", + "yarn.resource-types.yarn.io/test-volume.tags" + ], + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceAttributes": [ + "yarn.scheduler.maximum-allocation-mb", + "yarn.resource-types.yarn.io/gpu.tags", + "yarn.resource-types.resource3.maximum-allocation", + "yarn.resource-types.resource1.minimum-allocation", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource2.type", + "yarn.resource-types.yarn.io/test-volume.maximum-allocation", + "yarn.resource-types.resource1.type", + "yarn.resource-types.resource3.units", + "yarn.resource-types.yarn.io/test-volume.minimum-allocation", + "yarn.resource-types.resource1.units", + "yarn.resource-types.yarn.io/gpu.minimum-allocation", + "yarn.resource-types.yarn.io/gpu.type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resourcemanager.configuration.provider-class", + "yarn.scheduler.minimum-allocation-mb", + "yarn.resource-types.resource3.tags", + "yarn.resource-types.resource2.units", + "yarn.resource-types.yarn.io/test-volume.type", + "yarn.resource-types.resource3.minimum-allocation", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.resource-types.resource3.type", + "yarn.resource-types.yarn.io/test-volume.units", + "yarn.resource-types.yarn.io/gpu.units", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.resource-types.resource1.maximum-allocation", + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.resource-types.resource1.tags", + "yarn.resource-types.yarn.io/gpu.maximum-allocation", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types", + "yarn.resource-types.yarn.io/test-volume.tags" + ], + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testParsingResourceTags": [ + "yarn.scheduler.maximum-allocation-mb", + "yarn.resource-types.yarn.io/gpu.tags", + "yarn.resource-types.resource3.maximum-allocation", + "yarn.resource-types.resource1.minimum-allocation", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource2.type", + "yarn.resource-types.yarn.io/test-volume.maximum-allocation", + "yarn.resource-types.resource1.type", + "yarn.resource-types.resource3.units", + "yarn.resource-types.yarn.io/test-volume.minimum-allocation", + "yarn.resource-types.resource1.units", + "yarn.resource-types.yarn.io/gpu.minimum-allocation", + "yarn.resource-types.yarn.io/gpu.type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resourcemanager.configuration.provider-class", + "yarn.scheduler.minimum-allocation-mb", + "yarn.resource-types.resource3.tags", + "yarn.resource-types.resource2.units", + "yarn.resource-types.yarn.io/test-volume.type", + "yarn.resource-types.resource3.minimum-allocation", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.resource-types.resource3.type", + "yarn.resource-types.yarn.io/test-volume.units", + "yarn.resource-types.yarn.io/gpu.units", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.resource-types.resource1.maximum-allocation", + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.resource-types.resource1.tags", + "yarn.resource-types.yarn.io/gpu.maximum-allocation", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types", + "yarn.resource-types.yarn.io/test-volume.tags" + ], + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBWithExtraResources": [ + "yarn.scheduler.maximum-allocation-mb", + "yarn.resource-types.yarn.io/gpu.tags", + "yarn.resource-types.resource3.maximum-allocation", + "yarn.resource-types.resource1.minimum-allocation", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource2.type", + "yarn.resource-types.yarn.io/test-volume.maximum-allocation", + "yarn.resource-types.resource1.type", + "yarn.resource-types.resource3.units", + "yarn.resource-types.yarn.io/test-volume.minimum-allocation", + "yarn.resource-types.resource1.units", + "yarn.resource-types.yarn.io/gpu.minimum-allocation", + "yarn.resource-types.yarn.io/gpu.type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resourcemanager.configuration.provider-class", + "yarn.scheduler.minimum-allocation-mb", + "yarn.resource-types.resource3.tags", + "yarn.resource-types.resource2.units", + "yarn.resource-types.yarn.io/test-volume.type", + "yarn.resource-types.resource3.minimum-allocation", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.resource-types.resource3.type", + "yarn.resource-types.yarn.io/test-volume.units", + "yarn.resource-types.yarn.io/gpu.units", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.resource-types.resource1.maximum-allocation", + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.resource-types.resource1.tags", + "yarn.resource-types.yarn.io/gpu.maximum-allocation", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types", + "yarn.resource-types.yarn.io/test-volume.tags" + ], + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testEmptyResourcePBInit": [ + "yarn.scheduler.maximum-allocation-mb", + "yarn.resource-types.yarn.io/gpu.tags", + "yarn.resource-types.resource3.maximum-allocation", + "yarn.resource-types.resource1.minimum-allocation", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource2.type", + "yarn.resource-types.yarn.io/test-volume.maximum-allocation", + "yarn.resource-types.resource1.type", + "yarn.resource-types.resource3.units", + "yarn.resource-types.yarn.io/test-volume.minimum-allocation", + "yarn.resource-types.resource1.units", + "yarn.resource-types.yarn.io/gpu.minimum-allocation", + "yarn.resource-types.yarn.io/gpu.type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resourcemanager.configuration.provider-class", + "yarn.scheduler.minimum-allocation-mb", + "yarn.resource-types.resource3.tags", + "yarn.resource-types.resource2.units", + "yarn.resource-types.yarn.io/test-volume.type", + "yarn.resource-types.resource3.minimum-allocation", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.resource-types.resource3.type", + "yarn.resource-types.yarn.io/test-volume.units", + "yarn.resource-types.yarn.io/gpu.units", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.resource-types.resource1.maximum-allocation", + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.resource-types.resource1.tags", + "yarn.resource-types.yarn.io/gpu.maximum-allocation", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types", + "yarn.resource-types.yarn.io/test-volume.tags" + ], + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceTags": [ + "yarn.scheduler.maximum-allocation-mb", + "yarn.resource-types.yarn.io/gpu.tags", + "yarn.resource-types.resource3.maximum-allocation", + "yarn.resource-types.resource1.minimum-allocation", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource2.type", + "yarn.resource-types.yarn.io/test-volume.maximum-allocation", + "yarn.resource-types.resource1.type", + "yarn.resource-types.resource3.units", + "yarn.resource-types.yarn.io/test-volume.minimum-allocation", + "yarn.resource-types.resource1.units", + "yarn.resource-types.yarn.io/gpu.minimum-allocation", + "yarn.resource-types.yarn.io/gpu.type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resourcemanager.configuration.provider-class", + "yarn.scheduler.minimum-allocation-mb", + "yarn.resource-types.resource3.tags", + "yarn.resource-types.resource2.units", + "yarn.resource-types.yarn.io/test-volume.type", + "yarn.resource-types.resource3.minimum-allocation", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.resource-types.resource3.type", + "yarn.resource-types.yarn.io/test-volume.units", + "yarn.resource-types.yarn.io/gpu.units", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.resource-types.resource1.maximum-allocation", + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.resource-types.resource1.tags", + "yarn.resource-types.yarn.io/gpu.maximum-allocation", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types", + "yarn.resource-types.yarn.io/test-volume.tags" + ], + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetVirtualCores": [ + "yarn.scheduler.maximum-allocation-mb", + "yarn.resource-types.yarn.io/gpu.tags", + "yarn.resource-types.resource3.maximum-allocation", + "yarn.resource-types.resource1.minimum-allocation", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource2.type", + "yarn.resource-types.yarn.io/test-volume.maximum-allocation", + "yarn.resource-types.resource1.type", + "yarn.resource-types.resource3.units", + "yarn.resource-types.yarn.io/test-volume.minimum-allocation", + "yarn.resource-types.resource1.units", + "yarn.resource-types.yarn.io/gpu.minimum-allocation", + "yarn.resource-types.yarn.io/gpu.type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resourcemanager.configuration.provider-class", + "yarn.scheduler.minimum-allocation-mb", + "yarn.resource-types.resource3.tags", + "yarn.resource-types.resource2.units", + "yarn.resource-types.yarn.io/test-volume.type", + "yarn.resource-types.resource3.minimum-allocation", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.resource-types.resource3.type", + "yarn.resource-types.yarn.io/test-volume.units", + "yarn.resource-types.yarn.io/gpu.units", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.resource-types.resource1.maximum-allocation", + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.resource-types.resource1.tags", + "yarn.resource-types.yarn.io/gpu.maximum-allocation", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types", + "yarn.resource-types.yarn.io/test-volume.tags" + ], + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetMemory": [ + "yarn.scheduler.maximum-allocation-mb", + "yarn.resource-types.yarn.io/gpu.tags", + "yarn.resource-types.resource3.maximum-allocation", + "yarn.resource-types.resource1.minimum-allocation", + "yarn.resource-types.resource2.tags", + "yarn.resource-types.resource2.type", + "yarn.resource-types.yarn.io/test-volume.maximum-allocation", + "yarn.resource-types.resource1.type", + "yarn.resource-types.resource3.units", + "yarn.resource-types.yarn.io/test-volume.minimum-allocation", + "yarn.resource-types.resource1.units", + "yarn.resource-types.yarn.io/gpu.minimum-allocation", + "yarn.resource-types.yarn.io/gpu.type", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resourcemanager.configuration.provider-class", + "yarn.scheduler.minimum-allocation-mb", + "yarn.resource-types.resource3.tags", + "yarn.resource-types.resource2.units", + "yarn.resource-types.yarn.io/test-volume.type", + "yarn.resource-types.resource3.minimum-allocation", + "yarn.resource-types.resource2.maximum-allocation", + "yarn.resource-types.resource3.type", + "yarn.resource-types.yarn.io/test-volume.units", + "yarn.resource-types.yarn.io/gpu.units", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.resource-types.resource1.maximum-allocation", + "yarn.resource-types.resource2.minimum-allocation", + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.resource-types.resource1.tags", + "yarn.resource-types.yarn.io/gpu.maximum-allocation", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.resource-types", + "yarn.resource-types.yarn.io/test-volume.tags" + ], + "org.apache.hadoop.yarn.api.records.TestResourceUtilization#testResourceUtilizationWithCustomResource": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.api.records.TestResourceUtilization#testResourceUtilization": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.api.records.timelineservice.TestTimelineServiceRecords#testFirstClassCitizenEntities": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.api.records.impl.pb.TestApplicationClientProtocolRecords#testCLCPBImplNullResourceType": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.api.records.impl.pb.TestApplicationClientProtocolRecords#testCLCPBImplNullResourceVisibility": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.api.records.impl.pb.TestApplicationClientProtocolRecords#testCLCPBImplNullResourceURL": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.api.records.impl.pb.TestApplicationClientProtocolRecords#testCLCPBImplNullEnv": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.api.records.impl.pb.TestApplicationSubmissionContextPBImpl#testAppTagsLowerCaseConversionDefault[0]": [ + "yarn.resourcemanager.application-tag-based-placement.force-lowercase" + ], + "org.apache.hadoop.yarn.api.records.impl.pb.TestApplicationSubmissionContextPBImpl#testAppTagsLowerCaseConversionDisabled[0]": [ + "yarn.resourcemanager.application-tag-based-placement.force-lowercase" + ], + "org.apache.hadoop.yarn.api.records.impl.pb.TestApplicationSubmissionContextPBImpl#testAppTagsLowerCaseConversionEnabled[0]": [ + "yarn.resourcemanager.application-tag-based-placement.force-lowercase" + ], + "org.apache.hadoop.yarn.api.records.impl.pb.TestApplicationSubmissionContextPBImpl#testAppTagsLowerCaseConversionDefault[1]": [ + "yarn.resourcemanager.application-tag-based-placement.force-lowercase" + ], + "org.apache.hadoop.yarn.api.records.impl.pb.TestApplicationSubmissionContextPBImpl#testAppTagsLowerCaseConversionDisabled[1]": [ + "yarn.resourcemanager.application-tag-based-placement.force-lowercase" + ], + "org.apache.hadoop.yarn.api.records.impl.pb.TestApplicationSubmissionContextPBImpl#testAppTagsLowerCaseConversionEnabled[1]": [ + "yarn.resourcemanager.application-tag-based-placement.force-lowercase" + ], + "org.apache.hadoop.yarn.api.TestApplicatonReport#testApplicationReport": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.api.TestResourceRequest#testEqualsOnExecutionTypeRequest": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.ipc.record.factory.class", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testAMRMTokenIdentifier": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testNMTokenIdentifierOldFormat": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testAMContainerTokenIdentifier": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.ipc.record.factory.class", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testContainerTokenIdentifierOldFormat": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.ipc.record.factory.class", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testContainerTokenIdentifier": [ + "yarn.resource-types.memory-mb.maximum-allocation", + "yarn.scheduler.maximum-allocation-mb", + "yarn.scheduler.maximum-allocation-vcores", + "yarn.resource-types.memory-mb.minimum-allocation", + "yarn.ipc.record.factory.class", + "yarn.scheduler.minimum-allocation-vcores", + "yarn.resource-types.vcores.minimum-allocation", + "yarn.resource-types", + "yarn.resourcemanager.configuration.provider-class", + "yarn.resource-types.vcores.maximum-allocation", + "yarn.scheduler.minimum-allocation-mb" + ], + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testNMTokenIdentifier": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testAMRMTokenIdentifierOldFormat": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testClientToAMTokenIdentifier": [ + "yarn.ipc.record.factory.class" + ], + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testParseTimelineDelegationTokenIdentifierRenewer": [ + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.security.resolver.impl", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.authentication", + "hadoop.security.token.service.use_ip" + ], + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testReadCredentialsFromConfigFile": [ + "fs.iostatistics.thread.level.enabled", + "fs.automatic.close", + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "fs.file.impl.disable.cache", + "hadoop.token.files", + "hadoop.security.authentication", + "file.bytes-per-checksum", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "file.stream-buffer-size", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "fs.defaultFS", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testGetCredentialsFromTokensByteBuffer": [ + "fs.iostatistics.thread.level.enabled", + "fs.automatic.close", + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "fs.file.impl.disable.cache", + "hadoop.token.files", + "hadoop.security.authentication", + "file.bytes-per-checksum", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "file.stream-buffer-size", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "fs.defaultFS", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ], + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testWriteDockerCredentialsToPath": [ + "fs.iostatistics.thread.level.enabled", + "fs.automatic.close", + "fs.local.block.size", + "fs.client.resolve.remote.symlinks", + "hadoop.security.groups.cache.secs", + "hadoop.user.group.metrics.percentiles.intervals", + "hadoop.service.shutdown.timeout", + "hadoop.kerberos.min.seconds.before.relogin", + "hadoop.kerberos.keytab.login.autorenewal.enabled", + "fs.file.impl.disable.cache", + "hadoop.token.files", + "hadoop.security.authentication", + "file.bytes-per-checksum", + "hadoop.security.groups.cache.background.reload", + "hadoop.security.dns.log-slow-lookups.threshold.ms", + "hadoop.security.groups.cache.warn.after.ms", + "file.stream-buffer-size", + "hadoop.security.groups.negative-cache.secs", + "hadoop.security.resolver.impl", + "fs.creation.parallel.count", + "fs.defaultFS", + "hadoop.security.groups.cache.background.reload.threads", + "hadoop.security.auth_to_local", + "hadoop.security.dns.log-slow-lookups.enabled", + "hadoop.tokens", + "hadoop.user.group.static.mapping.overrides", + "hadoop.security.auth_to_local.mechanism", + "hadoop.security.group.mapping", + "io.file.buffer.size", + "hadoop.security.token.service.use_ip", + "fs.file.impl" + ] +} \ No newline at end of file From 4bc66558eca92133758ff7a53bc48b800fa1aa27 Mon Sep 17 00:00:00 2001 From: yuanfei2 Date: Wed, 30 Nov 2022 22:32:42 -0600 Subject: [PATCH 09/15] run_ctest update --- core/run_ctest/inject.py | 2 +- core/run_ctest/program_input.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/core/run_ctest/inject.py b/core/run_ctest/inject.py index 75f5b443..e7325f86 100644 --- a/core/run_ctest/inject.py +++ b/core/run_ctest/inject.py @@ -21,7 +21,7 @@ def inject_config(param_value_pairs): for p, v in param_value_pairs.items(): file.write(p + "=" + v + "\n") file.close() - elif project in [HCOMMON, HDFS, HBASE]: + elif project in [HCOMMON, HDFS, HBASE, HYARNCOMMON]: conf = ET.Element("configuration") for p, v in param_value_pairs.items(): prop = ET.SubElement(conf, "property") diff --git a/core/run_ctest/program_input.py b/core/run_ctest/program_input.py index 2b971f1c..7527450a 100644 --- a/core/run_ctest/program_input.py +++ b/core/run_ctest/program_input.py @@ -4,11 +4,11 @@ # run mode "run_mode": "run_ctest", # string # name of the project, i.e. hadoop-common, hadoop-hdfs - "project": "hadoop-common", # string + "project": "hadoop-yarn-common", # string # path to param -> tests json mapping - "mapping_path": "../../data/ctest_mapping/opensource-hadoop-common.json", # string + "mapping_path": "../../data/ctest_mapping/opensource-hadoop-yarn-common.json", # string # input directory hosting configuration files to be test, target-project-format specific - "conf_file_dir": "sample-hadoop-common", # string + "conf_file_dir": "../default_configs/hadoop-yarn-common-default.tsv", # string # display the terminal output live, without saving any results "display_mode": False, # bool # whether to use mvn test or mvn surefire:test From 6ecaaaae3057b063b59cce478facaa4113c6947e Mon Sep 17 00:00:00 2001 From: yuanfei2 Date: Wed, 30 Nov 2022 22:44:02 -0600 Subject: [PATCH 10/15] update value_generation.py --- core/generate_value/value_generation.py | 5 +++++ core/run_ctest/inject.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/core/generate_value/value_generation.py b/core/generate_value/value_generation.py index 82a5bde8..8e19c077 100644 --- a/core/generate_value/value_generation.py +++ b/core/generate_value/value_generation.py @@ -25,6 +25,9 @@ def read_tsv(module): if module == "zookeeper-server": assert len(params) == 32 return 32 + elif module == "hadoop-yarn-common": + assert len(params) == 574 + return 574 else: assert len(params) == 90 return 90 @@ -105,6 +108,8 @@ def print_params(module): f = open(module + output, "w") if module == "zookeeper-server": assert len(params) == 32 + elif module == "hadoop-yarn-common": + assert len(params) == 574 else: assert len(params) >= 90 for param in params: diff --git a/core/run_ctest/inject.py b/core/run_ctest/inject.py index e7325f86..da1e3caf 100644 --- a/core/run_ctest/inject.py +++ b/core/run_ctest/inject.py @@ -46,7 +46,7 @@ def clean_conf_file(project): file = open(inject_path, "w") file.write("\n") file.close() - elif project in [HCOMMON, HDFS, HBASE]: + elif project in [HCOMMON, HDFS, HBASE, HYARNCOMMON]: conf = ET.Element("configuration") for inject_path in INJECTION_PATH[project]: file = open(inject_path, "wb") From 260806fe2ccb2e26067b1764b91f40822c80a1c4 Mon Sep 17 00:00:00 2001 From: yuanfei2 Date: Sat, 3 Dec 2022 20:25:25 -0600 Subject: [PATCH 11/15] added generated mapping --- core/ctest_const.py | 4 +- .../ctests-hadoop-yarn-common.json | 720 + core/generate_ctest/inject.py | 2 +- core/generate_ctest/main.py | 2 +- core/generate_ctest/program_input.py | 2 +- .../opensource-hadoop-yarn-common.json | 10906 ++++++++-------- 6 files changed, 6155 insertions(+), 5481 deletions(-) create mode 100644 core/generate_ctest/ctest_mapping/ctests-hadoop-yarn-common.json diff --git a/core/ctest_const.py b/core/ctest_const.py index 81e04527..961a2ecf 100644 --- a/core/ctest_const.py +++ b/core/ctest_const.py @@ -12,9 +12,9 @@ HBASE = "hbase-server" ZOOKEEPER = "zookeeper-server" ALLUXIO = "alluxio-core" -HYARNCOMMON = "hadoop-yarn" +HYARNCOMMON = "hadoop-yarn-common" -CTEST_HADOOP_DIR = os.path.join(APP_DIR, "ctest-hadoop") +CTEST_HADOOP_DIR = os.path.join(APP_DIR, "../../../hadoop") CTEST_HBASE_DIR = os.path.join(APP_DIR, "ctest-hbase") CTEST_ZK_DIR = os.path.join(APP_DIR, "ctest-zookeeper") CTEST_ALLUXIO_DIR = os.path.join(APP_DIR, "ctest-alluxio") diff --git a/core/generate_ctest/ctest_mapping/ctests-hadoop-yarn-common.json b/core/generate_ctest/ctest_mapping/ctests-hadoop-yarn-common.json new file mode 100644 index 00000000..aea1cf0a --- /dev/null +++ b/core/generate_ctest/ctest_mapping/ctests-hadoop-yarn-common.json @@ -0,0 +1,720 @@ +{ + "yarn.timeline-service.entity-group-fs-store.with-user-dir": [ + + ], + "yarn.resourcemanager.address": [ + + ], + "yarn.dispatcher.print-thread-pool.core-pool-size": [ + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testDispatcherMetricsHistogram", + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testMetricsForDispatcher", + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testDrainDispatcherDrainEventsOnStop", + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testPrintDispatcherEventDetailsAvoidDeadLoop", + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testDispatcherOnCloseIfQueueEmpty", + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testDispatchStopOnTimeout", + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testPrintDispatcherEventDetails" + ], + "yarn.resourcemanager.ha.enabled": [ + "org.apache.hadoop.yarn.conf.TestYarnConfiguration#testRMWebUrlSpecified", + "org.apache.hadoop.yarn.conf.TestYarnConfiguration#testGetSocketAddr" + ], + "yarn.timeline-service.client.max-retries": [ + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntity", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenDisabledOnSimpleAuth", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testASyncCallMerge", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostIncompleteEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainer", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainersForAppAttempt", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSyncCall", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetApplication", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSetTimelineToken", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testAfterStop", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainers", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesWithError", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineConnectorDestroy", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testConfigurableNumberOfMerges", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionCalls", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir" + ], + "yarn.timeline-service.client.fd-retain-secs": [ + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir" + ], + "yarn.timeline-service.hostname": [ + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetApplication", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenOperationsRetry", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainer", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntity", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineConnectorDestroy", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostIncompleteEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineClientCleanup", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainers", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesWithError", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenDisabledOnSimpleAuth", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainersForAppAttempt", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testCheckRetryCount" + ], + "yarn.dispatcher.print-thread-pool.maximum-pool-size": [ + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testDispatcherOnCloseIfQueueEmpty", + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testMetricsForDispatcher", + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testPrintDispatcherEventDetailsAvoidDeadLoop", + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testDispatchStopOnTimeout", + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testPrintDispatcherEventDetails", + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testDispatcherMetricsHistogram", + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testDrainDispatcherDrainEventsOnStop" + ], + "yarn.nodemanager.remote-app-log-dir": [ + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationDefault", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomUser", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetRollOverLogMaxSize", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomGroup" + ], + "yarn.scheduler.minimum-allocation-vcores": [ + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateResourceWithSameLongValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testCompareToWithUnboundedResource", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithExtraResource[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndAddTo", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetMemory", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypes", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyRoundUp", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithEmptyCluster[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithExtraResource[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[1]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsInDiagnosticsCollector[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddInvalidlabel", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiply", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testAMContainerTokenIdentifier", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testReplaceLabelsOnNodeInDistributedMode", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddlabelWithExclusivity", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBWithExtraResources", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceTags", + "org.apache.hadoop.yarn.api.TestResourceRequest#testEqualsOnExecutionTypeRequest", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testNoMoreThanOneLabelExistedInOneHost", + "org.apache.hadoop.yarn.util.resource.TestResources#testComponentwiseMax", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[1]", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformationWithDiffUnits", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testParsingResourceTags", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndRoundDown", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateSimpleResourceWithSameLongValue", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testInitializeResourcesMap", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testResourceNameFormatValidation", + "org.apache.hadoop.yarn.util.resource.TestResources#testComponentwiseMin", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testReplaceLabelsOnHostsShouldUpdateNodesBelongTo", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testRemovelabelWithNodes", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[0]", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndRoundUpCustomResources", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompare[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testRemoveNodeLabelsInfo", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testContainerTokenIdentifierOldFormat", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsToNodesForSelectedLabels", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithOnlyMandatory[DominantResourceCalculator]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[1]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioNumeratorAndDenominatorIsZero[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigs", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithNoExtraResource[DominantResourceCalculator]", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceAttributes", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetRequestedResourcesFromConfig", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithEmptyCluster[DominantResourceCalculator]", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testTrimLabelsWhenModifyLabelsOnNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testGetNodeLabelsInfo", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testMultipleOpsForResourcesWithTags", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsIn[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioDenominatorIsZero[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateResourceWithSameIntValue", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testEmptyResourcePBInit", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithNoExtraResource[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testContainerTokenIdentifier", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testNodeLabelsDisabled", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testNormalize[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testResourceUnitParsing", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsInDiagnosticsCollector[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResources#testClone", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddReplaceRemoveLabelsOnNodes", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateSimpleResourceWithSameIntValue", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioNumeratorAndDenominatorIsZero[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResources#testCompareToWithNoneResource", + "org.apache.hadoop.yarn.util.resource.TestResources#testAdd", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[0]", + "org.apache.hadoop.yarn.util.resource.TestResources#testFitsIn", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[0]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompare[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResources#testSubtract", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testTrimLabelsWhenAddRemoveNodeLabels", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsToNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddRemovelabel", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsInfoToNodes", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioDenominatorIsZero[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithOnlyMandatory[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[0]", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformation", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddlabelWithCase", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBInitFromOldPB", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testNormalize[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[1]", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetNodeResourcesConfigErrors", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetVirtualCores", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsIn[DominantResourceCalculator]" + ], + "yarn.nodemanager.webapp.address": [ + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBlockContainsPortNumForUnavailableAppLog" + ], + "yarn.admin.acl": [ + "org.apache.hadoop.yarn.webapp.TestWebApp#testCustomRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testDefaultRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreate", + "org.apache.hadoop.yarn.webapp.TestWebApp#testPortRanges", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePaths", + "org.apache.hadoop.yarn.webapp.TestWebApp#testEncodedUrl", + "org.apache.hadoop.yarn.webapp.TestWebApp#testYARNWebAppContext", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithBindAddressNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testRobotsText", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePathsNoName" + ], + "yarn.timeline-service.webapp.https.address": [ + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineClientCleanup" + ], + "yarn.scheduler.minimum-allocation-mb": [ + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigs", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndAddTo", + "org.apache.hadoop.yarn.util.resource.TestResources#testCompareToWithUnboundedResource", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[1]", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testContainerTokenIdentifier", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetVirtualCores", + "org.apache.hadoop.yarn.util.resource.TestResources#testFitsIn", + "org.apache.hadoop.yarn.api.TestResourceRequest#testEqualsOnExecutionTypeRequest", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithOnlyMandatory[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndRoundUpCustomResources", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddlabelWithExclusivity", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyRoundUp", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithNoExtraResource[DominantResourceCalculator]", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testGetNodeLabelsInfo", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithOnlyMandatory[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[0]", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testInitializeResourcesMap", + "org.apache.hadoop.yarn.util.resource.TestResources#testAdd", + "org.apache.hadoop.yarn.util.resource.TestResources#testComponentwiseMax", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsToNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testNoMoreThanOneLabelExistedInOneHost", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[0]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompare[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsIn[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiply", + "org.apache.hadoop.yarn.util.resource.TestResources#testCompareToWithNoneResource", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddReplaceRemoveLabelsOnNodes", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testParsingResourceTags", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioDenominatorIsZero[DominantResourceCalculator]", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddInvalidlabel", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithExtraResource[DominantResourceCalculator]", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddlabelWithCase", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testReplaceLabelsOnHostsShouldUpdateNodesBelongTo", + "org.apache.hadoop.yarn.util.resource.TestResources#testClone", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testNormalize[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithEmptyCluster[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testNodeLabelsDisabled", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetMemory", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testTrimLabelsWhenModifyLabelsOnNodes", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testResourceUnitParsing", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testEmptyResourcePBInit", + "org.apache.hadoop.yarn.util.resource.TestResources#testComponentwiseMin", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetNodeResourcesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioDenominatorIsZero[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testContainerTokenIdentifierOldFormat", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformationWithDiffUnits", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testReplaceLabelsOnNodeInDistributedMode", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testNormalize[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[1]", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceAttributes", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testResourceNameFormatValidation", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetRequestedResourcesFromConfig", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[0]", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndRoundDown", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[0]", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateResourceWithSameLongValue", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsInfoToNodes", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateResourceWithSameIntValue", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddRemovelabel", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsToNodesForSelectedLabels", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsInDiagnosticsCollector[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateSimpleResourceWithSameLongValue", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompare[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testRemoveNodeLabelsInfo", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testRemovelabelWithNodes", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithExtraResource[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceTags", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypes", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsInDiagnosticsCollector[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateSimpleResourceWithSameIntValue", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testTrimLabelsWhenAddRemoveNodeLabels", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioNumeratorAndDenominatorIsZero[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testAMContainerTokenIdentifier", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBWithExtraResources", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioNumeratorAndDenominatorIsZero[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsIn[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithEmptyCluster[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testMultipleOpsForResourcesWithTags", + "org.apache.hadoop.yarn.util.resource.TestResources#testSubtract", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithNoExtraResource[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[1]", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformation", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBInitFromOldPB" + ], + "yarn.client.failover-retries-on-socket-timeouts": [ + "org.apache.hadoop.yarn.client.TestClientRMProxy#testProxyUserCorrectUGI" + ], + "yarn.resourcemanager.application-tag-based-placement.force-lowercase": [ + "org.apache.hadoop.yarn.api.protocolrecords.impl.pb.TestGetApplicationsRequestPBImpl#testAppTagsLowerCaseConversionDisabled[1]", + "org.apache.hadoop.yarn.api.protocolrecords.impl.pb.TestGetApplicationsRequestPBImpl#testAppTagsLowerCaseConversionEnabled[1]", + "org.apache.hadoop.yarn.api.protocolrecords.impl.pb.TestGetApplicationsRequestPBImpl#testAppTagsLowerCaseConversionDisabled[0]", + "org.apache.hadoop.yarn.api.TestGetApplicationsRequest#testGetApplicationsRequest", + "org.apache.hadoop.yarn.api.records.impl.pb.TestApplicationSubmissionContextPBImpl#testAppTagsLowerCaseConversionDefault[0]", + "org.apache.hadoop.yarn.api.records.impl.pb.TestApplicationSubmissionContextPBImpl#testAppTagsLowerCaseConversionEnabled[1]", + "org.apache.hadoop.yarn.api.records.impl.pb.TestApplicationSubmissionContextPBImpl#testAppTagsLowerCaseConversionDisabled[0]", + "org.apache.hadoop.yarn.api.records.impl.pb.TestApplicationSubmissionContextPBImpl#testAppTagsLowerCaseConversionDefault[1]", + "org.apache.hadoop.yarn.api.records.impl.pb.TestApplicationSubmissionContextPBImpl#testAppTagsLowerCaseConversionEnabled[0]", + "org.apache.hadoop.yarn.api.protocolrecords.impl.pb.TestGetApplicationsRequestPBImpl#testAppTagsLowerCaseConversionEnabled[0]", + "org.apache.hadoop.yarn.api.records.impl.pb.TestApplicationSubmissionContextPBImpl#testAppTagsLowerCaseConversionDisabled[1]", + "org.apache.hadoop.yarn.api.protocolrecords.impl.pb.TestGetApplicationsRequestPBImpl#testAppTagsLowerCaseConversionDefault[0]", + "org.apache.hadoop.yarn.api.protocolrecords.impl.pb.TestGetApplicationsRequestPBImpl#testAppTagsLowerCaseConversionDefault[1]" + ], + "yarn.dispatcher.print-events-info.threshold": [ + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testDispatchStopOnTimeout", + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testMetricsForDispatcher", + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testDispatcherMetricsHistogram", + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testDispatcherOnCloseIfQueueEmpty", + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testDrainDispatcherDrainEventsOnStop" + ], + "yarn.nodemanager.log-aggregation.num-log-files-per-app": [ + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testFetchApplictionLogsHar", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBlockContainsPortNumForUnavailableAppLog", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testNodemanagerConfigurationIsUsed", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomGroup", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationDefault", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlock", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testDefaultLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRefreshLogRetentionSettings", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletionTwoControllers", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testNoLogs", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomUser", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetLogMetaFilesOfNode", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testCheckInterval", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetRollOverLogMaxSize", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRobustLogDeletion", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testDefaultConfUsed", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testLogAggregationIndexFileFormat", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBadLogs", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testClassConfUsed", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletion", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAccessDenied" + ], + "yarn.timeline-service.client.fd-flush-interval-secs": [ + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain" + ], + "yarn.resourcemanager.scheduler.address": [ + + ], + "yarn.timeline-service.webapp.address": [ + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostIncompleteEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetApplication", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainersForAppAttempt", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesWithError", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenOperationsRetry", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineClientCleanup", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainer", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenDisabledOnSimpleAuth", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineConnectorDestroy", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainers", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntity", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testCheckRetryCount" + ], + "yarn.timeline-service.client.retry-interval-ms": [ + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainers", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testASyncCallMerge", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testConfigurableNumberOfMerges", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineClientCleanup", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionCalls", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSetTimelineToken", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostIncompleteEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainer", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesWithError", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenDisabledOnSimpleAuth", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testAfterStop", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionMultipleRetry", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainersForAppAttempt", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntity", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSyncCall", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetApplication", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineConnectorDestroy" + ], + "yarn.timeline-service.client.internal-timers-ttl-secs": [ + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir" + ], + "yarn.fs-store.file.replication": [ + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[0]" + ], + "yarn.timeline-service.client.drain-entities.timeout.ms": [ + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSetTimelineToken", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionCalls", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSyncCall", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testConfigurableNumberOfMerges", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionMultipleRetry", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testASyncCallMerge", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testAfterStop" + ], + "yarn.resourcemanager.webapp.address": [ + "org.apache.hadoop.yarn.conf.TestYarnConfiguration#testDefaultRMWebUrl" + ], + "yarn.timeline-service.reader.webapp.address": [ + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainers", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainer", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntity", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetApplication", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainersForAppAttempt", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntities" + ], + "yarn.dispatcher.drain-events.timeout": [ + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testDispatcherOnCloseIfQueueEmpty" + ], + "yarn.dispatcher.print-thread-pool.keep-alive-time": [ + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testDispatcherOnCloseIfQueueEmpty", + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testPrintDispatcherEventDetailsAvoidDeadLoop", + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testDispatcherMetricsHistogram", + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testDrainDispatcherDrainEventsOnStop", + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testPrintDispatcherEventDetails", + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testMetricsForDispatcher", + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testDispatchStopOnTimeout" + ], + "yarn.http.policy": [ + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenDisabledOnSimpleAuth", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntity", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomain", + "org.apache.hadoop.yarn.conf.TestYarnConfiguration#testRMWebUrlSpecified", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testAfterStop", + "org.apache.hadoop.yarn.conf.TestHAUtil#testVerifyAndSetConfiguration", + "org.apache.hadoop.yarn.webapp.TestWebApp#testEncodedUrl", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostIncompleteEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionCalls", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#TestRMWebAppURLRemoteAndLocal", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testConfigurableNumberOfMerges", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesNoResponse", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCustomRoutes", + "org.apache.hadoop.yarn.conf.TestYarnConfiguration#testDefaultRMWebUrl", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testCheckRetryCount", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testASyncCallMerge", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBadLogs", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePaths", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithBindAddressNonZeroPort", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineConnectorDestroy", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainer", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePathsNoName", + "org.apache.hadoop.yarn.conf.TestHAUtil#testGetRMServiceId", + "org.apache.hadoop.yarn.webapp.TestWebApp#testDefaultRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testYARNWebAppContext", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenOperationsRetry", + "org.apache.hadoop.yarn.client.TestClientRMProxy#testGetAMRMTokenService", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreate", + "org.apache.hadoop.yarn.webapp.TestWebApp#testRobotsText", + "org.apache.hadoop.yarn.webapp.TestWebApp#testPortRanges", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBlockContainsPortNumForUnavailableAppLog", + "org.apache.hadoop.yarn.client.TestClientRMProxy#testGetRMDelegationTokenService", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.conf.TestHAUtil#testGetRMId", + "org.apache.hadoop.yarn.conf.TestHAUtil#testGetConfKeyForRMInstance", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSetTimelineToken", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesWithError", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithPort", + "org.apache.hadoop.yarn.conf.TestYarnConfiguration#testGetSocketAddressForNMWithHA", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetApplication", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainers", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionMultipleRetry", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSyncCall", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesConnectionRefused", + "org.apache.hadoop.yarn.conf.TestYarnConfiguration#testUpdateConnectAddr", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithNonZeroPort", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainersForAppAttempt", + "org.apache.hadoop.yarn.client.TestClientRMProxy#testProxyUserCorrectUGI" + ], + "yarn.scheduler.maximum-allocation-mb": [ + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddReplaceRemoveLabelsOnNodes", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithNoExtraResource[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsToNodesForSelectedLabels", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetVirtualCores", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testResourceNameFormatValidation", + "org.apache.hadoop.yarn.util.resource.TestResources#testComponentwiseMax", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testNormalize[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsIn[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithEmptyCluster[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithOnlyMandatory[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddlabelWithCase", + "org.apache.hadoop.yarn.util.resource.TestResources#testComponentwiseMin", + "org.apache.hadoop.yarn.util.resource.TestResources#testClone", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateResourceWithSameIntValue", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompare[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testAMContainerTokenIdentifier", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceAttributes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddInvalidlabel", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformationWithDiffUnits", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithNoExtraResource[DominantResourceCalculator]", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsToNodes", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[0]", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testNodeLabelsDisabled", + "org.apache.hadoop.yarn.util.resource.TestResources#testCompareToWithNoneResource", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioDenominatorIsZero[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[1]", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testGetNodeLabelsInfo", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[0]", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testResourceUnitParsing", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioDenominatorIsZero[DominantResourceCalculator]", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBWithExtraResources", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[1]", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testContainerTokenIdentifierOldFormat", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testReplaceLabelsOnNodeInDistributedMode", + "org.apache.hadoop.yarn.util.resource.TestResources#testAdd", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testInitializeResourcesMap", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetMemory", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithExtraResource[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigs", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testTrimLabelsWhenAddRemoveNodeLabels", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigErrors", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[0]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithEmptyCluster[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsIn[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testMultipleOpsForResourcesWithTags", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompare[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndRoundUpCustomResources", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testNormalize[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithExtraResource[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioNumeratorAndDenominatorIsZero[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformation", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[0]", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndRoundDown", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithOnlyMandatory[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResources#testCompareToWithUnboundedResource", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndAddTo", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateSimpleResourceWithSameLongValue", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetNodeResourcesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsInDiagnosticsCollector[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testReplaceLabelsOnHostsShouldUpdateNodesBelongTo", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateSimpleResourceWithSameIntValue", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioNumeratorAndDenominatorIsZero[DominantResourceCalculator]", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testRemoveNodeLabelsInfo", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddRemovelabel", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testContainerTokenIdentifier", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testParsingResourceTags", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiply", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[1]", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateResourceWithSameLongValue", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testRemovelabelWithNodes", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[1]", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testTrimLabelsWhenModifyLabelsOnNodes", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceTags", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[0]", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBInitFromOldPB", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsInDiagnosticsCollector[DominantResourceCalculator]", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsInfoToNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testNoMoreThanOneLabelExistedInOneHost", + "org.apache.hadoop.yarn.util.resource.TestResources#testFitsIn", + "org.apache.hadoop.yarn.api.TestResourceRequest#testEqualsOnExecutionTypeRequest", + "org.apache.hadoop.yarn.util.resource.TestResources#testSubtract", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyRoundUp", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[1]", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddlabelWithExclusivity", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testEmptyResourcePBInit", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetRequestedResourcesFromConfig" + ], + "yarn.scheduler.maximum-allocation-vcores": [ + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testContainerTokenIdentifierOldFormat", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiply", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithNoExtraResource[DominantResourceCalculator]", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testRemovelabelWithNodes", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testContainerTokenIdentifier", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBWithExtraResources", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testParsingResourceTags", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypes", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithOnlyMandatory[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[0]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testNormalize[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsIn[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigs", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompare[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateResourceWithSameLongValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testClone", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[1]", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetMemory", + "org.apache.hadoop.yarn.util.resource.TestResources#testFitsIn", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testTrimLabelsWhenModifyLabelsOnNodes", + "org.apache.hadoop.yarn.util.resource.TestResources#testComponentwiseMin", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsIn[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testNormalize[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateSimpleResourceWithSameLongValue", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[0]", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testReplaceLabelsOnHostsShouldUpdateNodesBelongTo", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsInfoToNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testTrimLabelsWhenAddRemoveNodeLabels", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testResourceNameFormatValidation", + "org.apache.hadoop.yarn.util.resource.TestResources#testComponentwiseMax", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetVirtualCores", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithNoExtraResource[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[1]", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testInitializeResourcesMap", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceAttributes", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompare[DominantResourceCalculator]", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddlabelWithCase", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformation", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testReplaceLabelsOnNodeInDistributedMode", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBInitFromOldPB", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndRoundDown", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetRequestedResourcesFromConfig", + "org.apache.hadoop.yarn.util.resource.TestResources#testCompareToWithNoneResource", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetNodeResourcesConfigErrors", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddInvalidlabel", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testRemoveNodeLabelsInfo", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testEmptyResourcePBInit", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioDenominatorIsZero[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsInDiagnosticsCollector[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioNumeratorAndDenominatorIsZero[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithEmptyCluster[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithEmptyCluster[DominantResourceCalculator]", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testNodeLabelsDisabled", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndRoundUpCustomResources", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testNoMoreThanOneLabelExistedInOneHost", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceTags", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithOnlyMandatory[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyRoundUp", + "org.apache.hadoop.yarn.util.resource.TestResources#testAdd", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndAddTo", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddReplaceRemoveLabelsOnNodes", + "org.apache.hadoop.yarn.util.resource.TestResources#testCompareToWithUnboundedResource", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformationWithDiffUnits", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testGetNodeLabelsInfo", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsToNodes", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testResourceUnitParsing", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[1]", + "org.apache.hadoop.yarn.api.TestResourceRequest#testEqualsOnExecutionTypeRequest", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioDenominatorIsZero[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsInDiagnosticsCollector[DominantResourceCalculator]", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testAMContainerTokenIdentifier", + "org.apache.hadoop.yarn.util.resource.TestResources#testSubtract", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddlabelWithExclusivity", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsToNodesForSelectedLabels", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddRemovelabel", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[1]", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateResourceWithSameIntValue", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithExtraResource[DominantResourceCalculator]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[0]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioNumeratorAndDenominatorIsZero[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testMultipleOpsForResourcesWithTags", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[1]", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateSimpleResourceWithSameIntValue", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithExtraResource[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[0]" + ], + "yarn.client.failover-retries": [ + + ], + "yarn.resourcemanager.hostname": [ + "org.apache.hadoop.yarn.conf.TestYarnConfiguration#testDefaultRMWebUrl" + ], + "yarn.nodemanager.remote-app-log-dir-include-older": [ + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testFetchApplictionLogsHar", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testNoLogs", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBadLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBlockContainsPortNumForUnavailableAppLog", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testLogAggregationIndexFileFormat", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testDefaultLogAggregationFileControllerFactory" + ], + "yarn.nodemanager.hostname": [ + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBadLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBlockContainsPortNumForUnavailableAppLog" + ], + "yarn.timeline-service.client.fd-clean-interval-secs": [ + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain" + ] + } \ No newline at end of file diff --git a/core/generate_ctest/inject.py b/core/generate_ctest/inject.py index e7325f86..da1e3caf 100644 --- a/core/generate_ctest/inject.py +++ b/core/generate_ctest/inject.py @@ -46,7 +46,7 @@ def clean_conf_file(project): file = open(inject_path, "w") file.write("\n") file.close() - elif project in [HCOMMON, HDFS, HBASE]: + elif project in [HCOMMON, HDFS, HBASE, HYARNCOMMON]: conf = ET.Element("configuration") for inject_path in INJECTION_PATH[project]: file = open(inject_path, "wb") diff --git a/core/generate_ctest/main.py b/core/generate_ctest/main.py index a53169d6..f644176d 100644 --- a/core/generate_ctest/main.py +++ b/core/generate_ctest/main.py @@ -33,7 +33,7 @@ def test_value_pair(test_input): mt_file = open(os.path.join(GENCTEST_TR_DIR, project, MT_FILE.format(id=param)), "w") associated_tests = mapping[param] if param in mapping else [] - if len(mapping[param]) != 0: + if param in mapping and len(mapping[param]) != 0: for value in values: tr = run_test_seperate(param, value, associated_tests) diff --git a/core/generate_ctest/program_input.py b/core/generate_ctest/program_input.py index 62892c33..bc496907 100644 --- a/core/generate_ctest/program_input.py +++ b/core/generate_ctest/program_input.py @@ -8,7 +8,7 @@ # path to param -> tests json mapping "mapping_path": "../../data/ctest_mapping/opensource-hadoop-yarn-common.json", # string # good values of params tests will be run against - "param_value_tsv": "../default_configs/hadoop-yarn-common-values.tsv", # string + "param_value_tsv": "hadoop-yarn-common.tsv", # string # display the terminal output live, without saving any results "display_mode": False, # bool # whether to use mvn test or mvn surefire:test diff --git a/data/ctest_mapping/opensource-hadoop-yarn-common.json b/data/ctest_mapping/opensource-hadoop-yarn-common.json index a93718bb..32cc4ba6 100644 --- a/data/ctest_mapping/opensource-hadoop-yarn-common.json +++ b/data/ctest_mapping/opensource-hadoop-yarn-common.json @@ -1,5478 +1,5432 @@ { - "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout": [ - "ipc.server.metrics.update.runner.interval", - "ipc.0.callqueue.overflow.trigger.failover", - "hadoop.security.authorization", - "ipc.server.max.response.size", - "hadoop.kerberos.min.seconds.before.relogin", - "ipc.client.connect.max.retries.on.timeouts", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "yarn.resourcemanager.configuration.provider-class", - "hadoop.security.authentication", - "yarn.scheduler.minimum-allocation-mb", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "ipc.backoff.enable", - "ipc.server.max.connections", - "ipc.client.ping", - "ipc.server.log.slow.rpc", - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.resource-types", - "hadoop.security.token.service.use_ip", - "ipc.server.purge.interval", - "ipc.client.low-latency", - "hadoop.rpc.socket.factory.class.default", - "ipc.server.tcpnodelay", - "ipc.client.fallback-to-simple-auth-allowed", - "hadoop.user.group.metrics.percentiles.intervals", - "ipc.ping.interval", - "ipc.0.callqueue.impl", - "hadoop.security.groups.cache.background.reload.threads", - "ipc.client.connection.maxidletime", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "yarn.ipc.record.factory.class", - "ipc.0.callqueue.capacity.weights", - "ipc.0.faircallqueue.priority-levels", - "ipc.client.connect.timeout", - "ipc.0.scheduler.impl", - "ipc.client.connect.retry.interval", - "ipc.scheduler.impl", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.ipc.server.factory.class", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "ipc.client.async.calls.max", - "ipc.client.connect.max.retries", - "yarn.resource-types.vcores.maximum-allocation", - "ipc.server.handler.queue.size", - "ipc.callqueue.impl", - "ipc.client.kill.max", - "yarn.scheduler.maximum-allocation-vcores", - "hadoop.security.auth_to_local", - "yarn.resource-types.memory-mb.minimum-allocation", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "rpc.metrics.percentiles.intervals", - "ipc.0.backoff.enable", - "ipc.client.tcpnodelay", - "yarn.scheduler.maximum-allocation-mb", - "ipc.client.connect.max.retries.on.sasl", - "ipc.server.reuseaddr", - "ipc.client.idlethreshold", - "ipc.maximum.data.length", - "hadoop.security.groups.cache.secs", - "ipc.0.scheduler.priority.levels", - "ipc.client.connection.idle-scan-interval.ms", - "yarn.scheduler.minimum-allocation-vcores", - "ipc.client.bind.wildcard.addr", - "ipc.server.read.connection-queue.size", - "ipc.maximum.response.length", - "yarn.ipc.client.factory.class", - "ipc.server.read.threadpool.size", - "ipc.server.listen.queue.size", - "rpc.metrics.timeunit", - "hadoop.security.group.mapping" - ], - "org.apache.hadoop.yarn.client.TestClientRMProxy#testProxyUserCorrectUGI": [ - "yarn.client.failover-sleep-base-ms", - "ipc.client.tcpnodelay", - "ipc.client.connect.max.retries.on.sasl", - "yarn.client.failover-proxy-provider", - "ipc.client.low-latency", - "yarn.ipc.record.factory.class", - "yarn.client.failover-retries", - "hadoop.rpc.socket.factory.class.default", - "ipc.client.connect.timeout", - "yarn.http.policy", - "ipc.client.rpc-timeout.ms", - "hadoop.security.groups.cache.secs", - "ipc.client.fallback-to-simple-auth-allowed", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.kerberos.min.seconds.before.relogin", - "ipc.client.connect.retry.interval", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "hadoop.security.authentication", - "ipc.ping.interval", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "ipc.client.bind.wildcard.addr", - "hadoop.security.groups.negative-cache.secs", - "ipc.client.async.calls.max", - "ipc.maximum.response.length", - "hadoop.security.resolver.impl", - "yarn.ipc.client.factory.class", - "ipc.client.ping", - "hadoop.security.groups.cache.background.reload.threads", - "yarn.client.failover-sleep-max-ms", - "hadoop.security.auth_to_local", - "ipc.client.connection.maxidletime", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "yarn.client.failover-retries-on-socket-timeouts", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "hadoop.security.token.service.use_ip" - ], - "org.apache.hadoop.yarn.client.TestClientRMProxy#testGetRMDelegationTokenService": [ - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "yarn.resourcemanager.address", - "hadoop.security.dns.log-slow-lookups.enabled", - "yarn.resourcemanager.hostname", - "hadoop.security.resolver.impl", - "hadoop.security.token.service.use_ip", - "yarn.http.policy" - ], - "org.apache.hadoop.yarn.client.TestClientRMProxy#testGetAMRMTokenService": [ - "yarn.resourcemanager.scheduler.address", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.dns.log-slow-lookups.enabled", - "yarn.resourcemanager.hostname", - "hadoop.security.resolver.impl", - "hadoop.security.token.service.use_ip", - "yarn.http.policy" - ], - "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainersForAppAttempt": [ - "yarn.timeline-service.client.retry-interval-ms", - "yarn.ipc.record.factory.class", - "yarn.timeline-service.webapp.address", - "yarn.http.policy", - "hadoop.security.groups.cache.secs", - "yarn.timeline-service.reader.webapp.address", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "hadoop.security.authentication", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "yarn.timeline-service.hostname", - "yarn.timeline-service.versions", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "yarn.timeline-service.http-authentication.type", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "hadoop.security.token.service.use_ip", - "yarn.resourcemanager.cluster-id", - "yarn.timeline-service.client.max-retries" - ], - "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetApplication": [ - "yarn.timeline-service.client.retry-interval-ms", - "yarn.ipc.record.factory.class", - "yarn.timeline-service.webapp.address", - "yarn.http.policy", - "hadoop.security.groups.cache.secs", - "yarn.timeline-service.reader.webapp.address", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "hadoop.security.authentication", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "yarn.timeline-service.hostname", - "yarn.timeline-service.versions", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "yarn.timeline-service.http-authentication.type", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "hadoop.security.token.service.use_ip", - "yarn.resourcemanager.cluster-id", - "yarn.timeline-service.client.max-retries" - ], - "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainer": [ - "yarn.timeline-service.client.retry-interval-ms", - "yarn.ipc.record.factory.class", - "yarn.timeline-service.webapp.address", - "yarn.http.policy", - "hadoop.security.groups.cache.secs", - "yarn.timeline-service.reader.webapp.address", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "hadoop.security.authentication", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "yarn.timeline-service.hostname", - "yarn.timeline-service.versions", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "yarn.timeline-service.http-authentication.type", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "hadoop.security.token.service.use_ip", - "yarn.resourcemanager.cluster-id", - "yarn.timeline-service.client.max-retries" - ], - "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntities": [ - "yarn.timeline-service.client.retry-interval-ms", - "yarn.ipc.record.factory.class", - "yarn.timeline-service.webapp.address", - "yarn.http.policy", - "hadoop.security.groups.cache.secs", - "yarn.timeline-service.reader.webapp.address", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "hadoop.security.authentication", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "yarn.timeline-service.hostname", - "yarn.timeline-service.versions", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "yarn.timeline-service.http-authentication.type", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "hadoop.security.token.service.use_ip", - "yarn.resourcemanager.cluster-id", - "yarn.timeline-service.client.max-retries" - ], - "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntity": [ - "yarn.timeline-service.client.retry-interval-ms", - "yarn.ipc.record.factory.class", - "yarn.timeline-service.webapp.address", - "yarn.http.policy", - "hadoop.security.groups.cache.secs", - "yarn.timeline-service.reader.webapp.address", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "hadoop.security.authentication", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "yarn.timeline-service.hostname", - "yarn.timeline-service.versions", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "yarn.timeline-service.http-authentication.type", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "hadoop.security.token.service.use_ip", - "yarn.resourcemanager.cluster-id", - "yarn.timeline-service.client.max-retries" - ], - "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainers": [ - "yarn.timeline-service.client.retry-interval-ms", - "yarn.ipc.record.factory.class", - "yarn.timeline-service.webapp.address", - "yarn.http.policy", - "hadoop.security.groups.cache.secs", - "yarn.timeline-service.reader.webapp.address", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "hadoop.security.authentication", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "yarn.timeline-service.hostname", - "yarn.timeline-service.versions", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "yarn.timeline-service.http-authentication.type", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "hadoop.security.token.service.use_ip", - "yarn.resourcemanager.cluster-id", - "yarn.timeline-service.client.max-retries" - ], - "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities": [ - "fs.iostatistics.thread.level.enabled", - "fs.automatic.close", - "yarn.timeline-service.client.retry-interval-ms", - "yarn.timeline-service.client.fd-clean-interval-secs", - "yarn.ipc.record.factory.class", - "yarn.timeline-service.entity-group-fs-store.with-user-dir", - "fs.local.block.size", - "yarn.timeline-service.webapp.address", - "yarn.timeline-service.client.fd-retain-secs", - "fs.client.resolve.remote.symlinks", - "yarn.http.policy", - "yarn.timeline-service.client.fd-flush-interval-secs", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "fs.AbstractFileSystem.file.impl", - "hadoop.service.shutdown.timeout", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "hadoop.security.authentication", - "yarn.timeline-service.client.internal-attempt-dir-cache-size", - "file.bytes-per-checksum", - "fs.permissions.umask-mode", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "file.stream-buffer-size", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "yarn.timeline-service.hostname", - "yarn.timeline-service.versions", - "fs.defaultFS", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "yarn.timeline-service.http-authentication.type", - "yarn.timeline-service.entity-file.fs-support-append", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "io.file.buffer.size", - "yarn.timeline-service.client.internal-timers-ttl-secs", - "hadoop.security.token.service.use_ip", - "fs.file.impl", - "yarn.timeline-service.client.max-retries" - ], - "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir": [ - "fs.iostatistics.thread.level.enabled", - "fs.automatic.close", - "yarn.timeline-service.client.retry-interval-ms", - "yarn.timeline-service.client.fd-clean-interval-secs", - "yarn.ipc.record.factory.class", - "fs.local.block.size", - "yarn.timeline-service.webapp.address", - "yarn.timeline-service.client.fd-retain-secs", - "fs.client.resolve.remote.symlinks", - "yarn.http.policy", - "yarn.timeline-service.client.fd-flush-interval-secs", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "fs.AbstractFileSystem.file.impl", - "hadoop.service.shutdown.timeout", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "hadoop.security.authentication", - "yarn.timeline-service.client.internal-attempt-dir-cache-size", - "file.bytes-per-checksum", - "fs.permissions.umask-mode", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "file.stream-buffer-size", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "yarn.timeline-service.hostname", - "yarn.timeline-service.versions", - "fs.defaultFS", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "yarn.timeline-service.http-authentication.type", - "yarn.timeline-service.entity-file.fs-support-append", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "io.file.buffer.size", - "yarn.timeline-service.client.internal-timers-ttl-secs", - "hadoop.security.token.service.use_ip", - "fs.file.impl", - "yarn.timeline-service.client.max-retries" - ], - "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain": [ - "fs.iostatistics.thread.level.enabled", - "fs.automatic.close", - "yarn.timeline-service.client.retry-interval-ms", - "yarn.timeline-service.client.fd-clean-interval-secs", - "yarn.ipc.record.factory.class", - "yarn.timeline-service.entity-group-fs-store.with-user-dir", - "fs.local.block.size", - "yarn.timeline-service.webapp.address", - "yarn.timeline-service.client.fd-retain-secs", - "fs.client.resolve.remote.symlinks", - "yarn.http.policy", - "yarn.timeline-service.client.fd-flush-interval-secs", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "fs.AbstractFileSystem.file.impl", - "hadoop.service.shutdown.timeout", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "hadoop.security.authentication", - "yarn.timeline-service.client.internal-attempt-dir-cache-size", - "file.bytes-per-checksum", - "fs.permissions.umask-mode", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "file.stream-buffer-size", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "yarn.timeline-service.hostname", - "yarn.timeline-service.versions", - "fs.defaultFS", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "yarn.timeline-service.http-authentication.type", - "yarn.timeline-service.entity-file.fs-support-append", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "io.file.buffer.size", - "yarn.timeline-service.client.internal-timers-ttl-secs", - "hadoop.security.token.service.use_ip", - "fs.file.impl", - "yarn.timeline-service.client.max-retries" - ], - "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir": [ - "fs.iostatistics.thread.level.enabled", - "fs.automatic.close", - "yarn.timeline-service.client.retry-interval-ms", - "yarn.timeline-service.client.fd-clean-interval-secs", - "yarn.ipc.record.factory.class", - "fs.local.block.size", - "yarn.timeline-service.webapp.address", - "yarn.timeline-service.client.fd-retain-secs", - "fs.client.resolve.remote.symlinks", - "yarn.http.policy", - "yarn.timeline-service.client.fd-flush-interval-secs", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "fs.AbstractFileSystem.file.impl", - "hadoop.service.shutdown.timeout", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "hadoop.security.authentication", - "yarn.timeline-service.client.internal-attempt-dir-cache-size", - "file.bytes-per-checksum", - "fs.permissions.umask-mode", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "file.stream-buffer-size", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "yarn.timeline-service.hostname", - "yarn.timeline-service.versions", - "fs.defaultFS", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "yarn.timeline-service.http-authentication.type", - "yarn.timeline-service.entity-file.fs-support-append", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "io.file.buffer.size", - "yarn.timeline-service.client.internal-timers-ttl-secs", - "hadoop.security.token.service.use_ip", - "fs.file.impl", - "yarn.timeline-service.client.max-retries" - ], - "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenOperationsRetry": [ - "yarn.timeline-service.webapp.address", - "yarn.http.policy", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "yarn.timeline-service.hostname", - "yarn.timeline-service.versions", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "hadoop.security.token.service.use_ip" - ], - "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntities": [ - "yarn.timeline-service.client.retry-interval-ms", - "yarn.timeline-service.webapp.address", - "yarn.http.policy", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "hadoop.security.authentication", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "yarn.timeline-service.hostname", - "yarn.timeline-service.versions", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "yarn.timeline-service.http-authentication.type", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "hadoop.security.token.service.use_ip", - "yarn.timeline-service.client.max-retries" - ], - "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineClientCleanup": [ - "hadoop.security.credential.provider.path", - "ssl.client.truststore.type", - "yarn.timeline-service.client.retry-interval-ms", - "ssl.client.keystore.type", - "yarn.timeline-service.webapp.address", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.ssl.enabled.protocols", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "hadoop.security.authentication", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.groups.negative-cache.secs", - "ssl.server.exclude.cipher.list", - "ssl.client.stores.reload.interval", - "hadoop.security.resolver.impl", - "yarn.timeline-service.hostname", - "yarn.timeline-service.versions", - "hadoop.security.credential.clear-text-fallback", - "hadoop.ssl.keystores.factory.class", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "yarn.timeline-service.http-authentication.type", - "yarn.timeline-service.webapp.https.address", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "hadoop.security.token.service.use_ip" - ], - "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostIncompleteEntities": [ - "yarn.timeline-service.client.retry-interval-ms", - "yarn.timeline-service.webapp.address", - "yarn.http.policy", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "hadoop.security.authentication", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "yarn.timeline-service.hostname", - "yarn.timeline-service.versions", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "yarn.timeline-service.http-authentication.type", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "hadoop.security.token.service.use_ip", - "yarn.timeline-service.client.max-retries" - ], - "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainConnectionRefused": [ - "yarn.timeline-service.client.retry-interval-ms", - "yarn.timeline-service.webapp.address", - "yarn.http.policy", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "hadoop.security.authentication", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "yarn.timeline-service.hostname", - "yarn.timeline-service.versions", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "yarn.timeline-service.http-authentication.type", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "hadoop.security.token.service.use_ip", - "yarn.timeline-service.client.max-retries" - ], - "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesWithError": [ - "yarn.timeline-service.client.retry-interval-ms", - "yarn.timeline-service.webapp.address", - "yarn.http.policy", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "hadoop.security.authentication", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "yarn.timeline-service.hostname", - "yarn.timeline-service.versions", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "yarn.timeline-service.http-authentication.type", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "hadoop.security.token.service.use_ip", - "yarn.timeline-service.client.max-retries" - ], - "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomain": [ - "yarn.timeline-service.client.retry-interval-ms", - "yarn.timeline-service.webapp.address", - "yarn.http.policy", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "hadoop.security.authentication", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "yarn.timeline-service.hostname", - "yarn.timeline-service.versions", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "yarn.timeline-service.http-authentication.type", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "hadoop.security.token.service.use_ip", - "yarn.timeline-service.client.max-retries" - ], - "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenDisabledOnSimpleAuth": [ - "yarn.timeline-service.client.retry-interval-ms", - "yarn.timeline-service.webapp.address", - "yarn.http.policy", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "hadoop.security.authentication", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "yarn.timeline-service.hostname", - "yarn.timeline-service.versions", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "hadoop.security.token.service.use_ip", - "yarn.timeline-service.client.max-retries" - ], - "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testCheckRetryCount": [ - "yarn.timeline-service.webapp.address", - "yarn.http.policy", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "hadoop.security.authentication", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "yarn.timeline-service.hostname", - "yarn.timeline-service.versions", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "yarn.timeline-service.http-authentication.type", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "hadoop.security.token.service.use_ip" - ], - "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesNoResponse": [ - "yarn.timeline-service.client.retry-interval-ms", - "yarn.timeline-service.webapp.address", - "yarn.http.policy", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "hadoop.security.authentication", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "yarn.timeline-service.hostname", - "yarn.timeline-service.versions", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "yarn.timeline-service.http-authentication.type", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "hadoop.security.token.service.use_ip", - "yarn.timeline-service.client.max-retries" - ], - "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesConnectionRefused": [ - "yarn.timeline-service.client.retry-interval-ms", - "yarn.timeline-service.webapp.address", - "yarn.http.policy", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "hadoop.security.authentication", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "yarn.timeline-service.hostname", - "yarn.timeline-service.versions", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "yarn.timeline-service.http-authentication.type", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "hadoop.security.token.service.use_ip", - "yarn.timeline-service.client.max-retries" - ], - "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainNoResponse": [ - "yarn.timeline-service.client.retry-interval-ms", - "yarn.timeline-service.webapp.address", - "yarn.http.policy", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "hadoop.security.authentication", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "yarn.timeline-service.hostname", - "yarn.timeline-service.versions", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "yarn.timeline-service.http-authentication.type", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "hadoop.security.token.service.use_ip", - "yarn.timeline-service.client.max-retries" - ], - "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineConnectorDestroy": [ - "yarn.timeline-service.client.retry-interval-ms", - "yarn.timeline-service.webapp.address", - "yarn.http.policy", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "hadoop.security.authentication", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "yarn.timeline-service.hostname", - "yarn.timeline-service.versions", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "yarn.timeline-service.http-authentication.type", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "hadoop.security.token.service.use_ip", - "yarn.timeline-service.client.max-retries" - ], - "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSyncCall": [ - "yarn.timeline-service.client.retry-interval-ms", - "yarn.ipc.record.factory.class", - "yarn.timeline-service.client.drain-entities.timeout.ms", - "yarn.http.policy", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "hadoop.security.authentication", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "yarn.timeline-service.versions", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "yarn.timeline-service.http-authentication.type", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "hadoop.security.token.service.use_ip", - "yarn.timeline-service.client.max-retries" - ], - "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testPostEntities": [ - "yarn.timeline-service.client.retry-interval-ms", - "yarn.ipc.record.factory.class", - "yarn.timeline-service.client.drain-entities.timeout.ms", - "yarn.http.policy", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "hadoop.security.authentication", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "yarn.timeline-service.versions", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "yarn.timeline-service.http-authentication.type", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "hadoop.security.token.service.use_ip", - "yarn.timeline-service.client.max-retries" - ], - "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSetTimelineToken": [ - "yarn.timeline-service.client.retry-interval-ms", - "yarn.ipc.record.factory.class", - "yarn.timeline-service.client.drain-entities.timeout.ms", - "yarn.http.policy", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "hadoop.security.authentication", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "yarn.timeline-service.versions", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "yarn.timeline-service.http-authentication.type", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "hadoop.security.token.service.use_ip", - "yarn.timeline-service.client.max-retries" - ], - "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionCalls": [ - "yarn.timeline-service.client.retry-interval-ms", - "yarn.ipc.record.factory.class", - "yarn.timeline-service.client.drain-entities.timeout.ms", - "yarn.http.policy", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "hadoop.security.authentication", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "yarn.timeline-service.versions", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "yarn.timeline-service.http-authentication.type", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "hadoop.security.token.service.use_ip", - "yarn.timeline-service.client.max-retries" - ], - "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionMultipleRetry": [ - "yarn.timeline-service.client.retry-interval-ms", - "yarn.ipc.record.factory.class", - "yarn.timeline-service.client.drain-entities.timeout.ms", - "yarn.http.policy", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "hadoop.security.authentication", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "yarn.timeline-service.versions", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "yarn.timeline-service.http-authentication.type", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "hadoop.security.token.service.use_ip" - ], - "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testASyncCallMerge": [ - "yarn.timeline-service.client.retry-interval-ms", - "yarn.ipc.record.factory.class", - "yarn.timeline-service.client.drain-entities.timeout.ms", - "yarn.http.policy", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "hadoop.security.authentication", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "yarn.timeline-service.versions", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "yarn.timeline-service.http-authentication.type", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "hadoop.security.token.service.use_ip", - "yarn.timeline-service.client.max-retries" - ], - "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testConfigurableNumberOfMerges": [ - "yarn.timeline-service.client.retry-interval-ms", - "yarn.ipc.record.factory.class", - "yarn.timeline-service.client.drain-entities.timeout.ms", - "yarn.http.policy", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "hadoop.security.authentication", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "yarn.timeline-service.versions", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "yarn.timeline-service.http-authentication.type", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "hadoop.security.token.service.use_ip", - "yarn.timeline-service.client.max-retries" - ], - "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testAfterStop": [ - "yarn.timeline-service.client.retry-interval-ms", - "yarn.ipc.record.factory.class", - "yarn.timeline-service.client.drain-entities.timeout.ms", - "yarn.http.policy", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "hadoop.security.authentication", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "yarn.timeline-service.versions", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "yarn.timeline-service.http-authentication.type", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "hadoop.security.token.service.use_ip", - "yarn.timeline-service.client.max-retries" - ], - "org.apache.hadoop.yarn.util.TestApps#testSetEnvFromInputPropertyDefault": [ - "mapreduce.map.envbogus" - ], - "org.apache.hadoop.yarn.util.TestApps#testSetEnvFromInputPropertyNull": [ - "bogus1" - ], - "org.apache.hadoop.yarn.util.TestApps#testSetEnvFromInputPropertyOverrideDefault": [ - "mapreduce.reduce.env" - ], - "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testProcessTreeDump": [ - "fs.local.block.size", - "fs.client.resolve.remote.symlinks", - "hadoop.security.groups.cache.secs", - "fs.AbstractFileSystem.file.impl", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "hadoop.security.authentication", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "hadoop.security.token.service.use_ip" - ], - "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testProcessTree": [ - "fs.local.block.size", - "fs.client.resolve.remote.symlinks", - "hadoop.security.groups.cache.secs", - "fs.AbstractFileSystem.file.impl", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "hadoop.security.authentication", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "hadoop.security.token.service.use_ip" - ], - "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testMemForOlderProcesses": [ - "fs.local.block.size", - "fs.client.resolve.remote.symlinks", - "hadoop.security.groups.cache.secs", - "fs.AbstractFileSystem.file.impl", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "hadoop.security.authentication", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "hadoop.security.token.service.use_ip" - ], - "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testCpuAndMemoryForProcessTree": [ - "fs.local.block.size", - "fs.client.resolve.remote.symlinks", - "hadoop.security.groups.cache.secs", - "fs.AbstractFileSystem.file.impl", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "hadoop.security.authentication", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "hadoop.security.token.service.use_ip" - ], - "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testDestroyProcessTree": [ - "fs.local.block.size", - "fs.client.resolve.remote.symlinks", - "hadoop.security.groups.cache.secs", - "fs.AbstractFileSystem.file.impl", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "hadoop.security.authentication", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "hadoop.security.token.service.use_ip" - ], - "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithExtraResource[DefaultResourceCalculator]": [ - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.resource-types.test.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.test.minimum-allocation", - "yarn.resource-types.test.units", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.resource-types.test.tags", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb", - "yarn.resource-types.test.type" - ], - "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithEmptyCluster[DefaultResourceCalculator]": [ - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb" - ], - "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompare[DefaultResourceCalculator]": [ - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.resource-types.test.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.test.minimum-allocation", - "yarn.resource-types.test.units", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.resource-types.test.tags", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb", - "yarn.resource-types.test.type" - ], - "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithNoExtraResource[DefaultResourceCalculator]": [ - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb" - ], - "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testNormalize[DefaultResourceCalculator]": [ - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb" - ], - "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioNumeratorAndDenominatorIsZero[DefaultResourceCalculator]": [ - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb" - ], - "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithOnlyMandatory[DefaultResourceCalculator]": [ - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb" - ], - "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsIn[DefaultResourceCalculator]": [ - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb" - ], - "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioDenominatorIsZero[DefaultResourceCalculator]": [ - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb" - ], - "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsInDiagnosticsCollector[DefaultResourceCalculator]": [ - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb" - ], - "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithExtraResource[DominantResourceCalculator]": [ - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.resource-types.test.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.test.minimum-allocation", - "yarn.resource-types.test.units", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.resource-types.test.tags", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb", - "yarn.resource-types.test.type" - ], - "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithEmptyCluster[DominantResourceCalculator]": [ - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb" - ], - "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompare[DominantResourceCalculator]": [ - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.resource-types.test.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.test.minimum-allocation", - "yarn.resource-types.test.units", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.resource-types.test.tags", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb", - "yarn.resource-types.test.type" - ], - "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithNoExtraResource[DominantResourceCalculator]": [ - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb" - ], - "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testNormalize[DominantResourceCalculator]": [ - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb" - ], - "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioNumeratorAndDenominatorIsZero[DominantResourceCalculator]": [ - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb" - ], - "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithOnlyMandatory[DominantResourceCalculator]": [ - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb" - ], - "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsIn[DominantResourceCalculator]": [ - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb" - ], - "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioDenominatorIsZero[DominantResourceCalculator]": [ - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb" - ], - "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsInDiagnosticsCollector[DominantResourceCalculator]": [ - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb" - ], - "org.apache.hadoop.yarn.util.resource.TestResources#testCreateSimpleResourceWithSameIntValue": [ - "yarn.resource-types.resource2.minimum-allocation", - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.resource2.tags", - "yarn.resource-types.resource2.units", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.resource-types.resource2.type", - "yarn.resource-types.resource2.maximum-allocation", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb" - ], - "org.apache.hadoop.yarn.util.resource.TestResources#testAdd": [ - "yarn.resource-types.resource2.minimum-allocation", - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.resource2.tags", - "yarn.resource-types.resource2.units", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.resource-types.resource2.type", - "yarn.resource-types.resource2.maximum-allocation", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb" - ], - "org.apache.hadoop.yarn.util.resource.TestResources#testSubtract": [ - "yarn.resource-types.resource2.minimum-allocation", - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.resource2.tags", - "yarn.resource-types.resource2.units", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.resource-types.resource2.type", - "yarn.resource-types.resource2.maximum-allocation", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb" - ], - "org.apache.hadoop.yarn.util.resource.TestResources#testClone": [ - "yarn.resource-types.resource2.minimum-allocation", - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.resource2.tags", - "yarn.resource-types.resource2.units", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.resource-types.resource2.type", - "yarn.resource-types.resource2.maximum-allocation", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb" - ], - "org.apache.hadoop.yarn.util.resource.TestResources#testCreateResourceWithSameIntValue": [ - "yarn.resource-types.resource2.minimum-allocation", - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.resource2.tags", - "yarn.resource-types.resource2.units", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.resource-types.resource2.type", - "yarn.resource-types.resource2.maximum-allocation", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb" - ], - "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyRoundUp": [ - "yarn.resource-types.resource2.minimum-allocation", - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.resource2.tags", - "yarn.resource-types.resource2.units", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.resource-types.resource2.type", - "yarn.resource-types.resource2.maximum-allocation", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb" - ], - "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndRoundUpCustomResources": [ - "yarn.resource-types.resource2.minimum-allocation", - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.resource2.tags", - "yarn.resource-types.resource2.units", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.resource-types.resource2.type", - "yarn.resource-types.resource2.maximum-allocation", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb" - ], - "org.apache.hadoop.yarn.util.resource.TestResources#testCreateSimpleResourceWithSameLongValue": [ - "yarn.resource-types.resource2.minimum-allocation", - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.resource2.tags", - "yarn.resource-types.resource2.units", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.resource-types.resource2.type", - "yarn.resource-types.resource2.maximum-allocation", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb" - ], - "org.apache.hadoop.yarn.util.resource.TestResources#testCompareToWithNoneResource": [ - "yarn.resource-types.resource2.minimum-allocation", - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.resource2.tags", - "yarn.resource-types.resource2.units", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.resource-types.resource2.type", - "yarn.resource-types.resource2.maximum-allocation", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb" - ], - "org.apache.hadoop.yarn.util.resource.TestResources#testComponentwiseMax": [ - "yarn.resource-types.resource2.minimum-allocation", - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.resource2.tags", - "yarn.resource-types.resource2.units", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.resource-types.resource2.type", - "yarn.resource-types.resource2.maximum-allocation", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb" - ], - "org.apache.hadoop.yarn.util.resource.TestResources#testComponentwiseMin": [ - "yarn.resource-types.resource2.minimum-allocation", - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.resource2.tags", - "yarn.resource-types.resource2.units", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.resource-types.resource2.type", - "yarn.resource-types.resource2.maximum-allocation", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb" - ], - "org.apache.hadoop.yarn.util.resource.TestResources#testFitsIn": [ - "yarn.resource-types.resource2.minimum-allocation", - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.resource2.tags", - "yarn.resource-types.resource2.units", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.resource-types.resource2.type", - "yarn.resource-types.resource2.maximum-allocation", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb" - ], - "org.apache.hadoop.yarn.util.resource.TestResources#testCreateResourceWithSameLongValue": [ - "yarn.resource-types.resource2.minimum-allocation", - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.resource2.tags", - "yarn.resource-types.resource2.units", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.resource-types.resource2.type", - "yarn.resource-types.resource2.maximum-allocation", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb" - ], - "org.apache.hadoop.yarn.util.resource.TestResources#testMultiply": [ - "yarn.resource-types.resource2.minimum-allocation", - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.resource2.tags", - "yarn.resource-types.resource2.units", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.resource-types.resource2.type", - "yarn.resource-types.resource2.maximum-allocation", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb" - ], - "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndRoundDown": [ - "yarn.resource-types.resource2.minimum-allocation", - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.resource2.tags", - "yarn.resource-types.resource2.units", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.resource-types.resource2.type", - "yarn.resource-types.resource2.maximum-allocation", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb" - ], - "org.apache.hadoop.yarn.util.resource.TestResources#testCompareToWithUnboundedResource": [ - "yarn.resource-types.resource2.minimum-allocation", - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.resource2.tags", - "yarn.resource-types.resource2.units", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.resource-types.resource2.type", - "yarn.resource-types.resource2.maximum-allocation", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb" - ], - "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndAddTo": [ - "yarn.resource-types.resource2.minimum-allocation", - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.resource2.tags", - "yarn.resource-types.resource2.units", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.resource-types.resource2.type", - "yarn.resource-types.resource2.maximum-allocation", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb" - ], - "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetNodeResourcesRedefineGpuErrors": [ - "yarn.resource-types.yarn.io/gpu.maximum-allocation", - "yarn.resource-types.yarn.io/gpu.tags", - "yarn.resource-types.yarn.io/gpu.minimum-allocation", - "yarn.resource-types.yarn.io/gpu.type", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.yarn.io/gpu.units" - ], - "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testInitializeResourcesMap": [ - "yarn.scheduler.maximum-allocation-mb", - "yarn.resource-types.resource2.tags", - "yarn.resource-types.resource1.minimum-allocation", - "yarn.resource-types.resource2.type", - "yarn.resource-types.resource1.type", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resourcemanager.configuration.provider-class", - "yarn.scheduler.minimum-allocation-mb", - "yarn.resource-types.resource2.maximum-allocation", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.resource-types.resource1.maximum-allocation", - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.resource-types.resource2.minimum-allocation", - "yarn.resource-types.resource1.tags", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.memory-mb.minimum-allocation" - ], - "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testResourceNameFormatValidation": [ - "yarn.scheduler.maximum-allocation-mb", - "yarn.resource-types.resource2.tags", - "yarn.resource-types.resource1.minimum-allocation", - "yarn.resource-types.resource2.type", - "yarn.resource-types.resource1.type", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resourcemanager.configuration.provider-class", - "yarn.scheduler.minimum-allocation-mb", - "yarn.resource-types.resource2.maximum-allocation", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.resource-types.resource1.maximum-allocation", - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.resource-types.resource2.minimum-allocation", - "yarn.resource-types.resource1.tags", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.memory-mb.minimum-allocation" - ], - "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypes": [ - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb" - ], - "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformationWithDiffUnits": [ - "yarn.scheduler.maximum-allocation-mb", - "yarn.resource-types.yarn.io/gpu.tags", - "yarn.resource-types.resource2.tags", - "yarn.resource-types.resource1.minimum-allocation", - "yarn.resource-types.resource2.type", - "yarn.resource-types.resource1.type", - "yarn.resource-types.resource1.units", - "yarn.resource-types.yarn.io/gpu.minimum-allocation", - "yarn.resource-types.yarn.io/gpu.type", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resourcemanager.configuration.provider-class", - "yarn.scheduler.minimum-allocation-mb", - "yarn.resource-types.resource2.units", - "yarn.resource-types.resource2.maximum-allocation", - "yarn.resource-types.yarn.io/gpu.units", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.resource-types.resource1.maximum-allocation", - "yarn.resource-types.resource2.minimum-allocation", - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.resource-types.resource1.tags", - "yarn.resource-types.yarn.io/gpu.maximum-allocation", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.resource-types" - ], - "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testMultipleOpsForResourcesWithTags": [ - "yarn.scheduler.maximum-allocation-mb", - "yarn.resource-types.yarn.io/gpu.tags", - "yarn.resource-types.resource3.maximum-allocation", - "yarn.resource-types.resource1.minimum-allocation", - "yarn.resource-types.resource2.tags", - "yarn.resource-types.resource2.type", - "yarn.resource-types.yarn.io/test-volume.maximum-allocation", - "yarn.resource-types.resource1.type", - "yarn.resource-types.resource3.units", - "yarn.resource-types.yarn.io/test-volume.minimum-allocation", - "yarn.resource-types.resource1.units", - "yarn.resource-types.yarn.io/gpu.minimum-allocation", - "yarn.resource-types.yarn.io/gpu.type", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resourcemanager.configuration.provider-class", - "yarn.scheduler.minimum-allocation-mb", - "yarn.resource-types.resource3.tags", - "yarn.resource-types.resource2.units", - "yarn.resource-types.yarn.io/test-volume.type", - "yarn.resource-types.resource3.minimum-allocation", - "yarn.resource-types.resource2.maximum-allocation", - "yarn.resource-types.resource3.type", - "yarn.resource-types.yarn.io/test-volume.units", - "yarn.resource-types.yarn.io/gpu.units", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.resource-types.resource1.maximum-allocation", - "yarn.resource-types.resource2.minimum-allocation", - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.resource-types.resource1.tags", - "yarn.resource-types.yarn.io/gpu.maximum-allocation", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.resource-types", - "yarn.resource-types.yarn.io/test-volume.tags" - ], - "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetRequestedResourcesFromConfig": [ - "yarn.scheduler.maximum-allocation-mb", - "yarn.resource-types.yarn.io/gpu.tags", - "yarn.resource-types.resource3.maximum-allocation", - "yarn.resource-types.resource1.minimum-allocation", - "yarn.resource-types.resource2.tags", - "yarn.resource-types.resource2.type", - "yarn.resource-types.yarn.io/test-volume.maximum-allocation", - "yarn.resource-types.resource1.type", - "yarn.resource-types.resource3.units", - "yarn.resource-types.yarn.io/test-volume.minimum-allocation", - "yarn.resource-types.resource1.units", - "yarn.resource-types.yarn.io/gpu.minimum-allocation", - "yarn.resource-types.yarn.io/gpu.type", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resourcemanager.configuration.provider-class", - "yarn.scheduler.minimum-allocation-mb", - "yarn.resource-types.resource3.tags", - "yarn.resource-types.resource2.units", - "yarn.resource-types.yarn.io/test-volume.type", - "yarn.resource-types.resource3.minimum-allocation", - "yarn.resource-types.resource2.maximum-allocation", - "yarn.resource-types.resource3.type", - "yarn.resource-types.yarn.io/test-volume.units", - "yarn.resource-types.yarn.io/gpu.units", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.resource-types.resource1.maximum-allocation", - "yarn.resource-types.resource2.minimum-allocation", - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.resource-types.resource1.tags", - "yarn.resource-types.yarn.io/gpu.maximum-allocation", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.resource-types", - "yarn.resource-types.yarn.io/test-volume.tags" - ], - "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetNodeResourcesConfigErrors": [ - "yarn.scheduler.maximum-allocation-mb", - "yarn.resource-types.yarn.io/gpu.tags", - "yarn.resource-types.resource2.tags", - "yarn.resource-types.resource1.minimum-allocation", - "yarn.resource-types.resource2.type", - "yarn.resource-types.resource1.type", - "yarn.resource-types.resource1.units", - "yarn.resource-types.yarn.io/gpu.minimum-allocation", - "yarn.resource-types.yarn.io/gpu.type", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resourcemanager.configuration.provider-class", - "yarn.scheduler.minimum-allocation-mb", - "yarn.resource-types.resource2.units", - "yarn.resource-types.resource2.maximum-allocation", - "yarn.resource-types.yarn.io/gpu.units", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.resource-types.resource1.maximum-allocation", - "yarn.resource-types.resource2.minimum-allocation", - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.resource-types.resource1.tags", - "yarn.resource-types.yarn.io/gpu.maximum-allocation", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.resource-types" - ], - "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testResourceUnitParsing": [ - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.ipc.record.factory.class", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb" - ], - "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetNodeResourcesRedefineFpgaErrors": [ - "yarn.resource-types.yarn.io/fpga.maximum-allocation", - "yarn.resource-types.yarn.io/fpga.tags", - "yarn.resource-types.yarn.io/fpga.type", - "yarn.resource-types.yarn.io/fpga.units", - "yarn.resource-types.yarn.io/fpga.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class" - ], - "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigErrors": [ - "yarn.scheduler.maximum-allocation-mb", - "yarn.resource-types.memory.units", - "yarn.resource-types.resource2.tags", - "yarn.resource-types.resource1.minimum-allocation", - "yarn.resource-types.resource2.type", - "yarn.resource-types.resource1.type", - "yarn.resource-types.memory.minimum-allocation", - "yarn.resource-types.resource1.units", - "yarn.resource-types.memory.maximum-allocation", - "yarn.resource-types.memory-mb.units", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resourcemanager.configuration.provider-class", - "yarn.scheduler.minimum-allocation-mb", - "yarn.resource-types.resource2.units", - "yarn.resource-types.resource2.maximum-allocation", - "yarn.resource-types.memory-mb.type", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.resource-types.resource1.maximum-allocation", - "yarn.resource-types.memory.tags", - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.resource-types.resource2.minimum-allocation", - "yarn.resource-types.resource1.tags", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.memory-mb.tags", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.resource-types.memory.type", - "yarn.resource-types" - ], - "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformation": [ - "yarn.scheduler.maximum-allocation-mb", - "yarn.resource-types.yarn.io/gpu.tags", - "yarn.resource-types.resource2.tags", - "yarn.resource-types.resource1.minimum-allocation", - "yarn.resource-types.resource2.type", - "yarn.resource-types.resource1.type", - "yarn.resource-types.resource1.units", - "yarn.resource-types.yarn.io/gpu.minimum-allocation", - "yarn.resource-types.yarn.io/gpu.type", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resourcemanager.configuration.provider-class", - "yarn.scheduler.minimum-allocation-mb", - "yarn.resource-types.resource2.units", - "yarn.resource-types.resource2.maximum-allocation", - "yarn.resource-types.yarn.io/gpu.units", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.resource-types.resource1.maximum-allocation", - "yarn.resource-types.resource2.minimum-allocation", - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.resource-types.resource1.tags", - "yarn.resource-types.yarn.io/gpu.maximum-allocation", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.resource-types" - ], - "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigs": [ - "yarn.scheduler.maximum-allocation-mb", - "yarn.resource-types.yarn.io/gpu.tags", - "yarn.resource-types.resource2.tags", - "yarn.resource-types.resource1.minimum-allocation", - "yarn.resource-types.resource2.type", - "yarn.resource-types.resource1.type", - "yarn.resource-types.resource1.units", - "yarn.resource-types.yarn.io/gpu.minimum-allocation", - "yarn.resource-types.yarn.io/gpu.type", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resourcemanager.configuration.provider-class", - "yarn.scheduler.minimum-allocation-mb", - "yarn.resource-types.resource2.units", - "yarn.resource-types.resource2.maximum-allocation", - "yarn.resource-types.yarn.io/gpu.units", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.resource-types.resource1.maximum-allocation", - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.resource-types.resource2.minimum-allocation", - "yarn.resource-types.resource1.tags", - "yarn.resource-types.yarn.io/gpu.maximum-allocation", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.resource-types" - ], - "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testInitializeResourcesMapErrors": [ - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.resource-types.memory.maximum-allocation", - "yarn.resource-types.vcores.tags", - "yarn.resource-types.vcores.type", - "yarn.resource-types.memory-mb.tags", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types.memory-mb.type", - "yarn.resource-types.memory.type", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.resource-types.memory.minimum-allocation", - "yarn.resource-types.memory.tags" - ], - "org.apache.hadoop.yarn.util.TestFSDownload#testDirDownload": [ - "fs.iostatistics.thread.level.enabled", - "fs.automatic.close", - "yarn.ipc.record.factory.class", - "fs.local.block.size", - "fs.option.openfile.buffer.size", - "fs.client.resolve.remote.symlinks", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "fs.AbstractFileSystem.file.impl", - "hadoop.service.shutdown.timeout", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "fs.file.impl.disable.cache", - "hadoop.security.authentication", - "file.bytes-per-checksum", - "fs.permissions.umask-mode", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "file.stream-buffer-size", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "fs.defaultFS", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "io.file.buffer.size", - "hadoop.security.token.service.use_ip", - "fs.file.impl" - ], - "org.apache.hadoop.yarn.util.TestFSDownload#testUniqueDestinationPath": [ - "fs.iostatistics.thread.level.enabled", - "fs.automatic.close", - "yarn.ipc.record.factory.class", - "fs.local.block.size", - "fs.option.openfile.buffer.size", - "fs.client.resolve.remote.symlinks", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "fs.AbstractFileSystem.file.impl", - "hadoop.service.shutdown.timeout", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "fs.file.impl.disable.cache", - "hadoop.security.authentication", - "file.bytes-per-checksum", - "fs.permissions.umask-mode", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "file.stream-buffer-size", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "fs.defaultFS", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "io.file.buffer.size", - "hadoop.security.token.service.use_ip", - "fs.file.impl" - ], - "org.apache.hadoop.yarn.util.TestFSDownload#testResourceTimestampChangeDuringDownload": [ - "fs.iostatistics.thread.level.enabled", - "fs.automatic.close", - "yarn.ipc.record.factory.class", - "fs.local.block.size", - "fs.client.resolve.remote.symlinks", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "fs.AbstractFileSystem.file.impl", - "hadoop.service.shutdown.timeout", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "fs.file.impl.disable.cache", - "hadoop.security.authentication", - "file.bytes-per-checksum", - "fs.permissions.umask-mode", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "fs.defaultFS", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "hadoop.security.token.service.use_ip", - "fs.file.impl" - ], - "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZipWithTurkishLocale": [ - "fs.iostatistics.thread.level.enabled", - "fs.automatic.close", - "yarn.ipc.record.factory.class", - "fs.local.block.size", - "fs.option.openfile.buffer.size", - "fs.client.resolve.remote.symlinks", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "fs.AbstractFileSystem.file.impl", - "hadoop.service.shutdown.timeout", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "fs.file.impl.disable.cache", - "hadoop.security.authentication", - "file.bytes-per-checksum", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "file.stream-buffer-size", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "fs.defaultFS", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "io.file.buffer.size", - "hadoop.security.token.service.use_ip", - "fs.file.impl" - ], - "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPatternJar": [ - "fs.iostatistics.thread.level.enabled", - "fs.automatic.close", - "yarn.ipc.record.factory.class", - "fs.local.block.size", - "fs.option.openfile.buffer.size", - "fs.client.resolve.remote.symlinks", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "fs.AbstractFileSystem.file.impl", - "hadoop.service.shutdown.timeout", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "fs.file.impl.disable.cache", - "hadoop.security.authentication", - "file.bytes-per-checksum", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "file.stream-buffer-size", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "fs.defaultFS", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "io.file.buffer.size", - "hadoop.security.token.service.use_ip", - "fs.file.impl" - ], - "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchive": [ - "fs.iostatistics.thread.level.enabled", - "fs.automatic.close", - "yarn.ipc.record.factory.class", - "fs.local.block.size", - "fs.option.openfile.buffer.size", - "fs.client.resolve.remote.symlinks", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "fs.AbstractFileSystem.file.impl", - "hadoop.service.shutdown.timeout", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "fs.file.impl.disable.cache", - "hadoop.security.authentication", - "file.bytes-per-checksum", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "file.stream-buffer-size", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "fs.defaultFS", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "io.file.buffer.size", - "hadoop.security.token.service.use_ip", - "fs.file.impl" - ], - "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveTgz": [ - "fs.iostatistics.thread.level.enabled", - "fs.automatic.close", - "yarn.ipc.record.factory.class", - "fs.local.block.size", - "fs.option.openfile.buffer.size", - "fs.client.resolve.remote.symlinks", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "fs.AbstractFileSystem.file.impl", - "hadoop.service.shutdown.timeout", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "fs.file.impl.disable.cache", - "hadoop.security.authentication", - "file.bytes-per-checksum", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "file.stream-buffer-size", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "fs.defaultFS", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "io.file.buffer.size", - "hadoop.security.token.service.use_ip", - "fs.file.impl" - ], - "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZip": [ - "fs.iostatistics.thread.level.enabled", - "fs.automatic.close", - "yarn.ipc.record.factory.class", - "fs.local.block.size", - "fs.option.openfile.buffer.size", - "fs.client.resolve.remote.symlinks", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "fs.AbstractFileSystem.file.impl", - "hadoop.service.shutdown.timeout", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "fs.file.impl.disable.cache", - "hadoop.security.authentication", - "file.bytes-per-checksum", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "file.stream-buffer-size", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "fs.defaultFS", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "io.file.buffer.size", - "hadoop.security.token.service.use_ip", - "fs.file.impl" - ], - "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadBadPublic": [ - "fs.iostatistics.thread.level.enabled", - "fs.automatic.close", - "yarn.ipc.record.factory.class", - "fs.local.block.size", - "fs.client.resolve.remote.symlinks", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "fs.AbstractFileSystem.file.impl", - "hadoop.service.shutdown.timeout", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "fs.file.impl.disable.cache", - "hadoop.security.authentication", - "file.bytes-per-checksum", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "fs.defaultFS", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "hadoop.security.token.service.use_ip", - "fs.file.impl" - ], - "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPublicWithStatCache": [ - "fs.automatic.close", - "yarn.ipc.record.factory.class", - "fs.local.block.size", - "fs.client.resolve.remote.symlinks", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "fs.AbstractFileSystem.file.impl", - "hadoop.service.shutdown.timeout", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "fs.file.impl.disable.cache", - "hadoop.security.authentication", - "file.bytes-per-checksum", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "fs.defaultFS", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "hadoop.security.token.service.use_ip", - "fs.file.impl" - ], - "org.apache.hadoop.yarn.util.TestFSDownload#testDownload": [ - "fs.iostatistics.thread.level.enabled", - "fs.automatic.close", - "yarn.ipc.record.factory.class", - "fs.local.block.size", - "fs.option.openfile.buffer.size", - "fs.client.resolve.remote.symlinks", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "fs.AbstractFileSystem.file.impl", - "hadoop.service.shutdown.timeout", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "fs.file.impl.disable.cache", - "hadoop.security.authentication", - "file.bytes-per-checksum", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "file.stream-buffer-size", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "fs.defaultFS", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "io.file.buffer.size", - "hadoop.security.token.service.use_ip", - "fs.file.impl" - ], - "org.apache.hadoop.yarn.util.TestRackResolverScriptBasedMapping#testScriptName": [ - "net.topology.script.number.args" - ], - "org.apache.hadoop.yarn.util.TestConverterUtils#testNodeIdWithDefaultPort": [ - "yarn.ipc.record.factory.class" - ], - "org.apache.hadoop.yarn.util.TestConverterUtils#testInvalidAppattemptId": [ - "yarn.ipc.record.factory.class" - ], - "org.apache.hadoop.yarn.util.TestConverterUtils#testConvertUrlWithNoPort": [ - "yarn.ipc.record.factory.class" - ], - "org.apache.hadoop.yarn.util.TestConverterUtils#testContainerIdWithEpoch": [ - "yarn.ipc.record.factory.class" - ], - "org.apache.hadoop.yarn.util.TestConverterUtils#testContainerId": [ - "yarn.ipc.record.factory.class" - ], - "org.apache.hadoop.yarn.util.TestConverterUtils#testContainerIdNull": [ - "yarn.ipc.record.factory.class" - ], - "org.apache.hadoop.yarn.util.TestConverterUtils#testConvertUrlWithUserinfo": [ - "yarn.ipc.record.factory.class" - ], - "org.apache.hadoop.yarn.util.TestConverterUtils#testApplicationId": [ - "yarn.ipc.record.factory.class" - ], - "org.apache.hadoop.yarn.util.TestConverterUtils#testInvalidContainerId": [ - "yarn.ipc.record.factory.class" - ], - "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccessWithPartialACLS": [ - "yarn.ipc.record.factory.class", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "hadoop.security.authentication", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "hadoop.security.token.service.use_ip" - ], - "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccess": [ - "yarn.ipc.record.factory.class", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "hadoop.security.authentication", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "hadoop.security.token.service.use_ip" - ], - "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccessWithNullACLS": [ - "yarn.ipc.record.factory.class", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "hadoop.security.authentication", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "hadoop.security.token.service.use_ip" - ], - "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testDispatcherMetricsHistogram": [ - "yarn.dispatcher.print-thread-pool.maximum-pool-size", - "yarn.dispatcher.print-thread-pool.core-pool-size", - "yarn.dispatcher.print-events-info.threshold", - "yarn.dispatcher.print-thread-pool.keep-alive-time" - ], - "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testDispatcherOnCloseIfQueueEmpty": [ - "yarn.dispatcher.print-thread-pool.core-pool-size", - "yarn.dispatcher.print-events-info.threshold", - "yarn.dispatcher.print-thread-pool.keep-alive-time", - "yarn.dispatcher.drain-events.timeout", - "yarn.dispatcher.print-thread-pool.maximum-pool-size" - ], - "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testPrintDispatcherEventDetails": [ - "yarn.dispatcher.print-thread-pool.maximum-pool-size", - "yarn.dispatcher.print-thread-pool.core-pool-size", - "yarn.dispatcher.print-thread-pool.keep-alive-time" - ], - "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testMetricsForDispatcher": [ - "yarn.dispatcher.print-thread-pool.maximum-pool-size", - "yarn.dispatcher.print-thread-pool.core-pool-size", - "yarn.dispatcher.print-events-info.threshold", - "yarn.dispatcher.print-thread-pool.keep-alive-time" - ], - "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testPrintDispatcherEventDetailsAvoidDeadLoop": [ - "yarn.dispatcher.print-thread-pool.maximum-pool-size", - "yarn.dispatcher.print-thread-pool.core-pool-size", - "yarn.dispatcher.print-thread-pool.keep-alive-time" - ], - "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testDispatchStopOnTimeout": [ - "yarn.dispatcher.print-thread-pool.core-pool-size", - "yarn.dispatcher.print-events-info.threshold", - "yarn.dispatcher.print-thread-pool.keep-alive-time", - "yarn.dispatcher.print-thread-pool.maximum-pool-size" - ], - "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testDrainDispatcherDrainEventsOnStop": [ - "yarn.dispatcher.print-thread-pool.core-pool-size", - "yarn.dispatcher.print-events-info.threshold", - "yarn.dispatcher.print-thread-pool.keep-alive-time", - "yarn.dispatcher.print-thread-pool.maximum-pool-size" - ], - "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetPassword": [ - "fs.iostatistics.thread.level.enabled", - "fs.automatic.close", - "fs.local.block.size", - "fs.client.resolve.remote.symlinks", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.service.shutdown.timeout", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "fs.file.impl.disable.cache", - "hadoop.token.files", - "hadoop.security.authentication", - "fs.permissions.umask-mode", - "file.bytes-per-checksum", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "file.stream-buffer-size", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.credstore.java-keystore-provider.password-file", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "fs.defaultFS", - "hadoop.security.credential.clear-text-fallback", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "io.file.buffer.size", - "invalid-alias", - "hadoop.security.token.service.use_ip", - "fs.file.impl" - ], - "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetHtmlEscapedURIWithQueryString": [ - "fs.iostatistics.thread.level.enabled", - "fs.automatic.close", - "fs.local.block.size", - "fs.client.resolve.remote.symlinks", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.service.shutdown.timeout", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "fs.file.impl.disable.cache", - "hadoop.token.files", - "hadoop.security.authentication", - "fs.permissions.umask-mode", - "file.bytes-per-checksum", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "file.stream-buffer-size", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.credstore.java-keystore-provider.password-file", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "fs.defaultFS", - "hadoop.security.credential.clear-text-fallback", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "io.file.buffer.size", - "invalid-alias", - "hadoop.security.token.service.use_ip", - "fs.file.impl" - ], - "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testAppendQueryParams": [ - "fs.iostatistics.thread.level.enabled", - "fs.automatic.close", - "fs.local.block.size", - "fs.client.resolve.remote.symlinks", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.service.shutdown.timeout", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "fs.file.impl.disable.cache", - "hadoop.token.files", - "hadoop.security.authentication", - "fs.permissions.umask-mode", - "file.bytes-per-checksum", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "file.stream-buffer-size", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.credstore.java-keystore-provider.password-file", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "fs.defaultFS", - "hadoop.security.credential.clear-text-fallback", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "io.file.buffer.size", - "invalid-alias", - "hadoop.security.token.service.use_ip", - "fs.file.impl" - ], - "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testLoadSslConfiguration": [ - "fs.iostatistics.thread.level.enabled", - "fs.automatic.close", - "ssl.server.keystore.type", - "fs.local.block.size", - "fs.client.resolve.remote.symlinks", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.service.shutdown.timeout", - "hadoop.kerberos.min.seconds.before.relogin", - "ssl.server.truststore.type", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "fs.file.impl.disable.cache", - "hadoop.token.files", - "hadoop.security.authentication", - "fs.permissions.umask-mode", - "file.bytes-per-checksum", - "hadoop.security.groups.cache.background.reload", - "ssl.server.truststore.location", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "file.stream-buffer-size", - "hadoop.security.groups.negative-cache.secs", - "ssl.server.exclude.cipher.list", - "hadoop.security.credstore.java-keystore-provider.password-file", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "ssl.server.keystore.location", - "fs.defaultFS", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "io.file.buffer.size", - "hadoop.security.token.service.use_ip", - "fs.file.impl" - ], - "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#TestRMWebAppURLRemoteAndLocal": [ - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.security.resolver.impl", - "hadoop.security.token.service.use_ip", - "yarn.http.policy" - ], - "org.apache.hadoop.yarn.webapp.util.TestWebServiceClient#testGetWebServiceClient": [ - "ssl.client.truststore.type", - "hadoop.ssl.keystores.factory.class", - "ssl.client.stores.reload.interval", - "ssl.server.exclude.cipher.list", - "hadoop.ssl.enabled.protocols", - "hadoop.ssl.hostname.verifier", - "ssl.client.truststore.location", - "hadoop.ssl.client.conf", - "ssl.client.keystore.type" - ], - "org.apache.hadoop.yarn.webapp.util.TestWebServiceClient#testCreateClient": [ - "hadoop.security.credential.provider.path", - "ssl.client.truststore.type", - "ssl.{0}.stores.reload.interval", - "ssl.server.keystore.type", - "hadoop.http.acceptor.count", - "hadoop.http.socket.backlog.size", - "ssl.client.keystore.type", - "hadoop.http.temp.dir", - "hadoop.http.max.response.header.size", - "hadoop.http.max.threads", - "hadoop.http.selector.count", - "hadoop.ssl.enabled.protocols", - "ssl.server.truststore.type", - "hadoop.http.filter.initializers", - "hadoop.http.sni.host.check.enabled", - "ssl.client.stores.reload.interval", - "ssl.server.exclude.cipher.list", - "hadoop.prometheus.endpoint.enabled", - "hadoop.jetty.logs.serve.aliases", - "hadoop.http.logs.enabled", - "hadoop.http.idle_timeout.ms", - "hadoop.http.metrics.enabled", - "hadoop.ssl.keystores.factory.class", - "hadoop.security.credential.clear-text-fallback", - "hadoop.http.max.request.header.size" - ], - "org.apache.hadoop.yarn.webapp.TestWebApp#testYARNWebAppContext": [ - "hadoop.http.authentication.kerberos.principal", - "hadoop.http.authentication.kerberos.keytab", - "hadoop.http.acceptor.count", - "hadoop.http.socket.backlog.size", - "hadoop.http.authentication.simple.anonymous.allowed", - "hadoop.http.temp.dir", - "hadoop.http.authentication.signature.secret.file", - "yarn.http.policy", - "hadoop.security.authorization", - "hadoop.http.max.response.header.size", - "hadoop.security.groups.cache.secs", - "hadoop.http.max.threads", - "hadoop.http.selector.count", - "hadoop.http.filter.initializers", - "hadoop.http.authentication.token.validity", - "hadoop.security.groups.cache.background.reload", - "hadoop.http.sni.host.check.enabled", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.negative-cache.secs", - "dfs.web.ugi", - "hadoop.prometheus.endpoint.enabled", - "hadoop.jetty.logs.serve.aliases", - "hadoop.security.resolver.impl", - "hadoop.http.logs.enabled", - "hadoop.http.idle_timeout.ms", - "hadoop.http.authentication.type", - "hadoop.http.metrics.enabled", - "hadoop.security.groups.cache.background.reload.threads", - "yarn.admin.acl", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.user.group.static.mapping.overrides", - "hadoop.http.max.request.header.size", - "hadoop.security.group.mapping", - "hadoop.http.staticuser.user", - "hadoop.security.token.service.use_ip" - ], - "org.apache.hadoop.yarn.webapp.TestWebApp#testDefaultRoutes": [ - "hadoop.http.authentication.kerberos.principal", - "hadoop.http.authentication.kerberos.keytab", - "hadoop.http.acceptor.count", - "hadoop.http.socket.backlog.size", - "hadoop.http.authentication.simple.anonymous.allowed", - "hadoop.http.temp.dir", - "hadoop.http.authentication.signature.secret.file", - "yarn.http.policy", - "hadoop.http.max.response.header.size", - "hadoop.security.groups.cache.secs", - "hadoop.http.max.threads", - "hadoop.http.selector.count", - "hadoop.http.filter.initializers", - "hadoop.http.authentication.token.validity", - "hadoop.security.groups.cache.background.reload", - "hadoop.http.sni.host.check.enabled", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.negative-cache.secs", - "dfs.web.ugi", - "hadoop.prometheus.endpoint.enabled", - "hadoop.jetty.logs.serve.aliases", - "hadoop.security.resolver.impl", - "hadoop.http.logs.enabled", - "hadoop.http.idle_timeout.ms", - "hadoop.http.authentication.type", - "hadoop.http.metrics.enabled", - "hadoop.security.groups.cache.background.reload.threads", - "yarn.admin.acl", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.user.group.static.mapping.overrides", - "hadoop.http.max.request.header.size", - "hadoop.security.group.mapping", - "hadoop.http.staticuser.user", - "hadoop.security.token.service.use_ip" - ], - "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithBindAddressNonZeroPort": [ - "hadoop.http.authentication.kerberos.principal", - "hadoop.http.authentication.kerberos.keytab", - "hadoop.http.acceptor.count", - "hadoop.http.socket.backlog.size", - "hadoop.http.authentication.simple.anonymous.allowed", - "hadoop.http.temp.dir", - "hadoop.http.authentication.signature.secret.file", - "yarn.http.policy", - "hadoop.http.max.response.header.size", - "hadoop.security.groups.cache.secs", - "hadoop.http.max.threads", - "hadoop.http.selector.count", - "hadoop.http.filter.initializers", - "hadoop.http.authentication.token.validity", - "hadoop.security.groups.cache.background.reload", - "hadoop.http.sni.host.check.enabled", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.negative-cache.secs", - "dfs.web.ugi", - "hadoop.prometheus.endpoint.enabled", - "hadoop.jetty.logs.serve.aliases", - "hadoop.security.resolver.impl", - "hadoop.http.logs.enabled", - "hadoop.http.idle_timeout.ms", - "hadoop.http.authentication.type", - "hadoop.http.metrics.enabled", - "hadoop.security.groups.cache.background.reload.threads", - "yarn.admin.acl", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.user.group.static.mapping.overrides", - "hadoop.http.max.request.header.size", - "hadoop.security.group.mapping", - "hadoop.http.staticuser.user", - "hadoop.security.token.service.use_ip" - ], - "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithPort": [ - "hadoop.http.authentication.kerberos.principal", - "hadoop.http.authentication.kerberos.keytab", - "hadoop.http.acceptor.count", - "hadoop.http.socket.backlog.size", - "hadoop.http.authentication.simple.anonymous.allowed", - "hadoop.http.temp.dir", - "hadoop.http.authentication.signature.secret.file", - "yarn.http.policy", - "hadoop.http.max.response.header.size", - "hadoop.security.groups.cache.secs", - "hadoop.http.max.threads", - "hadoop.http.selector.count", - "hadoop.http.filter.initializers", - "hadoop.http.authentication.token.validity", - "hadoop.security.groups.cache.background.reload", - "hadoop.http.sni.host.check.enabled", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.negative-cache.secs", - "dfs.web.ugi", - "hadoop.prometheus.endpoint.enabled", - "hadoop.jetty.logs.serve.aliases", - "hadoop.security.resolver.impl", - "hadoop.http.logs.enabled", - "hadoop.http.idle_timeout.ms", - "hadoop.http.authentication.type", - "hadoop.http.metrics.enabled", - "hadoop.security.groups.cache.background.reload.threads", - "yarn.admin.acl", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.user.group.static.mapping.overrides", - "hadoop.http.max.request.header.size", - "hadoop.security.group.mapping", - "hadoop.http.staticuser.user", - "hadoop.security.token.service.use_ip" - ], - "org.apache.hadoop.yarn.webapp.TestWebApp#testEncodedUrl": [ - "hadoop.http.authentication.kerberos.principal", - "hadoop.http.authentication.kerberos.keytab", - "hadoop.http.acceptor.count", - "hadoop.http.socket.backlog.size", - "hadoop.http.authentication.simple.anonymous.allowed", - "hadoop.http.temp.dir", - "hadoop.http.authentication.signature.secret.file", - "yarn.http.policy", - "hadoop.http.max.response.header.size", - "hadoop.security.groups.cache.secs", - "hadoop.http.max.threads", - "hadoop.http.selector.count", - "hadoop.http.filter.initializers", - "hadoop.http.authentication.token.validity", - "hadoop.security.groups.cache.background.reload", - "hadoop.http.sni.host.check.enabled", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.negative-cache.secs", - "dfs.web.ugi", - "hadoop.prometheus.endpoint.enabled", - "hadoop.jetty.logs.serve.aliases", - "hadoop.security.resolver.impl", - "hadoop.http.logs.enabled", - "hadoop.http.idle_timeout.ms", - "hadoop.http.authentication.type", - "hadoop.http.metrics.enabled", - "hadoop.security.groups.cache.background.reload.threads", - "yarn.admin.acl", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.user.group.static.mapping.overrides", - "hadoop.http.max.request.header.size", - "hadoop.security.group.mapping", - "hadoop.http.staticuser.user", - "hadoop.security.token.service.use_ip" - ], - "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithNonZeroPort": [ - "hadoop.http.authentication.kerberos.principal", - "hadoop.http.authentication.kerberos.keytab", - "hadoop.http.acceptor.count", - "hadoop.http.socket.backlog.size", - "hadoop.http.authentication.simple.anonymous.allowed", - "hadoop.http.temp.dir", - "hadoop.http.authentication.signature.secret.file", - "yarn.http.policy", - "hadoop.http.max.response.header.size", - "hadoop.security.groups.cache.secs", - "hadoop.http.max.threads", - "hadoop.http.selector.count", - "hadoop.http.filter.initializers", - "hadoop.http.authentication.token.validity", - "hadoop.security.groups.cache.background.reload", - "hadoop.http.sni.host.check.enabled", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.negative-cache.secs", - "dfs.web.ugi", - "hadoop.prometheus.endpoint.enabled", - "hadoop.jetty.logs.serve.aliases", - "hadoop.security.resolver.impl", - "hadoop.http.logs.enabled", - "hadoop.http.idle_timeout.ms", - "hadoop.http.authentication.type", - "hadoop.http.metrics.enabled", - "hadoop.security.groups.cache.background.reload.threads", - "yarn.admin.acl", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.user.group.static.mapping.overrides", - "hadoop.http.max.request.header.size", - "hadoop.security.group.mapping", - "hadoop.http.staticuser.user", - "hadoop.security.token.service.use_ip" - ], - "org.apache.hadoop.yarn.webapp.TestWebApp#testPortRanges": [ - "hadoop.http.authentication.kerberos.principal", - "hadoop.http.authentication.kerberos.keytab", - "hadoop.http.acceptor.count", - "hadoop.http.socket.backlog.size", - "hadoop.http.authentication.simple.anonymous.allowed", - "hadoop.http.temp.dir", - "hadoop.http.authentication.signature.secret.file", - "yarn.http.policy", - "hadoop.http.max.response.header.size", - "hadoop.security.groups.cache.secs", - "hadoop.http.max.threads", - "hadoop.http.selector.count", - "hadoop.http.filter.initializers", - "hadoop.http.authentication.token.validity", - "hadoop.security.groups.cache.background.reload", - "hadoop.http.sni.host.check.enabled", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.negative-cache.secs", - "dfs.web.ugi", - "hadoop.prometheus.endpoint.enabled", - "hadoop.jetty.logs.serve.aliases", - "hadoop.security.resolver.impl", - "hadoop.http.logs.enabled", - "hadoop.http.idle_timeout.ms", - "hadoop.http.authentication.type", - "hadoop.http.metrics.enabled", - "hadoop.security.groups.cache.background.reload.threads", - "yarn.admin.acl", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.user.group.static.mapping.overrides", - "hadoop.http.max.request.header.size", - "hadoop.security.group.mapping", - "hadoop.http.staticuser.user", - "hadoop.security.token.service.use_ip" - ], - "org.apache.hadoop.yarn.webapp.TestWebApp#testServePathsNoName": [ - "hadoop.http.authentication.kerberos.principal", - "hadoop.http.authentication.kerberos.keytab", - "hadoop.http.acceptor.count", - "hadoop.http.socket.backlog.size", - "hadoop.http.authentication.simple.anonymous.allowed", - "hadoop.http.temp.dir", - "hadoop.http.authentication.signature.secret.file", - "yarn.http.policy", - "hadoop.http.max.response.header.size", - "hadoop.security.groups.cache.secs", - "hadoop.http.max.threads", - "hadoop.http.selector.count", - "hadoop.http.filter.initializers", - "hadoop.http.authentication.token.validity", - "hadoop.security.groups.cache.background.reload", - "hadoop.http.sni.host.check.enabled", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.negative-cache.secs", - "dfs.web.ugi", - "hadoop.prometheus.endpoint.enabled", - "hadoop.jetty.logs.serve.aliases", - "hadoop.security.resolver.impl", - "hadoop.http.logs.enabled", - "hadoop.http.idle_timeout.ms", - "hadoop.http.authentication.type", - "hadoop.http.metrics.enabled", - "hadoop.security.groups.cache.background.reload.threads", - "yarn.admin.acl", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.user.group.static.mapping.overrides", - "hadoop.http.max.request.header.size", - "hadoop.security.group.mapping", - "hadoop.http.staticuser.user", - "hadoop.security.token.service.use_ip" - ], - "org.apache.hadoop.yarn.webapp.TestWebApp#testCreate": [ - "hadoop.http.authentication.kerberos.principal", - "hadoop.http.authentication.kerberos.keytab", - "hadoop.http.acceptor.count", - "hadoop.http.socket.backlog.size", - "hadoop.http.authentication.simple.anonymous.allowed", - "hadoop.http.temp.dir", - "hadoop.http.authentication.signature.secret.file", - "yarn.http.policy", - "hadoop.http.max.response.header.size", - "hadoop.security.groups.cache.secs", - "hadoop.http.max.threads", - "hadoop.http.selector.count", - "hadoop.http.filter.initializers", - "hadoop.http.authentication.token.validity", - "hadoop.security.groups.cache.background.reload", - "hadoop.http.sni.host.check.enabled", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.negative-cache.secs", - "dfs.web.ugi", - "hadoop.prometheus.endpoint.enabled", - "hadoop.jetty.logs.serve.aliases", - "hadoop.security.resolver.impl", - "hadoop.http.logs.enabled", - "hadoop.http.idle_timeout.ms", - "hadoop.http.authentication.type", - "hadoop.http.metrics.enabled", - "hadoop.security.groups.cache.background.reload.threads", - "yarn.admin.acl", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.user.group.static.mapping.overrides", - "hadoop.http.max.request.header.size", - "hadoop.security.group.mapping", - "hadoop.http.staticuser.user", - "hadoop.security.token.service.use_ip" - ], - "org.apache.hadoop.yarn.webapp.TestWebApp#testCustomRoutes": [ - "hadoop.http.authentication.kerberos.principal", - "hadoop.http.authentication.kerberos.keytab", - "hadoop.http.acceptor.count", - "hadoop.http.socket.backlog.size", - "hadoop.http.authentication.simple.anonymous.allowed", - "hadoop.http.temp.dir", - "hadoop.http.authentication.signature.secret.file", - "yarn.http.policy", - "hadoop.http.max.response.header.size", - "hadoop.security.groups.cache.secs", - "hadoop.http.max.threads", - "hadoop.http.selector.count", - "hadoop.http.filter.initializers", - "hadoop.http.authentication.token.validity", - "hadoop.security.groups.cache.background.reload", - "hadoop.http.sni.host.check.enabled", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.negative-cache.secs", - "dfs.web.ugi", - "hadoop.prometheus.endpoint.enabled", - "hadoop.jetty.logs.serve.aliases", - "hadoop.security.resolver.impl", - "hadoop.http.logs.enabled", - "hadoop.http.idle_timeout.ms", - "hadoop.http.authentication.type", - "hadoop.http.metrics.enabled", - "hadoop.security.groups.cache.background.reload.threads", - "yarn.admin.acl", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.user.group.static.mapping.overrides", - "hadoop.http.max.request.header.size", - "hadoop.security.group.mapping", - "hadoop.http.staticuser.user", - "hadoop.security.token.service.use_ip" - ], - "org.apache.hadoop.yarn.webapp.TestWebApp#testServePaths": [ - "hadoop.http.authentication.kerberos.principal", - "hadoop.http.authentication.kerberos.keytab", - "hadoop.http.acceptor.count", - "hadoop.http.socket.backlog.size", - "hadoop.http.authentication.simple.anonymous.allowed", - "hadoop.http.temp.dir", - "hadoop.http.authentication.signature.secret.file", - "yarn.http.policy", - "hadoop.http.max.response.header.size", - "hadoop.security.groups.cache.secs", - "hadoop.http.max.threads", - "hadoop.http.selector.count", - "hadoop.http.filter.initializers", - "hadoop.http.authentication.token.validity", - "hadoop.security.groups.cache.background.reload", - "hadoop.http.sni.host.check.enabled", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.negative-cache.secs", - "dfs.web.ugi", - "hadoop.prometheus.endpoint.enabled", - "hadoop.jetty.logs.serve.aliases", - "hadoop.security.resolver.impl", - "hadoop.http.logs.enabled", - "hadoop.http.idle_timeout.ms", - "hadoop.http.authentication.type", - "hadoop.http.metrics.enabled", - "hadoop.security.groups.cache.background.reload.threads", - "yarn.admin.acl", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.user.group.static.mapping.overrides", - "hadoop.http.max.request.header.size", - "hadoop.security.group.mapping", - "hadoop.http.staticuser.user", - "hadoop.security.token.service.use_ip" - ], - "org.apache.hadoop.yarn.webapp.TestWebApp#testRobotsText": [ - "hadoop.http.authentication.kerberos.principal", - "hadoop.http.authentication.kerberos.keytab", - "hadoop.http.acceptor.count", - "hadoop.http.socket.backlog.size", - "hadoop.http.authentication.simple.anonymous.allowed", - "hadoop.http.temp.dir", - "hadoop.http.authentication.signature.secret.file", - "yarn.http.policy", - "hadoop.http.max.response.header.size", - "hadoop.security.groups.cache.secs", - "hadoop.http.max.threads", - "hadoop.http.selector.count", - "hadoop.http.filter.initializers", - "hadoop.http.authentication.token.validity", - "hadoop.security.groups.cache.background.reload", - "hadoop.http.sni.host.check.enabled", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.negative-cache.secs", - "dfs.web.ugi", - "hadoop.prometheus.endpoint.enabled", - "hadoop.jetty.logs.serve.aliases", - "hadoop.security.resolver.impl", - "hadoop.http.logs.enabled", - "hadoop.http.idle_timeout.ms", - "hadoop.http.authentication.type", - "hadoop.http.metrics.enabled", - "hadoop.security.groups.cache.background.reload.threads", - "yarn.admin.acl", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.user.group.static.mapping.overrides", - "hadoop.http.max.request.header.size", - "hadoop.security.group.mapping", - "hadoop.http.staticuser.user", - "hadoop.security.token.service.use_ip" - ], - "org.apache.hadoop.yarn.TestYarnUncaughtExceptionHandler#testUncaughtExceptionHandlerWithError": [ - "hadoop.service.shutdown.timeout" - ], - "org.apache.hadoop.yarn.TestYarnUncaughtExceptionHandler#testUncaughtExceptionHandlerWithRuntimeException": [ - "hadoop.service.shutdown.timeout" - ], - "org.apache.hadoop.yarn.TestYarnUncaughtExceptionHandler#testUncaughtExceptionHandlerWithOutOfMemoryError": [ - "hadoop.service.shutdown.timeout" - ], - "org.apache.hadoop.yarn.TestRPCFactories#test": [ - "ipc.0.backoff.enable", - "ipc.client.tcpnodelay", - "ipc.server.metrics.update.runner.interval", - "ipc.client.connect.max.retries.on.sasl", - "ipc.server.reuseaddr", - "ipc.client.low-latency", - "ipc.0.callqueue.capacity.weights", - "ipc.client.idlethreshold", - "ipc.maximum.data.length", - "ipc.0.faircallqueue.priority-levels", - "ipc.client.connect.timeout", - "hadoop.rpc.socket.factory.class.default", - "ipc.server.tcpnodelay", - "ipc.0.callqueue.overflow.trigger.failover", - "hadoop.security.authorization", - "ipc.0.scheduler.impl", - "ipc.client.rpc-timeout.ms", - "hadoop.security.groups.cache.secs", - "ipc.client.fallback-to-simple-auth-allowed", - "hadoop.user.group.metrics.percentiles.intervals", - "ipc.server.max.response.size", - "ipc.0.scheduler.priority.levels", - "ipc.client.connection.idle-scan-interval.ms", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "ipc.scheduler.impl", - "ipc.client.connect.retry.interval", - "ipc.client.connect.max.retries.on.timeouts", - "hadoop.security.authentication", - "ipc.ping.interval", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "ipc.server.read.connection-queue.size", - "hadoop.security.groups.cache.warn.after.ms", - "ipc.client.bind.wildcard.addr", - "ipc.0.callqueue.impl", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.token.service.use_ip", - "ipc.client.async.calls.max", - "hadoop.security.resolver.impl", - "ipc.backoff.enable", - "ipc.server.max.connections", - "ipc.client.connect.max.retries", - "ipc.client.ping", - "ipc.server.log.slow.rpc", - "ipc.server.read.threadpool.size", - "ipc.server.handler.queue.size", - "ipc.callqueue.impl", - "ipc.client.kill.max", - "hadoop.security.groups.cache.background.reload.threads", - "ipc.server.listen.queue.size", - "hadoop.security.auth_to_local", - "ipc.client.connection.maxidletime", - "rpc.metrics.timeunit", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "rpc.metrics.percentiles.intervals", - "ipc.server.purge.interval" - ], - "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout": [ - "ipc.server.metrics.update.runner.interval", - "ipc.0.callqueue.overflow.trigger.failover", - "hadoop.security.authorization", - "ipc.server.max.response.size", - "hadoop.kerberos.min.seconds.before.relogin", - "ipc.client.connect.max.retries.on.timeouts", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "yarn.resourcemanager.configuration.provider-class", - "hadoop.security.authentication", - "yarn.scheduler.minimum-allocation-mb", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "ipc.backoff.enable", - "ipc.server.max.connections", - "ipc.client.ping", - "ipc.server.log.slow.rpc", - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.resource-types", - "hadoop.security.token.service.use_ip", - "ipc.server.purge.interval", - "ipc.client.low-latency", - "hadoop.rpc.socket.factory.class.default", - "ipc.server.tcpnodelay", - "ipc.client.fallback-to-simple-auth-allowed", - "hadoop.user.group.metrics.percentiles.intervals", - "ipc.ping.interval", - "ipc.0.callqueue.impl", - "hadoop.security.groups.cache.background.reload.threads", - "ipc.client.connection.maxidletime", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "yarn.ipc.record.factory.class", - "ipc.0.callqueue.capacity.weights", - "ipc.0.faircallqueue.priority-levels", - "ipc.client.connect.timeout", - "ipc.0.scheduler.impl", - "ipc.client.connect.retry.interval", - "ipc.scheduler.impl", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.ipc.server.factory.class", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "ipc.client.async.calls.max", - "ipc.client.connect.max.retries", - "yarn.resource-types.vcores.maximum-allocation", - "ipc.server.handler.queue.size", - "ipc.callqueue.impl", - "ipc.client.kill.max", - "yarn.scheduler.maximum-allocation-vcores", - "hadoop.security.auth_to_local", - "yarn.resource-types.memory-mb.minimum-allocation", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "rpc.metrics.percentiles.intervals", - "ipc.0.backoff.enable", - "ipc.client.tcpnodelay", - "yarn.scheduler.maximum-allocation-mb", - "ipc.client.connect.max.retries.on.sasl", - "ipc.server.reuseaddr", - "ipc.client.idlethreshold", - "ipc.maximum.data.length", - "hadoop.security.groups.cache.secs", - "ipc.0.scheduler.priority.levels", - "ipc.client.connection.idle-scan-interval.ms", - "yarn.scheduler.minimum-allocation-vcores", - "ipc.client.bind.wildcard.addr", - "ipc.server.read.connection-queue.size", - "ipc.maximum.response.length", - "yarn.ipc.client.factory.class", - "ipc.server.read.threadpool.size", - "ipc.server.listen.queue.size", - "rpc.metrics.timeunit", - "hadoop.security.group.mapping" - ], - "org.apache.hadoop.yarn.nodelabels.TestNodeLabelUtil#testIsNodeAttributesEquals": [ - "yarn.ipc.record.factory.class" - ], - "org.apache.hadoop.yarn.nodelabels.TestNodeLabelUtil#testAttributeValueAddition": [ - "yarn.ipc.record.factory.class" - ], - "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddInvalidlabel": [ - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.ipc.record.factory.class", - "yarn.node-labels.configuration-type", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb" - ], - "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddlabelWithExclusivity": [ - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.ipc.record.factory.class", - "yarn.node-labels.configuration-type", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb" - ], - "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testReplaceLabelsOnHostsShouldUpdateNodesBelongTo": [ - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.ipc.record.factory.class", - "yarn.node-labels.configuration-type", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb" - ], - "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsToNodes": [ - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.ipc.record.factory.class", - "yarn.node-labels.configuration-type", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb" - ], - "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testGetNodeLabelsInfo": [ - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.ipc.record.factory.class", - "yarn.node-labels.configuration-type", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb" - ], - "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testTrimLabelsWhenAddRemoveNodeLabels": [ - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.ipc.record.factory.class", - "yarn.node-labels.configuration-type", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb" - ], - "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddRemovelabel": [ - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.ipc.record.factory.class", - "yarn.node-labels.configuration-type", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb" - ], - "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddlabelWithCase": [ - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.ipc.record.factory.class", - "yarn.node-labels.configuration-type", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb" - ], - "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testTrimLabelsWhenModifyLabelsOnNodes": [ - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.ipc.record.factory.class", - "yarn.node-labels.configuration-type", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb" - ], - "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsToNodesForSelectedLabels": [ - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.ipc.record.factory.class", - "yarn.node-labels.configuration-type", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb" - ], - "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testRemoveNodeLabelsInfo": [ - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.ipc.record.factory.class", - "yarn.node-labels.configuration-type", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb" - ], - "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testRemovelabelWithNodes": [ - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.ipc.record.factory.class", - "yarn.node-labels.configuration-type", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb" - ], - "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testNoMoreThanOneLabelExistedInOneHost": [ - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.ipc.record.factory.class", - "yarn.node-labels.configuration-type", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb" - ], - "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsInfoToNodes": [ - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.ipc.record.factory.class", - "yarn.node-labels.configuration-type", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb" - ], - "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddReplaceRemoveLabelsOnNodes": [ - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.ipc.record.factory.class", - "yarn.node-labels.configuration-type", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb" - ], - "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testNodeLabelsDisabled": [ - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.ipc.record.factory.class", - "yarn.node-labels.configuration-type", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb" - ], - "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testReplaceLabelsOnNodeInDistributedMode": [ - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.ipc.record.factory.class", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb" - ], - "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[0]": [ - "fs.iostatistics.thread.level.enabled", - "yarn.scheduler.maximum-allocation-mb", - "fs.automatic.close", - "yarn.ipc.record.factory.class", - "fs.local.block.size", - "fs.client.resolve.remote.symlinks", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.service.shutdown.timeout", - "hadoop.kerberos.min.seconds.before.relogin", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "yarn.resourcemanager.configuration.provider-class", - "hadoop.token.files", - "hadoop.security.authentication", - "yarn.scheduler.minimum-allocation-mb", - "fs.file.impl.disable.cache", - "file.bytes-per-checksum", - "fs.permissions.umask-mode", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.resource-types.memory-mb.maximum-allocation", - "fs.defaultFS", - "yarn.scheduler.maximum-allocation-vcores", - "hadoop.security.groups.cache.background.reload.threads", - "yarn.fs-store.file.replication", - "hadoop.security.auth_to_local", - "yarn.resource-types.memory-mb.minimum-allocation", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "yarn.resource-types", - "hadoop.security.group.mapping", - "io.file.buffer.size", - "hadoop.security.token.service.use_ip", - "fs.file.impl" - ], - "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[0]": [ - "fs.iostatistics.thread.level.enabled", - "yarn.scheduler.maximum-allocation-mb", - "fs.automatic.close", - "yarn.ipc.record.factory.class", - "fs.local.block.size", - "fs.client.resolve.remote.symlinks", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.service.shutdown.timeout", - "hadoop.kerberos.min.seconds.before.relogin", - "yarn.node-labels.configuration-type", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "yarn.resourcemanager.configuration.provider-class", - "hadoop.token.files", - "hadoop.security.authentication", - "yarn.scheduler.minimum-allocation-mb", - "fs.file.impl.disable.cache", - "file.bytes-per-checksum", - "fs.permissions.umask-mode", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.resource-types.memory-mb.maximum-allocation", - "fs.defaultFS", - "yarn.scheduler.maximum-allocation-vcores", - "hadoop.security.groups.cache.background.reload.threads", - "yarn.fs-store.file.replication", - "hadoop.security.auth_to_local", - "yarn.resource-types.memory-mb.minimum-allocation", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "yarn.resource-types", - "hadoop.security.group.mapping", - "io.file.buffer.size", - "hadoop.security.token.service.use_ip", - "fs.file.impl" - ], - "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[0]": [ - "fs.iostatistics.thread.level.enabled", - "yarn.scheduler.maximum-allocation-mb", - "fs.automatic.close", - "yarn.ipc.record.factory.class", - "fs.local.block.size", - "fs.client.resolve.remote.symlinks", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.service.shutdown.timeout", - "hadoop.kerberos.min.seconds.before.relogin", - "yarn.node-labels.configuration-type", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "yarn.resourcemanager.configuration.provider-class", - "hadoop.token.files", - "hadoop.security.authentication", - "yarn.scheduler.minimum-allocation-mb", - "fs.file.impl.disable.cache", - "file.bytes-per-checksum", - "fs.permissions.umask-mode", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.resource-types.memory-mb.maximum-allocation", - "fs.defaultFS", - "yarn.scheduler.maximum-allocation-vcores", - "hadoop.security.groups.cache.background.reload.threads", - "yarn.fs-store.file.replication", - "hadoop.security.auth_to_local", - "yarn.resource-types.memory-mb.minimum-allocation", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "yarn.resource-types", - "hadoop.security.group.mapping", - "io.file.buffer.size", - "hadoop.security.token.service.use_ip", - "fs.file.impl" - ], - "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[0]": [ - "fs.iostatistics.thread.level.enabled", - "yarn.scheduler.maximum-allocation-mb", - "fs.automatic.close", - "yarn.ipc.record.factory.class", - "fs.local.block.size", - "fs.client.resolve.remote.symlinks", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.service.shutdown.timeout", - "hadoop.kerberos.min.seconds.before.relogin", - "yarn.node-labels.configuration-type", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "yarn.resourcemanager.configuration.provider-class", - "hadoop.token.files", - "hadoop.security.authentication", - "yarn.scheduler.minimum-allocation-mb", - "fs.file.impl.disable.cache", - "file.bytes-per-checksum", - "fs.permissions.umask-mode", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.resource-types.memory-mb.maximum-allocation", - "fs.defaultFS", - "yarn.scheduler.maximum-allocation-vcores", - "hadoop.security.groups.cache.background.reload.threads", - "yarn.fs-store.file.replication", - "hadoop.security.auth_to_local", - "yarn.resource-types.memory-mb.minimum-allocation", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "yarn.resource-types", - "hadoop.security.group.mapping", - "io.file.buffer.size", - "hadoop.security.token.service.use_ip", - "fs.file.impl" - ], - "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[0]": [ - "fs.iostatistics.thread.level.enabled", - "yarn.scheduler.maximum-allocation-mb", - "fs.automatic.close", - "yarn.ipc.record.factory.class", - "fs.local.block.size", - "fs.client.resolve.remote.symlinks", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.service.shutdown.timeout", - "hadoop.kerberos.min.seconds.before.relogin", - "yarn.node-labels.configuration-type", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "yarn.resourcemanager.configuration.provider-class", - "hadoop.token.files", - "hadoop.security.authentication", - "yarn.scheduler.minimum-allocation-mb", - "fs.file.impl.disable.cache", - "file.bytes-per-checksum", - "fs.permissions.umask-mode", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.resource-types.memory-mb.maximum-allocation", - "fs.defaultFS", - "yarn.scheduler.maximum-allocation-vcores", - "hadoop.security.groups.cache.background.reload.threads", - "yarn.fs-store.file.replication", - "hadoop.security.auth_to_local", - "yarn.resource-types.memory-mb.minimum-allocation", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "yarn.resource-types", - "hadoop.security.group.mapping", - "io.file.buffer.size", - "hadoop.security.token.service.use_ip", - "fs.file.impl" - ], - "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[1]": [ - "fs.iostatistics.thread.level.enabled", - "yarn.scheduler.maximum-allocation-mb", - "fs.automatic.close", - "yarn.ipc.record.factory.class", - "fs.local.block.size", - "fs.client.resolve.remote.symlinks", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.service.shutdown.timeout", - "hadoop.kerberos.min.seconds.before.relogin", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "yarn.resourcemanager.configuration.provider-class", - "hadoop.token.files", - "hadoop.security.authentication", - "yarn.scheduler.minimum-allocation-mb", - "fs.file.impl.disable.cache", - "file.bytes-per-checksum", - "fs.permissions.umask-mode", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.resource-types.memory-mb.maximum-allocation", - "fs.defaultFS", - "yarn.scheduler.maximum-allocation-vcores", - "hadoop.security.groups.cache.background.reload.threads", - "yarn.fs-store.file.replication", - "hadoop.security.auth_to_local", - "yarn.resource-types.memory-mb.minimum-allocation", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "yarn.resource-types", - "hadoop.security.group.mapping", - "io.file.buffer.size", - "hadoop.security.token.service.use_ip", - "fs.file.impl" - ], - "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[1]": [ - "yarn.scheduler.maximum-allocation-mb", - "fs.automatic.close", - "yarn.ipc.record.factory.class", - "fs.local.block.size", - "fs.client.resolve.remote.symlinks", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.service.shutdown.timeout", - "hadoop.kerberos.min.seconds.before.relogin", - "yarn.node-labels.configuration-type", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "yarn.resourcemanager.configuration.provider-class", - "hadoop.token.files", - "hadoop.security.authentication", - "yarn.scheduler.minimum-allocation-mb", - "fs.file.impl.disable.cache", - "file.bytes-per-checksum", - "fs.permissions.umask-mode", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.resource-types.memory-mb.maximum-allocation", - "fs.defaultFS", - "yarn.scheduler.maximum-allocation-vcores", - "hadoop.security.groups.cache.background.reload.threads", - "yarn.fs-store.file.replication", - "hadoop.security.auth_to_local", - "yarn.resource-types.memory-mb.minimum-allocation", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "yarn.resource-types", - "hadoop.security.group.mapping", - "hadoop.security.token.service.use_ip", - "fs.file.impl" - ], - "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[1]": [ - "fs.iostatistics.thread.level.enabled", - "yarn.scheduler.maximum-allocation-mb", - "fs.automatic.close", - "yarn.ipc.record.factory.class", - "fs.local.block.size", - "fs.client.resolve.remote.symlinks", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.service.shutdown.timeout", - "hadoop.kerberos.min.seconds.before.relogin", - "yarn.node-labels.configuration-type", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "yarn.resourcemanager.configuration.provider-class", - "hadoop.token.files", - "hadoop.security.authentication", - "yarn.scheduler.minimum-allocation-mb", - "fs.file.impl.disable.cache", - "file.bytes-per-checksum", - "fs.permissions.umask-mode", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.resource-types.memory-mb.maximum-allocation", - "fs.defaultFS", - "yarn.scheduler.maximum-allocation-vcores", - "hadoop.security.groups.cache.background.reload.threads", - "yarn.fs-store.file.replication", - "hadoop.security.auth_to_local", - "yarn.resource-types.memory-mb.minimum-allocation", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "yarn.resource-types", - "hadoop.security.group.mapping", - "io.file.buffer.size", - "hadoop.security.token.service.use_ip", - "fs.file.impl" - ], - "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[1]": [ - "fs.iostatistics.thread.level.enabled", - "yarn.scheduler.maximum-allocation-mb", - "fs.automatic.close", - "yarn.ipc.record.factory.class", - "fs.local.block.size", - "fs.client.resolve.remote.symlinks", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.service.shutdown.timeout", - "hadoop.kerberos.min.seconds.before.relogin", - "yarn.node-labels.configuration-type", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "yarn.resourcemanager.configuration.provider-class", - "hadoop.token.files", - "hadoop.security.authentication", - "yarn.scheduler.minimum-allocation-mb", - "fs.file.impl.disable.cache", - "file.bytes-per-checksum", - "fs.permissions.umask-mode", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.resource-types.memory-mb.maximum-allocation", - "fs.defaultFS", - "yarn.scheduler.maximum-allocation-vcores", - "hadoop.security.groups.cache.background.reload.threads", - "yarn.fs-store.file.replication", - "hadoop.security.auth_to_local", - "yarn.resource-types.memory-mb.minimum-allocation", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "yarn.resource-types", - "hadoop.security.group.mapping", - "io.file.buffer.size", - "hadoop.security.token.service.use_ip", - "fs.file.impl" - ], - "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[1]": [ - "fs.iostatistics.thread.level.enabled", - "yarn.scheduler.maximum-allocation-mb", - "fs.automatic.close", - "yarn.ipc.record.factory.class", - "fs.local.block.size", - "fs.client.resolve.remote.symlinks", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.service.shutdown.timeout", - "hadoop.kerberos.min.seconds.before.relogin", - "yarn.node-labels.configuration-type", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "yarn.resourcemanager.configuration.provider-class", - "hadoop.token.files", - "hadoop.security.authentication", - "yarn.scheduler.minimum-allocation-mb", - "fs.file.impl.disable.cache", - "file.bytes-per-checksum", - "fs.permissions.umask-mode", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.resource-types.memory-mb.maximum-allocation", - "fs.defaultFS", - "yarn.scheduler.maximum-allocation-vcores", - "hadoop.security.groups.cache.background.reload.threads", - "yarn.fs-store.file.replication", - "hadoop.security.auth_to_local", - "yarn.resource-types.memory-mb.minimum-allocation", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "yarn.resource-types", - "hadoop.security.group.mapping", - "io.file.buffer.size", - "hadoop.security.token.service.use_ip", - "fs.file.impl" - ], - "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAccessDenied": [ - "fs.iostatistics.thread.level.enabled", - "fs.automatic.close", - "yarn.ipc.record.factory.class", - "fs.local.block.size", - "fs.option.openfile.buffer.size", - "fs.client.resolve.remote.symlinks", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "fs.AbstractFileSystem.file.impl", - "hadoop.service.shutdown.timeout", - "yarn.nodemanager.log-aggregation.compression-type", - "hadoop.kerberos.min.seconds.before.relogin", - "yarn.nodemanager.remote-app-log-dir-include-older", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "fs.file.impl.disable.cache", - "hadoop.security.authentication", - "yarn.log-aggregation.TFile.remote-app-log-dir-suffix", - "fs.permissions.umask-mode", - "file.bytes-per-checksum", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "tfile.fs.output.buffer.size", - "hadoop.security.groups.negative-cache.secs", - "yarn.nodemanager.remote-app-log-dir-suffix", - "yarn.log-aggregation.file-controller.TFile.class", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "tfile.io.chunk.size", - "tfile.fs.input.buffer.size", - "yarn.nodemanager.log-aggregation.num-log-files-per-app", - "fs.defaultFS", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "yarn.log-aggregation.file-formats", - "yarn.log-aggregation.TFile.remote-app-log-dir", - "hadoop.security.token.service.use_ip", - "fs.file.impl" - ], - "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBlockContainsPortNumForUnavailableAppLog": [ - "yarn.ipc.record.factory.class", - "fs.local.block.size", - "fs.client.resolve.remote.symlinks", - "yarn.http.policy", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "fs.AbstractFileSystem.file.impl", - "hadoop.kerberos.min.seconds.before.relogin", - "yarn.nodemanager.remote-app-log-dir-include-older", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "hadoop.security.authentication", - "yarn.log-aggregation.TFile.remote-app-log-dir-suffix", - "hadoop.security.groups.cache.background.reload", - "yarn.nodemanager.hostname", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.groups.negative-cache.secs", - "yarn.nodemanager.remote-app-log-dir-suffix", - "hadoop.security.token.service.use_ip", - "yarn.log-aggregation.file-controller.TFile.class", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "yarn.nodemanager.log-aggregation.num-log-files-per-app", - "fs.defaultFS", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "yarn.log-aggregation.file-formats", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "yarn.log-aggregation.TFile.remote-app-log-dir", - "yarn.nodemanager.webapp.address" - ], - "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBadLogs": [ - "fs.iostatistics.thread.level.enabled", - "fs.automatic.close", - "yarn.ipc.record.factory.class", - "fs.local.block.size", - "fs.client.resolve.remote.symlinks", - "yarn.http.policy", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "fs.AbstractFileSystem.file.impl", - "hadoop.service.shutdown.timeout", - "yarn.nodemanager.log-aggregation.compression-type", - "hadoop.kerberos.min.seconds.before.relogin", - "yarn.nodemanager.remote-app-log-dir-include-older", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "fs.file.impl.disable.cache", - "fs.file.impl", - "hadoop.security.authentication", - "yarn.log-aggregation.TFile.remote-app-log-dir-suffix", - "fs.permissions.umask-mode", - "file.bytes-per-checksum", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "yarn.nodemanager.hostname", - "tfile.fs.output.buffer.size", - "hadoop.security.groups.negative-cache.secs", - "yarn.nodemanager.remote-app-log-dir-suffix", - "hadoop.security.token.service.use_ip", - "yarn.log-aggregation.file-controller.TFile.class", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "tfile.io.chunk.size", - "yarn.nodemanager.log-aggregation.num-log-files-per-app", - "fs.defaultFS", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "yarn.log-aggregation.file-formats", - "yarn.log-aggregation.TFile.remote-app-log-dir", - "yarn.nodemanager.webapp.address" - ], - "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlockHar": [ - "fs.iostatistics.thread.level.enabled", - "fs.automatic.close", - "yarn.ipc.record.factory.class", - "fs.local.block.size", - "fs.option.openfile.buffer.size", - "fs.client.resolve.remote.symlinks", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "fs.AbstractFileSystem.file.impl", - "hadoop.service.shutdown.timeout", - "hadoop.kerberos.min.seconds.before.relogin", - "yarn.nodemanager.remote-app-log-dir-include-older", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "fs.file.impl.disable.cache", - "hadoop.security.authentication", - "file.bytes-per-checksum", - "hadoop.security.groups.cache.background.reload", - "fs.AbstractFileSystem.har.impl", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "file.stream-buffer-size", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "tfile.fs.input.buffer.size", - "fs.defaultFS", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "fs.har.metadatacache.entries", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "io.file.buffer.size", - "hadoop.security.token.service.use_ip", - "fs.file.impl" - ], - "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlock": [ - "fs.iostatistics.thread.level.enabled", - "fs.automatic.close", - "yarn.ipc.record.factory.class", - "fs.local.block.size", - "fs.option.openfile.buffer.size", - "fs.client.resolve.remote.symlinks", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "fs.AbstractFileSystem.file.impl", - "hadoop.service.shutdown.timeout", - "yarn.nodemanager.log-aggregation.compression-type", - "hadoop.kerberos.min.seconds.before.relogin", - "yarn.nodemanager.remote-app-log-dir-include-older", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "fs.file.impl.disable.cache", - "hadoop.security.authentication", - "yarn.log-aggregation.TFile.remote-app-log-dir-suffix", - "fs.permissions.umask-mode", - "file.bytes-per-checksum", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "tfile.fs.output.buffer.size", - "hadoop.security.groups.negative-cache.secs", - "yarn.nodemanager.remote-app-log-dir-suffix", - "yarn.log-aggregation.file-controller.TFile.class", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "tfile.io.chunk.size", - "tfile.fs.input.buffer.size", - "yarn.nodemanager.log-aggregation.num-log-files-per-app", - "fs.defaultFS", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "yarn.log-aggregation.file-formats", - "yarn.log-aggregation.TFile.remote-app-log-dir", - "hadoop.security.token.service.use_ip", - "fs.file.impl" - ], - "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testNoLogs": [ - "fs.iostatistics.thread.level.enabled", - "yarn.ipc.record.factory.class", - "fs.local.block.size", - "fs.option.openfile.buffer.size", - "fs.client.resolve.remote.symlinks", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "fs.AbstractFileSystem.file.impl", - "yarn.nodemanager.log-aggregation.compression-type", - "hadoop.kerberos.min.seconds.before.relogin", - "yarn.nodemanager.remote-app-log-dir-include-older", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "hadoop.security.authentication", - "yarn.log-aggregation.TFile.remote-app-log-dir-suffix", - "fs.permissions.umask-mode", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "tfile.fs.output.buffer.size", - "hadoop.security.groups.negative-cache.secs", - "yarn.nodemanager.remote-app-log-dir-suffix", - "yarn.log-aggregation.file-controller.TFile.class", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "tfile.io.chunk.size", - "tfile.fs.input.buffer.size", - "yarn.nodemanager.log-aggregation.num-log-files-per-app", - "fs.defaultFS", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "yarn.log-aggregation.file-formats", - "yarn.log-aggregation.TFile.remote-app-log-dir", - "hadoop.security.token.service.use_ip" - ], - "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRefreshLogRetentionSettings": [ - "fs.automatic.close", - "yarn.ipc.record.factory.class", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.service.shutdown.timeout", - "hadoop.kerberos.min.seconds.before.relogin", - "fs.mockfs.impl.disable.cache", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "hadoop.security.authentication", - "yarn.log-aggregation.TFile.remote-app-log-dir-suffix", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "yarn.nodemanager.log-aggregation.num-log-files-per-app", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "yarn.log-aggregation.TFile.remote-app-log-dir", - "hadoop.security.token.service.use_ip" - ], - "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testCheckInterval": [ - "fs.automatic.close", - "yarn.ipc.record.factory.class", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.service.shutdown.timeout", - "hadoop.kerberos.min.seconds.before.relogin", - "fs.mockfs.impl.disable.cache", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "hadoop.security.authentication", - "yarn.log-aggregation.TFile.remote-app-log-dir-suffix", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "yarn.nodemanager.log-aggregation.num-log-files-per-app", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "yarn.log-aggregation.TFile.remote-app-log-dir", - "hadoop.security.token.service.use_ip" - ], - "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletionTwoControllers": [ - "fs.automatic.close", - "yarn.ipc.record.factory.class", - "indexedFile.fs.op.num-retries", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.service.shutdown.timeout", - "yarn.nodemanager.log-aggregation.compression-type", - "hadoop.kerberos.min.seconds.before.relogin", - "fs.mockfs.impl.disable.cache", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "hadoop.security.authentication", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "indexedFile.log.roll-over.max-file-size-gb", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "yarn.nodemanager.log-aggregation.num-log-files-per-app", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "indexedFile.fs.retry-interval-ms", - "hadoop.security.token.service.use_ip" - ], - "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletion": [ - "fs.automatic.close", - "yarn.ipc.record.factory.class", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.service.shutdown.timeout", - "hadoop.kerberos.min.seconds.before.relogin", - "fs.mockfs.impl.disable.cache", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "hadoop.security.authentication", - "yarn.log-aggregation.TFile.remote-app-log-dir-suffix", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "yarn.nodemanager.log-aggregation.num-log-files-per-app", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "yarn.log-aggregation.TFile.remote-app-log-dir", - "hadoop.security.token.service.use_ip" - ], - "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRobustLogDeletion": [ - "fs.automatic.close", - "yarn.ipc.record.factory.class", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.service.shutdown.timeout", - "hadoop.kerberos.min.seconds.before.relogin", - "fs.mockfs.impl.disable.cache", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.token.files", - "hadoop.security.authentication", - "yarn.log-aggregation.TFile.remote-app-log-dir-suffix", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "yarn.nodemanager.log-aggregation.num-log-files-per-app", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "yarn.log-aggregation.TFile.remote-app-log-dir", - "hadoop.security.token.service.use_ip" - ], - "org.apache.hadoop.yarn.logaggregation.TestLogAggregationMetaCollector#testAllNull": [ - "yarn.ipc.record.factory.class" - ], - "org.apache.hadoop.yarn.logaggregation.TestLogAggregationMetaCollector#testMultipleFileRegex": [ - "yarn.ipc.record.factory.class" - ], - "org.apache.hadoop.yarn.logaggregation.TestLogAggregationMetaCollector#testMultipleNodeRegexRequest": [ - "yarn.ipc.record.factory.class" - ], - "org.apache.hadoop.yarn.logaggregation.TestLogAggregationMetaCollector#testInvalidQueryStrings": [ - "yarn.ipc.record.factory.class" - ], - "org.apache.hadoop.yarn.logaggregation.TestLogAggregationMetaCollector#testContainerIdExactMatch": [ - "yarn.ipc.record.factory.class" - ], - "org.apache.hadoop.yarn.logaggregation.TestLogAggregationMetaCollector#testSingleNodeRequest": [ - "yarn.ipc.record.factory.class" - ], - "org.apache.hadoop.yarn.logaggregation.TestLogAggregationMetaCollector#testAllSet": [ - "yarn.ipc.record.factory.class" - ], - "org.apache.hadoop.yarn.logaggregation.TestLogAggregationMetaCollector#testMultipleFileBetweenSize": [ - "yarn.ipc.record.factory.class" - ], - "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testDefaultLogAggregationFileControllerFactory": [ - "fs.automatic.close", - "yarn.ipc.record.factory.class", - "fs.local.block.size", - "fs.client.resolve.remote.symlinks", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "fs.AbstractFileSystem.file.impl", - "hadoop.service.shutdown.timeout", - "hadoop.kerberos.min.seconds.before.relogin", - "yarn.nodemanager.remote-app-log-dir-include-older", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "fs.file.impl.disable.cache", - "hadoop.token.files", - "hadoop.security.authentication", - "yarn.log-aggregation.TFile.remote-app-log-dir-suffix", - "fs.permissions.umask-mode", - "file.bytes-per-checksum", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.groups.negative-cache.secs", - "yarn.log-aggregation.file-controller.TFile.class", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "yarn.nodemanager.log-aggregation.num-log-files-per-app", - "fs.defaultFS", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "yarn.log-aggregation.file-formats", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "yarn.log-aggregation.TFile.remote-app-log-dir", - "hadoop.security.token.service.use_ip", - "fs.file.impl" - ], - "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testClassConfUsed": [ - "yarn.nodemanager.log-aggregation.num-log-files-per-app", - "yarn.ipc.record.factory.class" - ], - "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testLogAggregationFileControllerFactoryClassNotSet": [ - "yarn.log-aggregation.TestLogAggregationFileController.remote-app-log-dir", - "yarn.ipc.record.factory.class", - "yarn.log-aggregation.file-controller.TestLogAggregationFileController.class", - "yarn.log-aggregation.TestLogAggregationFileController.remote-app-log-dir-suffix" - ], - "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testLogAggregationFileControllerFactory": [ - "fs.automatic.close", - "yarn.ipc.record.factory.class", - "fs.local.block.size", - "fs.client.resolve.remote.symlinks", - "indexedFile.fs.op.num-retries", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "fs.AbstractFileSystem.file.impl", - "hadoop.service.shutdown.timeout", - "yarn.nodemanager.log-aggregation.compression-type", - "hadoop.kerberos.min.seconds.before.relogin", - "yarn.nodemanager.remote-app-log-dir-include-older", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "fs.file.impl.disable.cache", - "hadoop.token.files", - "hadoop.security.authentication", - "file.bytes-per-checksum", - "fs.permissions.umask-mode", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "indexedFile.log.roll-over.max-file-size-gb", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.token.service.use_ip", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "yarn.nodemanager.log-aggregation.num-log-files-per-app", - "fs.defaultFS", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "indexedFile.fs.retry-interval-ms", - "fs.file.impl" - ], - "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testNodemanagerConfigurationIsUsed": [ - "yarn.nodemanager.log-aggregation.num-log-files-per-app", - "yarn.ipc.record.factory.class", - "yarn.log-aggregation.file-controller.TFile.class", - "yarn.log-aggregation.TFile.remote-app-log-dir", - "yarn.log-aggregation.TFile.remote-app-log-dir-suffix" - ], - "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testDefaultConfUsed": [ - "yarn.nodemanager.log-aggregation.num-log-files-per-app", - "yarn.ipc.record.factory.class", - "yarn.log-aggregation.file-controller.TFile.class", - "yarn.log-aggregation.TFile.remote-app-log-dir", - "yarn.log-aggregation.TFile.remote-app-log-dir-suffix" - ], - "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomUser": [ - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.security.authentication", - "yarn.log-aggregation.TFile.remote-app-log-dir-suffix", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.groups.negative-cache.secs", - "yarn.nodemanager.remote-app-log-dir-suffix", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "yarn.nodemanager.log-aggregation.num-log-files-per-app", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "yarn.log-aggregation.TFile.remote-app-log-dir", - "yarn.nodemanager.remote-app-log-dir", - "hadoop.security.token.service.use_ip" - ], - "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomGroup": [ - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.security.authentication", - "yarn.log-aggregation.TFile.remote-app-log-dir-suffix", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.groups.negative-cache.secs", - "yarn.nodemanager.remote-app-log-dir-suffix", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "yarn.nodemanager.log-aggregation.num-log-files-per-app", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "yarn.log-aggregation.TFile.remote-app-log-dir", - "yarn.nodemanager.remote-app-log-dir", - "hadoop.security.token.service.use_ip" - ], - "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationDefault": [ - "yarn.nodemanager.remote-app-log-dir.groupname", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "hadoop.security.authentication", - "yarn.log-aggregation.TFile.remote-app-log-dir-suffix", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "hadoop.security.groups.negative-cache.secs", - "yarn.nodemanager.remote-app-log-dir-suffix", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "yarn.nodemanager.log-aggregation.num-log-files-per-app", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "yarn.log-aggregation.TFile.remote-app-log-dir", - "yarn.nodemanager.remote-app-log-dir", - "hadoop.security.token.service.use_ip" - ], - "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testFetchApplictionLogsHar": [ - "fs.iostatistics.thread.level.enabled", - "fs.automatic.close", - "yarn.ipc.record.factory.class", - "fs.local.block.size", - "fs.option.openfile.buffer.size", - "fs.client.resolve.remote.symlinks", - "indexedFile.fs.op.num-retries", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "fs.AbstractFileSystem.file.impl", - "hadoop.service.shutdown.timeout", - "hadoop.kerberos.min.seconds.before.relogin", - "yarn.nodemanager.remote-app-log-dir-include-older", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "fs.file.impl.disable.cache", - "hadoop.token.files", - "hadoop.security.authentication", - "file.bytes-per-checksum", - "fs.permissions.umask-mode", - "hadoop.security.groups.cache.background.reload", - "fs.AbstractFileSystem.har.impl", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "indexedFile.log.roll-over.max-file-size-gb", - "file.stream-buffer-size", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "fs.defaultFS", - "yarn.nodemanager.log-aggregation.num-log-files-per-app", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "fs.har.metadatacache.entries", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "indexedFile.fs.retry-interval-ms", - "hadoop.security.token.service.use_ip", - "fs.file.impl" - ], - "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetLogMetaFilesOfNode": [ - "fs.iostatistics.thread.level.enabled", - "fs.automatic.close", - "yarn.ipc.record.factory.class", - "fs.local.block.size", - "fs.client.resolve.remote.symlinks", - "indexedFile.fs.op.num-retries", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "fs.AbstractFileSystem.file.impl", - "hadoop.service.shutdown.timeout", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "fs.file.impl.disable.cache", - "hadoop.token.files", - "hadoop.security.authentication", - "file.bytes-per-checksum", - "fs.permissions.umask-mode", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "indexedFile.log.roll-over.max-file-size-gb", - "file.stream-buffer-size", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "fs.defaultFS", - "yarn.nodemanager.log-aggregation.num-log-files-per-app", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "indexedFile.fs.retry-interval-ms", - "hadoop.security.token.service.use_ip", - "fs.file.impl" - ], - "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetRollOverLogMaxSize": [ - "ssl.client.truststore.type", - "yarn.nodemanager.remote-app-log-dir", - "fs.automatic.close", - "yarn.ipc.record.factory.class", - "fs.local.block.size", - "hadoop.ssl.client.conf", - "ssl.client.keystore.type", - "fs.client.resolve.remote.symlinks", - "indexedFile.fs.op.num-retries", - "hadoop.security.groups.cache.secs", - "ipc.client.fallback-to-simple-auth-allowed", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.service.shutdown.timeout", - "hadoop.ssl.enabled.protocols", - "hadoop.kerberos.min.seconds.before.relogin", - "ssl.client.truststore.location", - "hadoop.ssl.hostname.verifier", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "fs.file.impl.disable.cache", - "hadoop.token.files", - "hadoop.security.authentication", - "file.bytes-per-checksum", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "indexedFile.log.roll-over.max-file-size-gb", - "hadoop.security.groups.negative-cache.secs", - "ssl.server.exclude.cipher.list", - "yarn.nodemanager.remote-app-log-dir-suffix", - "ssl.client.stores.reload.interval", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "fs.defaultFS", - "yarn.nodemanager.log-aggregation.num-log-files-per-app", - "hadoop.ssl.keystores.factory.class", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "indexedFile.fs.retry-interval-ms", - "hadoop.security.token.service.use_ip", - "fs.file.impl" - ], - "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testLogAggregationIndexFileFormat": [ - "fs.iostatistics.thread.level.enabled", - "fs.automatic.close", - "yarn.ipc.record.factory.class", - "fs.local.block.size", - "fs.client.resolve.remote.symlinks", - "indexedFile.fs.op.num-retries", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "fs.AbstractFileSystem.file.impl", - "hadoop.service.shutdown.timeout", - "hadoop.kerberos.min.seconds.before.relogin", - "yarn.nodemanager.remote-app-log-dir-include-older", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "fs.file.impl.disable.cache", - "hadoop.token.files", - "hadoop.security.authentication", - "file.bytes-per-checksum", - "fs.permissions.umask-mode", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "indexedFile.log.roll-over.max-file-size-gb", - "file.stream-buffer-size", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "fs.defaultFS", - "yarn.nodemanager.log-aggregation.num-log-files-per-app", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "indexedFile.fs.retry-interval-ms", - "hadoop.security.token.service.use_ip", - "fs.file.impl" - ], - "org.apache.hadoop.yarn.conf.TestYarnConfiguration#testUpdateConnectAddr": [ - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "yarn.nodemanager.localizer.address.rm1", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.security.resolver.impl", - "hadoop.security.token.service.use_ip", - "yarn.http.policy" - ], - "org.apache.hadoop.yarn.conf.TestYarnConfiguration#testGetSocketAddressForNMWithHA": [ - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.security.resolver.impl", - "hadoop.security.token.service.use_ip", - "yarn.http.policy" - ], - "org.apache.hadoop.yarn.conf.TestYarnConfiguration#testRMWebUrlSpecified": [ - "yarn.resourcemanager.ha.enabled", - "yarn.http.policy" - ], - "org.apache.hadoop.yarn.conf.TestYarnConfiguration#testDefaultRMWebUrl": [ - "yarn.resourcemanager.hostname", - "yarn.resourcemanager.webapp.address", - "yarn.http.policy" - ], - "org.apache.hadoop.yarn.conf.TestYarnConfiguration#testGetSocketAddr": [ - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.dns.log-slow-lookups.enabled", - "yarn.resourcemanager.ha.enabled", - "yarn.resourcemanager.hostname", - "hadoop.security.resolver.impl", - "hadoop.security.token.service.use_ip" - ], - "org.apache.hadoop.yarn.conf.TestHAUtil#testVerifyAndSetConfiguration": [ - "yarn.http.policy", - "yarn.resourcemanager.hostname.rm1" - ], - "org.apache.hadoop.yarn.conf.TestHAUtil#testGetRMServiceId": [ - "yarn.http.policy" - ], - "org.apache.hadoop.yarn.conf.TestHAUtil#testGetRMId": [ - "yarn.http.policy" - ], - "org.apache.hadoop.yarn.conf.TestHAUtil#testGetConfKeyForRMInstance": [ - "yarn.http.policy" - ], - "org.apache.hadoop.yarn.api.TestApplicationId#testApplicationId": [ - "yarn.ipc.record.factory.class" - ], - "org.apache.hadoop.yarn.api.TestNodeId#testNodeId": [ - "yarn.ipc.record.factory.class" - ], - "org.apache.hadoop.yarn.api.TestGetApplicationsRequest#testGetApplicationsRequest": [ - "yarn.ipc.record.factory.class", - "yarn.resourcemanager.application-tag-based-placement.force-lowercase" - ], - "org.apache.hadoop.yarn.api.protocolrecords.impl.pb.TestGetApplicationsRequestPBImpl#testAppTagsLowerCaseConversionDefault[0]": [ - "yarn.resourcemanager.application-tag-based-placement.force-lowercase" - ], - "org.apache.hadoop.yarn.api.protocolrecords.impl.pb.TestGetApplicationsRequestPBImpl#testAppTagsLowerCaseConversionDisabled[0]": [ - "yarn.resourcemanager.application-tag-based-placement.force-lowercase" - ], - "org.apache.hadoop.yarn.api.protocolrecords.impl.pb.TestGetApplicationsRequestPBImpl#testAppTagsLowerCaseConversionEnabled[0]": [ - "yarn.resourcemanager.application-tag-based-placement.force-lowercase" - ], - "org.apache.hadoop.yarn.api.protocolrecords.impl.pb.TestGetApplicationsRequestPBImpl#testAppTagsLowerCaseConversionDefault[1]": [ - "yarn.resourcemanager.application-tag-based-placement.force-lowercase" - ], - "org.apache.hadoop.yarn.api.protocolrecords.impl.pb.TestGetApplicationsRequestPBImpl#testAppTagsLowerCaseConversionDisabled[1]": [ - "yarn.resourcemanager.application-tag-based-placement.force-lowercase" - ], - "org.apache.hadoop.yarn.api.protocolrecords.impl.pb.TestGetApplicationsRequestPBImpl#testAppTagsLowerCaseConversionEnabled[1]": [ - "yarn.resourcemanager.application-tag-based-placement.force-lowercase" - ], - "org.apache.hadoop.yarn.api.TestTimelineEntityGroupId#testTimelineEntityGroupId": [ - "yarn.ipc.record.factory.class" - ], - "org.apache.hadoop.yarn.api.TestContainerId#testContainerId": [ - "yarn.ipc.record.factory.class" - ], - "org.apache.hadoop.yarn.api.TestApplicationAttemptId#testApplicationAttemptId": [ - "yarn.ipc.record.factory.class" - ], - "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBInitFromOldPB": [ - "yarn.scheduler.maximum-allocation-mb", - "yarn.resource-types.yarn.io/gpu.tags", - "yarn.resource-types.resource3.maximum-allocation", - "yarn.resource-types.resource1.minimum-allocation", - "yarn.resource-types.resource2.tags", - "yarn.resource-types.resource2.type", - "yarn.resource-types.yarn.io/test-volume.maximum-allocation", - "yarn.resource-types.resource1.type", - "yarn.resource-types.resource3.units", - "yarn.resource-types.yarn.io/test-volume.minimum-allocation", - "yarn.resource-types.resource1.units", - "yarn.resource-types.yarn.io/gpu.minimum-allocation", - "yarn.resource-types.yarn.io/gpu.type", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resourcemanager.configuration.provider-class", - "yarn.scheduler.minimum-allocation-mb", - "yarn.resource-types.resource3.tags", - "yarn.resource-types.resource2.units", - "yarn.resource-types.yarn.io/test-volume.type", - "yarn.resource-types.resource3.minimum-allocation", - "yarn.resource-types.resource2.maximum-allocation", - "yarn.resource-types.resource3.type", - "yarn.resource-types.yarn.io/test-volume.units", - "yarn.resource-types.yarn.io/gpu.units", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.resource-types.resource1.maximum-allocation", - "yarn.resource-types.resource2.minimum-allocation", - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.resource-types.resource1.tags", - "yarn.resource-types.yarn.io/gpu.maximum-allocation", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.resource-types", - "yarn.resource-types.yarn.io/test-volume.tags" - ], - "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceAttributes": [ - "yarn.scheduler.maximum-allocation-mb", - "yarn.resource-types.yarn.io/gpu.tags", - "yarn.resource-types.resource3.maximum-allocation", - "yarn.resource-types.resource1.minimum-allocation", - "yarn.resource-types.resource2.tags", - "yarn.resource-types.resource2.type", - "yarn.resource-types.yarn.io/test-volume.maximum-allocation", - "yarn.resource-types.resource1.type", - "yarn.resource-types.resource3.units", - "yarn.resource-types.yarn.io/test-volume.minimum-allocation", - "yarn.resource-types.resource1.units", - "yarn.resource-types.yarn.io/gpu.minimum-allocation", - "yarn.resource-types.yarn.io/gpu.type", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resourcemanager.configuration.provider-class", - "yarn.scheduler.minimum-allocation-mb", - "yarn.resource-types.resource3.tags", - "yarn.resource-types.resource2.units", - "yarn.resource-types.yarn.io/test-volume.type", - "yarn.resource-types.resource3.minimum-allocation", - "yarn.resource-types.resource2.maximum-allocation", - "yarn.resource-types.resource3.type", - "yarn.resource-types.yarn.io/test-volume.units", - "yarn.resource-types.yarn.io/gpu.units", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.resource-types.resource1.maximum-allocation", - "yarn.resource-types.resource2.minimum-allocation", - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.resource-types.resource1.tags", - "yarn.resource-types.yarn.io/gpu.maximum-allocation", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.resource-types", - "yarn.resource-types.yarn.io/test-volume.tags" - ], - "org.apache.hadoop.yarn.api.TestResourcePBImpl#testParsingResourceTags": [ - "yarn.scheduler.maximum-allocation-mb", - "yarn.resource-types.yarn.io/gpu.tags", - "yarn.resource-types.resource3.maximum-allocation", - "yarn.resource-types.resource1.minimum-allocation", - "yarn.resource-types.resource2.tags", - "yarn.resource-types.resource2.type", - "yarn.resource-types.yarn.io/test-volume.maximum-allocation", - "yarn.resource-types.resource1.type", - "yarn.resource-types.resource3.units", - "yarn.resource-types.yarn.io/test-volume.minimum-allocation", - "yarn.resource-types.resource1.units", - "yarn.resource-types.yarn.io/gpu.minimum-allocation", - "yarn.resource-types.yarn.io/gpu.type", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resourcemanager.configuration.provider-class", - "yarn.scheduler.minimum-allocation-mb", - "yarn.resource-types.resource3.tags", - "yarn.resource-types.resource2.units", - "yarn.resource-types.yarn.io/test-volume.type", - "yarn.resource-types.resource3.minimum-allocation", - "yarn.resource-types.resource2.maximum-allocation", - "yarn.resource-types.resource3.type", - "yarn.resource-types.yarn.io/test-volume.units", - "yarn.resource-types.yarn.io/gpu.units", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.resource-types.resource1.maximum-allocation", - "yarn.resource-types.resource2.minimum-allocation", - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.resource-types.resource1.tags", - "yarn.resource-types.yarn.io/gpu.maximum-allocation", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.resource-types", - "yarn.resource-types.yarn.io/test-volume.tags" - ], - "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBWithExtraResources": [ - "yarn.scheduler.maximum-allocation-mb", - "yarn.resource-types.yarn.io/gpu.tags", - "yarn.resource-types.resource3.maximum-allocation", - "yarn.resource-types.resource1.minimum-allocation", - "yarn.resource-types.resource2.tags", - "yarn.resource-types.resource2.type", - "yarn.resource-types.yarn.io/test-volume.maximum-allocation", - "yarn.resource-types.resource1.type", - "yarn.resource-types.resource3.units", - "yarn.resource-types.yarn.io/test-volume.minimum-allocation", - "yarn.resource-types.resource1.units", - "yarn.resource-types.yarn.io/gpu.minimum-allocation", - "yarn.resource-types.yarn.io/gpu.type", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resourcemanager.configuration.provider-class", - "yarn.scheduler.minimum-allocation-mb", - "yarn.resource-types.resource3.tags", - "yarn.resource-types.resource2.units", - "yarn.resource-types.yarn.io/test-volume.type", - "yarn.resource-types.resource3.minimum-allocation", - "yarn.resource-types.resource2.maximum-allocation", - "yarn.resource-types.resource3.type", - "yarn.resource-types.yarn.io/test-volume.units", - "yarn.resource-types.yarn.io/gpu.units", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.resource-types.resource1.maximum-allocation", - "yarn.resource-types.resource2.minimum-allocation", - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.resource-types.resource1.tags", - "yarn.resource-types.yarn.io/gpu.maximum-allocation", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.resource-types", - "yarn.resource-types.yarn.io/test-volume.tags" - ], - "org.apache.hadoop.yarn.api.TestResourcePBImpl#testEmptyResourcePBInit": [ - "yarn.scheduler.maximum-allocation-mb", - "yarn.resource-types.yarn.io/gpu.tags", - "yarn.resource-types.resource3.maximum-allocation", - "yarn.resource-types.resource1.minimum-allocation", - "yarn.resource-types.resource2.tags", - "yarn.resource-types.resource2.type", - "yarn.resource-types.yarn.io/test-volume.maximum-allocation", - "yarn.resource-types.resource1.type", - "yarn.resource-types.resource3.units", - "yarn.resource-types.yarn.io/test-volume.minimum-allocation", - "yarn.resource-types.resource1.units", - "yarn.resource-types.yarn.io/gpu.minimum-allocation", - "yarn.resource-types.yarn.io/gpu.type", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resourcemanager.configuration.provider-class", - "yarn.scheduler.minimum-allocation-mb", - "yarn.resource-types.resource3.tags", - "yarn.resource-types.resource2.units", - "yarn.resource-types.yarn.io/test-volume.type", - "yarn.resource-types.resource3.minimum-allocation", - "yarn.resource-types.resource2.maximum-allocation", - "yarn.resource-types.resource3.type", - "yarn.resource-types.yarn.io/test-volume.units", - "yarn.resource-types.yarn.io/gpu.units", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.resource-types.resource1.maximum-allocation", - "yarn.resource-types.resource2.minimum-allocation", - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.resource-types.resource1.tags", - "yarn.resource-types.yarn.io/gpu.maximum-allocation", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.resource-types", - "yarn.resource-types.yarn.io/test-volume.tags" - ], - "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceTags": [ - "yarn.scheduler.maximum-allocation-mb", - "yarn.resource-types.yarn.io/gpu.tags", - "yarn.resource-types.resource3.maximum-allocation", - "yarn.resource-types.resource1.minimum-allocation", - "yarn.resource-types.resource2.tags", - "yarn.resource-types.resource2.type", - "yarn.resource-types.yarn.io/test-volume.maximum-allocation", - "yarn.resource-types.resource1.type", - "yarn.resource-types.resource3.units", - "yarn.resource-types.yarn.io/test-volume.minimum-allocation", - "yarn.resource-types.resource1.units", - "yarn.resource-types.yarn.io/gpu.minimum-allocation", - "yarn.resource-types.yarn.io/gpu.type", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resourcemanager.configuration.provider-class", - "yarn.scheduler.minimum-allocation-mb", - "yarn.resource-types.resource3.tags", - "yarn.resource-types.resource2.units", - "yarn.resource-types.yarn.io/test-volume.type", - "yarn.resource-types.resource3.minimum-allocation", - "yarn.resource-types.resource2.maximum-allocation", - "yarn.resource-types.resource3.type", - "yarn.resource-types.yarn.io/test-volume.units", - "yarn.resource-types.yarn.io/gpu.units", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.resource-types.resource1.maximum-allocation", - "yarn.resource-types.resource2.minimum-allocation", - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.resource-types.resource1.tags", - "yarn.resource-types.yarn.io/gpu.maximum-allocation", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.resource-types", - "yarn.resource-types.yarn.io/test-volume.tags" - ], - "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetVirtualCores": [ - "yarn.scheduler.maximum-allocation-mb", - "yarn.resource-types.yarn.io/gpu.tags", - "yarn.resource-types.resource3.maximum-allocation", - "yarn.resource-types.resource1.minimum-allocation", - "yarn.resource-types.resource2.tags", - "yarn.resource-types.resource2.type", - "yarn.resource-types.yarn.io/test-volume.maximum-allocation", - "yarn.resource-types.resource1.type", - "yarn.resource-types.resource3.units", - "yarn.resource-types.yarn.io/test-volume.minimum-allocation", - "yarn.resource-types.resource1.units", - "yarn.resource-types.yarn.io/gpu.minimum-allocation", - "yarn.resource-types.yarn.io/gpu.type", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resourcemanager.configuration.provider-class", - "yarn.scheduler.minimum-allocation-mb", - "yarn.resource-types.resource3.tags", - "yarn.resource-types.resource2.units", - "yarn.resource-types.yarn.io/test-volume.type", - "yarn.resource-types.resource3.minimum-allocation", - "yarn.resource-types.resource2.maximum-allocation", - "yarn.resource-types.resource3.type", - "yarn.resource-types.yarn.io/test-volume.units", - "yarn.resource-types.yarn.io/gpu.units", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.resource-types.resource1.maximum-allocation", - "yarn.resource-types.resource2.minimum-allocation", - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.resource-types.resource1.tags", - "yarn.resource-types.yarn.io/gpu.maximum-allocation", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.resource-types", - "yarn.resource-types.yarn.io/test-volume.tags" - ], - "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetMemory": [ - "yarn.scheduler.maximum-allocation-mb", - "yarn.resource-types.yarn.io/gpu.tags", - "yarn.resource-types.resource3.maximum-allocation", - "yarn.resource-types.resource1.minimum-allocation", - "yarn.resource-types.resource2.tags", - "yarn.resource-types.resource2.type", - "yarn.resource-types.yarn.io/test-volume.maximum-allocation", - "yarn.resource-types.resource1.type", - "yarn.resource-types.resource3.units", - "yarn.resource-types.yarn.io/test-volume.minimum-allocation", - "yarn.resource-types.resource1.units", - "yarn.resource-types.yarn.io/gpu.minimum-allocation", - "yarn.resource-types.yarn.io/gpu.type", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resourcemanager.configuration.provider-class", - "yarn.scheduler.minimum-allocation-mb", - "yarn.resource-types.resource3.tags", - "yarn.resource-types.resource2.units", - "yarn.resource-types.yarn.io/test-volume.type", - "yarn.resource-types.resource3.minimum-allocation", - "yarn.resource-types.resource2.maximum-allocation", - "yarn.resource-types.resource3.type", - "yarn.resource-types.yarn.io/test-volume.units", - "yarn.resource-types.yarn.io/gpu.units", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.resource-types.resource1.maximum-allocation", - "yarn.resource-types.resource2.minimum-allocation", - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.resource-types.resource1.tags", - "yarn.resource-types.yarn.io/gpu.maximum-allocation", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.resource-types", - "yarn.resource-types.yarn.io/test-volume.tags" - ], - "org.apache.hadoop.yarn.api.records.TestResourceUtilization#testResourceUtilizationWithCustomResource": [ - "yarn.ipc.record.factory.class" - ], - "org.apache.hadoop.yarn.api.records.TestResourceUtilization#testResourceUtilization": [ - "yarn.ipc.record.factory.class" - ], - "org.apache.hadoop.yarn.api.records.timelineservice.TestTimelineServiceRecords#testFirstClassCitizenEntities": [ - "yarn.ipc.record.factory.class" - ], - "org.apache.hadoop.yarn.api.records.impl.pb.TestApplicationClientProtocolRecords#testCLCPBImplNullResourceType": [ - "yarn.ipc.record.factory.class" - ], - "org.apache.hadoop.yarn.api.records.impl.pb.TestApplicationClientProtocolRecords#testCLCPBImplNullResourceVisibility": [ - "yarn.ipc.record.factory.class" - ], - "org.apache.hadoop.yarn.api.records.impl.pb.TestApplicationClientProtocolRecords#testCLCPBImplNullResourceURL": [ - "yarn.ipc.record.factory.class" - ], - "org.apache.hadoop.yarn.api.records.impl.pb.TestApplicationClientProtocolRecords#testCLCPBImplNullEnv": [ - "yarn.ipc.record.factory.class" - ], - "org.apache.hadoop.yarn.api.records.impl.pb.TestApplicationSubmissionContextPBImpl#testAppTagsLowerCaseConversionDefault[0]": [ - "yarn.resourcemanager.application-tag-based-placement.force-lowercase" - ], - "org.apache.hadoop.yarn.api.records.impl.pb.TestApplicationSubmissionContextPBImpl#testAppTagsLowerCaseConversionDisabled[0]": [ - "yarn.resourcemanager.application-tag-based-placement.force-lowercase" - ], - "org.apache.hadoop.yarn.api.records.impl.pb.TestApplicationSubmissionContextPBImpl#testAppTagsLowerCaseConversionEnabled[0]": [ - "yarn.resourcemanager.application-tag-based-placement.force-lowercase" - ], - "org.apache.hadoop.yarn.api.records.impl.pb.TestApplicationSubmissionContextPBImpl#testAppTagsLowerCaseConversionDefault[1]": [ - "yarn.resourcemanager.application-tag-based-placement.force-lowercase" - ], - "org.apache.hadoop.yarn.api.records.impl.pb.TestApplicationSubmissionContextPBImpl#testAppTagsLowerCaseConversionDisabled[1]": [ - "yarn.resourcemanager.application-tag-based-placement.force-lowercase" - ], - "org.apache.hadoop.yarn.api.records.impl.pb.TestApplicationSubmissionContextPBImpl#testAppTagsLowerCaseConversionEnabled[1]": [ - "yarn.resourcemanager.application-tag-based-placement.force-lowercase" - ], - "org.apache.hadoop.yarn.api.TestApplicatonReport#testApplicationReport": [ - "yarn.ipc.record.factory.class" - ], - "org.apache.hadoop.yarn.api.TestResourceRequest#testEqualsOnExecutionTypeRequest": [ - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.ipc.record.factory.class", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb" - ], - "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testAMRMTokenIdentifier": [ - "yarn.ipc.record.factory.class" - ], - "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testNMTokenIdentifierOldFormat": [ - "yarn.ipc.record.factory.class" - ], - "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testAMContainerTokenIdentifier": [ - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.ipc.record.factory.class", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb" - ], - "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testContainerTokenIdentifierOldFormat": [ - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.ipc.record.factory.class", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb" - ], - "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testContainerTokenIdentifier": [ - "yarn.resource-types.memory-mb.maximum-allocation", - "yarn.scheduler.maximum-allocation-mb", - "yarn.scheduler.maximum-allocation-vcores", - "yarn.resource-types.memory-mb.minimum-allocation", - "yarn.ipc.record.factory.class", - "yarn.scheduler.minimum-allocation-vcores", - "yarn.resource-types.vcores.minimum-allocation", - "yarn.resource-types", - "yarn.resourcemanager.configuration.provider-class", - "yarn.resource-types.vcores.maximum-allocation", - "yarn.scheduler.minimum-allocation-mb" - ], - "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testNMTokenIdentifier": [ - "yarn.ipc.record.factory.class" - ], - "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testAMRMTokenIdentifierOldFormat": [ - "yarn.ipc.record.factory.class" - ], - "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testClientToAMTokenIdentifier": [ - "yarn.ipc.record.factory.class" - ], - "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testParseTimelineDelegationTokenIdentifierRenewer": [ - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.security.resolver.impl", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.authentication", - "hadoop.security.token.service.use_ip" - ], - "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testReadCredentialsFromConfigFile": [ - "fs.iostatistics.thread.level.enabled", - "fs.automatic.close", - "fs.local.block.size", - "fs.client.resolve.remote.symlinks", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.service.shutdown.timeout", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "fs.file.impl.disable.cache", - "hadoop.token.files", - "hadoop.security.authentication", - "file.bytes-per-checksum", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "file.stream-buffer-size", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "fs.defaultFS", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "io.file.buffer.size", - "hadoop.security.token.service.use_ip", - "fs.file.impl" - ], - "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testGetCredentialsFromTokensByteBuffer": [ - "fs.iostatistics.thread.level.enabled", - "fs.automatic.close", - "fs.local.block.size", - "fs.client.resolve.remote.symlinks", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.service.shutdown.timeout", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "fs.file.impl.disable.cache", - "hadoop.token.files", - "hadoop.security.authentication", - "file.bytes-per-checksum", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "file.stream-buffer-size", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "fs.defaultFS", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "io.file.buffer.size", - "hadoop.security.token.service.use_ip", - "fs.file.impl" - ], - "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testWriteDockerCredentialsToPath": [ - "fs.iostatistics.thread.level.enabled", - "fs.automatic.close", - "fs.local.block.size", - "fs.client.resolve.remote.symlinks", - "hadoop.security.groups.cache.secs", - "hadoop.user.group.metrics.percentiles.intervals", - "hadoop.service.shutdown.timeout", - "hadoop.kerberos.min.seconds.before.relogin", - "hadoop.kerberos.keytab.login.autorenewal.enabled", - "fs.file.impl.disable.cache", - "hadoop.token.files", - "hadoop.security.authentication", - "file.bytes-per-checksum", - "hadoop.security.groups.cache.background.reload", - "hadoop.security.dns.log-slow-lookups.threshold.ms", - "hadoop.security.groups.cache.warn.after.ms", - "file.stream-buffer-size", - "hadoop.security.groups.negative-cache.secs", - "hadoop.security.resolver.impl", - "fs.creation.parallel.count", - "fs.defaultFS", - "hadoop.security.groups.cache.background.reload.threads", - "hadoop.security.auth_to_local", - "hadoop.security.dns.log-slow-lookups.enabled", - "hadoop.tokens", - "hadoop.user.group.static.mapping.overrides", - "hadoop.security.auth_to_local.mechanism", - "hadoop.security.group.mapping", - "io.file.buffer.size", - "hadoop.security.token.service.use_ip", - "fs.file.impl" - ] + "ipc.server.metrics.update.runner.interval": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout" + ], + "ipc.0.callqueue.overflow.trigger.failover": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout" + ], + "hadoop.security.authorization": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.webapp.TestWebApp#testYARNWebAppContext", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout" + ], + "ipc.server.max.response.size": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout" + ], + "hadoop.kerberos.min.seconds.before.relogin": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.client.TestClientRMProxy#testProxyUserCorrectUGI", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainersForAppAttempt", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetApplication", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainer", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntity", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainers", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenOperationsRetry", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineClientCleanup", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostIncompleteEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesWithError", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenDisabledOnSimpleAuth", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testCheckRetryCount", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineConnectorDestroy", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSyncCall", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSetTimelineToken", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionCalls", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionMultipleRetry", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testASyncCallMerge", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testConfigurableNumberOfMerges", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testAfterStop", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testProcessTreeDump", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testProcessTree", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testMemForOlderProcesses", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testCpuAndMemoryForProcessTree", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testDestroyProcessTree", + "org.apache.hadoop.yarn.util.TestFSDownload#testDirDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testUniqueDestinationPath", + "org.apache.hadoop.yarn.util.TestFSDownload#testResourceTimestampChangeDuringDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZipWithTurkishLocale", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPatternJar", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchive", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveTgz", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZip", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadBadPublic", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPublicWithStatCache", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownload", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccessWithPartialACLS", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccess", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccessWithNullACLS", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetPassword", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetHtmlEscapedURIWithQueryString", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testAppendQueryParams", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testLoadSslConfiguration", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[1]", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAccessDenied", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBlockContainsPortNumForUnavailableAppLog", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBadLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlockHar", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlock", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testNoLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRefreshLogRetentionSettings", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testCheckInterval", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletionTwoControllers", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletion", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRobustLogDeletion", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testDefaultLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomUser", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomGroup", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationDefault", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testFetchApplictionLogsHar", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetLogMetaFilesOfNode", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetRollOverLogMaxSize", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testLogAggregationIndexFileFormat", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testReadCredentialsFromConfigFile", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testGetCredentialsFromTokensByteBuffer", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testWriteDockerCredentialsToPath" + ], + "ipc.client.connect.max.retries.on.timeouts": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout" + ], + "hadoop.kerberos.keytab.login.autorenewal.enabled": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.client.TestClientRMProxy#testProxyUserCorrectUGI", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainersForAppAttempt", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetApplication", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainer", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntity", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainers", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenOperationsRetry", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineClientCleanup", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostIncompleteEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesWithError", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenDisabledOnSimpleAuth", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testCheckRetryCount", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineConnectorDestroy", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSyncCall", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSetTimelineToken", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionCalls", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionMultipleRetry", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testASyncCallMerge", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testConfigurableNumberOfMerges", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testAfterStop", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testProcessTreeDump", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testProcessTree", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testMemForOlderProcesses", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testCpuAndMemoryForProcessTree", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testDestroyProcessTree", + "org.apache.hadoop.yarn.util.TestFSDownload#testDirDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testUniqueDestinationPath", + "org.apache.hadoop.yarn.util.TestFSDownload#testResourceTimestampChangeDuringDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZipWithTurkishLocale", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPatternJar", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchive", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveTgz", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZip", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadBadPublic", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPublicWithStatCache", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownload", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccessWithPartialACLS", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccess", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccessWithNullACLS", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetPassword", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetHtmlEscapedURIWithQueryString", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testAppendQueryParams", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testLoadSslConfiguration", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[1]", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAccessDenied", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBlockContainsPortNumForUnavailableAppLog", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBadLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlockHar", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlock", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testNoLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRefreshLogRetentionSettings", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testCheckInterval", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletionTwoControllers", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletion", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRobustLogDeletion", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testDefaultLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomUser", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomGroup", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationDefault", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testFetchApplictionLogsHar", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetLogMetaFilesOfNode", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetRollOverLogMaxSize", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testLogAggregationIndexFileFormat", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testReadCredentialsFromConfigFile", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testGetCredentialsFromTokensByteBuffer", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testWriteDockerCredentialsToPath" + ], + "hadoop.token.files": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.client.TestClientRMProxy#testProxyUserCorrectUGI", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainersForAppAttempt", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetApplication", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainer", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntity", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainers", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenOperationsRetry", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineClientCleanup", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostIncompleteEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesWithError", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenDisabledOnSimpleAuth", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testCheckRetryCount", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineConnectorDestroy", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSyncCall", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSetTimelineToken", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionCalls", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionMultipleRetry", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testASyncCallMerge", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testConfigurableNumberOfMerges", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testAfterStop", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testProcessTreeDump", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testProcessTree", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testMemForOlderProcesses", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testCpuAndMemoryForProcessTree", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testDestroyProcessTree", + "org.apache.hadoop.yarn.util.TestFSDownload#testDirDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testUniqueDestinationPath", + "org.apache.hadoop.yarn.util.TestFSDownload#testResourceTimestampChangeDuringDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZipWithTurkishLocale", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPatternJar", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchive", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveTgz", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZip", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadBadPublic", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPublicWithStatCache", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownload", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccessWithPartialACLS", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccess", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccessWithNullACLS", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetPassword", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetHtmlEscapedURIWithQueryString", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testAppendQueryParams", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testLoadSslConfiguration", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[1]", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAccessDenied", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBlockContainsPortNumForUnavailableAppLog", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBadLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlockHar", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlock", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testNoLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRefreshLogRetentionSettings", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testCheckInterval", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletionTwoControllers", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletion", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRobustLogDeletion", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testDefaultLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testFetchApplictionLogsHar", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetLogMetaFilesOfNode", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetRollOverLogMaxSize", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testLogAggregationIndexFileFormat", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testReadCredentialsFromConfigFile", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testGetCredentialsFromTokensByteBuffer", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testWriteDockerCredentialsToPath" + ], + "yarn.resourcemanager.configuration.provider-class": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithExtraResource[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithEmptyCluster[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompare[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithNoExtraResource[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testNormalize[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioNumeratorAndDenominatorIsZero[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithOnlyMandatory[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsIn[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioDenominatorIsZero[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsInDiagnosticsCollector[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithExtraResource[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithEmptyCluster[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompare[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithNoExtraResource[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testNormalize[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioNumeratorAndDenominatorIsZero[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithOnlyMandatory[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsIn[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioDenominatorIsZero[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsInDiagnosticsCollector[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateSimpleResourceWithSameIntValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testAdd", + "org.apache.hadoop.yarn.util.resource.TestResources#testSubtract", + "org.apache.hadoop.yarn.util.resource.TestResources#testClone", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateResourceWithSameIntValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyRoundUp", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndRoundUpCustomResources", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateSimpleResourceWithSameLongValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testCompareToWithNoneResource", + "org.apache.hadoop.yarn.util.resource.TestResources#testComponentwiseMax", + "org.apache.hadoop.yarn.util.resource.TestResources#testComponentwiseMin", + "org.apache.hadoop.yarn.util.resource.TestResources#testFitsIn", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateResourceWithSameLongValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiply", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndRoundDown", + "org.apache.hadoop.yarn.util.resource.TestResources#testCompareToWithUnboundedResource", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndAddTo", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetNodeResourcesRedefineGpuErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testInitializeResourcesMap", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testResourceNameFormatValidation", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypes", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformationWithDiffUnits", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testMultipleOpsForResourcesWithTags", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetRequestedResourcesFromConfig", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetNodeResourcesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testResourceUnitParsing", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetNodeResourcesRedefineFpgaErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformation", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigs", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddInvalidlabel", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddlabelWithExclusivity", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testReplaceLabelsOnHostsShouldUpdateNodesBelongTo", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsToNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testGetNodeLabelsInfo", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testTrimLabelsWhenAddRemoveNodeLabels", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddRemovelabel", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddlabelWithCase", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testTrimLabelsWhenModifyLabelsOnNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsToNodesForSelectedLabels", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testRemoveNodeLabelsInfo", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testRemovelabelWithNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testNoMoreThanOneLabelExistedInOneHost", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsInfoToNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddReplaceRemoveLabelsOnNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testNodeLabelsDisabled", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testReplaceLabelsOnNodeInDistributedMode", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[1]", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBInitFromOldPB", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceAttributes", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testParsingResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBWithExtraResources", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testEmptyResourcePBInit", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetVirtualCores", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetMemory", + "org.apache.hadoop.yarn.api.TestResourceRequest#testEqualsOnExecutionTypeRequest", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testAMContainerTokenIdentifier", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testContainerTokenIdentifierOldFormat", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testContainerTokenIdentifier" + ], + "hadoop.security.authentication": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.client.TestClientRMProxy#testProxyUserCorrectUGI", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainersForAppAttempt", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetApplication", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainer", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntity", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainers", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineClientCleanup", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostIncompleteEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesWithError", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenDisabledOnSimpleAuth", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testCheckRetryCount", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineConnectorDestroy", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSyncCall", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSetTimelineToken", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionCalls", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionMultipleRetry", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testASyncCallMerge", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testConfigurableNumberOfMerges", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testAfterStop", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testProcessTreeDump", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testProcessTree", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testMemForOlderProcesses", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testCpuAndMemoryForProcessTree", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testDestroyProcessTree", + "org.apache.hadoop.yarn.util.TestFSDownload#testDirDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testUniqueDestinationPath", + "org.apache.hadoop.yarn.util.TestFSDownload#testResourceTimestampChangeDuringDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZipWithTurkishLocale", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPatternJar", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchive", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveTgz", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZip", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadBadPublic", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPublicWithStatCache", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownload", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccessWithPartialACLS", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccess", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccessWithNullACLS", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetPassword", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetHtmlEscapedURIWithQueryString", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testAppendQueryParams", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testLoadSslConfiguration", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[1]", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAccessDenied", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBlockContainsPortNumForUnavailableAppLog", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBadLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlockHar", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlock", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testNoLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRefreshLogRetentionSettings", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testCheckInterval", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletionTwoControllers", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletion", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRobustLogDeletion", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testDefaultLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomUser", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomGroup", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationDefault", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testFetchApplictionLogsHar", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetLogMetaFilesOfNode", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetRollOverLogMaxSize", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testLogAggregationIndexFileFormat", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testParseTimelineDelegationTokenIdentifierRenewer", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testReadCredentialsFromConfigFile", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testGetCredentialsFromTokensByteBuffer", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testWriteDockerCredentialsToPath" + ], + "yarn.scheduler.minimum-allocation-mb": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithExtraResource[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithEmptyCluster[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompare[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithNoExtraResource[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testNormalize[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioNumeratorAndDenominatorIsZero[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithOnlyMandatory[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsIn[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioDenominatorIsZero[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsInDiagnosticsCollector[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithExtraResource[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithEmptyCluster[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompare[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithNoExtraResource[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testNormalize[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioNumeratorAndDenominatorIsZero[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithOnlyMandatory[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsIn[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioDenominatorIsZero[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsInDiagnosticsCollector[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateSimpleResourceWithSameIntValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testAdd", + "org.apache.hadoop.yarn.util.resource.TestResources#testSubtract", + "org.apache.hadoop.yarn.util.resource.TestResources#testClone", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateResourceWithSameIntValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyRoundUp", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndRoundUpCustomResources", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateSimpleResourceWithSameLongValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testCompareToWithNoneResource", + "org.apache.hadoop.yarn.util.resource.TestResources#testComponentwiseMax", + "org.apache.hadoop.yarn.util.resource.TestResources#testComponentwiseMin", + "org.apache.hadoop.yarn.util.resource.TestResources#testFitsIn", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateResourceWithSameLongValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiply", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndRoundDown", + "org.apache.hadoop.yarn.util.resource.TestResources#testCompareToWithUnboundedResource", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndAddTo", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testInitializeResourcesMap", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testResourceNameFormatValidation", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypes", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformationWithDiffUnits", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testMultipleOpsForResourcesWithTags", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetRequestedResourcesFromConfig", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetNodeResourcesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testResourceUnitParsing", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformation", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigs", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddInvalidlabel", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddlabelWithExclusivity", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testReplaceLabelsOnHostsShouldUpdateNodesBelongTo", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsToNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testGetNodeLabelsInfo", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testTrimLabelsWhenAddRemoveNodeLabels", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddRemovelabel", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddlabelWithCase", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testTrimLabelsWhenModifyLabelsOnNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsToNodesForSelectedLabels", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testRemoveNodeLabelsInfo", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testRemovelabelWithNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testNoMoreThanOneLabelExistedInOneHost", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsInfoToNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddReplaceRemoveLabelsOnNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testNodeLabelsDisabled", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testReplaceLabelsOnNodeInDistributedMode", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[1]", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBInitFromOldPB", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceAttributes", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testParsingResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBWithExtraResources", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testEmptyResourcePBInit", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetVirtualCores", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetMemory", + "org.apache.hadoop.yarn.api.TestResourceRequest#testEqualsOnExecutionTypeRequest", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testAMContainerTokenIdentifier", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testContainerTokenIdentifierOldFormat", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testContainerTokenIdentifier" + ], + "hadoop.security.groups.negative-cache.secs": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.client.TestClientRMProxy#testProxyUserCorrectUGI", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainersForAppAttempt", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetApplication", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainer", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntity", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainers", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenOperationsRetry", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineClientCleanup", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostIncompleteEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesWithError", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenDisabledOnSimpleAuth", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testCheckRetryCount", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineConnectorDestroy", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSyncCall", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSetTimelineToken", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionCalls", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionMultipleRetry", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testASyncCallMerge", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testConfigurableNumberOfMerges", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testAfterStop", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testProcessTreeDump", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testProcessTree", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testMemForOlderProcesses", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testCpuAndMemoryForProcessTree", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testDestroyProcessTree", + "org.apache.hadoop.yarn.util.TestFSDownload#testDirDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testUniqueDestinationPath", + "org.apache.hadoop.yarn.util.TestFSDownload#testResourceTimestampChangeDuringDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZipWithTurkishLocale", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPatternJar", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchive", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveTgz", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZip", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadBadPublic", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPublicWithStatCache", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownload", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccessWithPartialACLS", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccess", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccessWithNullACLS", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetPassword", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetHtmlEscapedURIWithQueryString", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testAppendQueryParams", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testLoadSslConfiguration", + "org.apache.hadoop.yarn.webapp.TestWebApp#testYARNWebAppContext", + "org.apache.hadoop.yarn.webapp.TestWebApp#testDefaultRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithBindAddressNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testEncodedUrl", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testPortRanges", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePathsNoName", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreate", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCustomRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePaths", + "org.apache.hadoop.yarn.webapp.TestWebApp#testRobotsText", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[1]", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAccessDenied", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBlockContainsPortNumForUnavailableAppLog", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBadLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlockHar", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlock", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testNoLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRefreshLogRetentionSettings", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testCheckInterval", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletionTwoControllers", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletion", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRobustLogDeletion", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testDefaultLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomUser", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomGroup", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationDefault", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testFetchApplictionLogsHar", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetLogMetaFilesOfNode", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetRollOverLogMaxSize", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testLogAggregationIndexFileFormat", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testReadCredentialsFromConfigFile", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testGetCredentialsFromTokensByteBuffer", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testWriteDockerCredentialsToPath" + ], + "hadoop.security.resolver.impl": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.client.TestClientRMProxy#testProxyUserCorrectUGI", + "org.apache.hadoop.yarn.client.TestClientRMProxy#testGetRMDelegationTokenService", + "org.apache.hadoop.yarn.client.TestClientRMProxy#testGetAMRMTokenService", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainersForAppAttempt", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetApplication", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainer", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntity", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainers", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenOperationsRetry", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineClientCleanup", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostIncompleteEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesWithError", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenDisabledOnSimpleAuth", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testCheckRetryCount", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineConnectorDestroy", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSyncCall", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSetTimelineToken", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionCalls", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionMultipleRetry", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testASyncCallMerge", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testConfigurableNumberOfMerges", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testAfterStop", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testProcessTreeDump", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testProcessTree", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testMemForOlderProcesses", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testCpuAndMemoryForProcessTree", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testDestroyProcessTree", + "org.apache.hadoop.yarn.util.TestFSDownload#testDirDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testUniqueDestinationPath", + "org.apache.hadoop.yarn.util.TestFSDownload#testResourceTimestampChangeDuringDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZipWithTurkishLocale", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPatternJar", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchive", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveTgz", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZip", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadBadPublic", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPublicWithStatCache", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownload", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccessWithPartialACLS", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccess", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccessWithNullACLS", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetPassword", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetHtmlEscapedURIWithQueryString", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testAppendQueryParams", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testLoadSslConfiguration", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#TestRMWebAppURLRemoteAndLocal", + "org.apache.hadoop.yarn.webapp.TestWebApp#testYARNWebAppContext", + "org.apache.hadoop.yarn.webapp.TestWebApp#testDefaultRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithBindAddressNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testEncodedUrl", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testPortRanges", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePathsNoName", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreate", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCustomRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePaths", + "org.apache.hadoop.yarn.webapp.TestWebApp#testRobotsText", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[1]", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAccessDenied", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBlockContainsPortNumForUnavailableAppLog", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBadLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlockHar", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlock", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testNoLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRefreshLogRetentionSettings", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testCheckInterval", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletionTwoControllers", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletion", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRobustLogDeletion", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testDefaultLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomUser", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomGroup", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationDefault", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testFetchApplictionLogsHar", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetLogMetaFilesOfNode", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetRollOverLogMaxSize", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testLogAggregationIndexFileFormat", + "org.apache.hadoop.yarn.conf.TestYarnConfiguration#testUpdateConnectAddr", + "org.apache.hadoop.yarn.conf.TestYarnConfiguration#testGetSocketAddressForNMWithHA", + "org.apache.hadoop.yarn.conf.TestYarnConfiguration#testGetSocketAddr", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testParseTimelineDelegationTokenIdentifierRenewer", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testReadCredentialsFromConfigFile", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testGetCredentialsFromTokensByteBuffer", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testWriteDockerCredentialsToPath" + ], + "ipc.backoff.enable": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout" + ], + "ipc.server.max.connections": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout" + ], + "ipc.client.ping": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.client.TestClientRMProxy#testProxyUserCorrectUGI", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout" + ], + "ipc.server.log.slow.rpc": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout" + ], + "yarn.resource-types.memory-mb.maximum-allocation": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithExtraResource[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithEmptyCluster[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompare[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithNoExtraResource[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testNormalize[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioNumeratorAndDenominatorIsZero[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithOnlyMandatory[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsIn[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioDenominatorIsZero[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsInDiagnosticsCollector[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithExtraResource[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithEmptyCluster[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompare[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithNoExtraResource[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testNormalize[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioNumeratorAndDenominatorIsZero[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithOnlyMandatory[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsIn[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioDenominatorIsZero[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsInDiagnosticsCollector[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateSimpleResourceWithSameIntValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testAdd", + "org.apache.hadoop.yarn.util.resource.TestResources#testSubtract", + "org.apache.hadoop.yarn.util.resource.TestResources#testClone", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateResourceWithSameIntValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyRoundUp", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndRoundUpCustomResources", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateSimpleResourceWithSameLongValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testCompareToWithNoneResource", + "org.apache.hadoop.yarn.util.resource.TestResources#testComponentwiseMax", + "org.apache.hadoop.yarn.util.resource.TestResources#testComponentwiseMin", + "org.apache.hadoop.yarn.util.resource.TestResources#testFitsIn", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateResourceWithSameLongValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiply", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndRoundDown", + "org.apache.hadoop.yarn.util.resource.TestResources#testCompareToWithUnboundedResource", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndAddTo", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testInitializeResourcesMap", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testResourceNameFormatValidation", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypes", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformationWithDiffUnits", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testMultipleOpsForResourcesWithTags", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetRequestedResourcesFromConfig", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetNodeResourcesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testResourceUnitParsing", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformation", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigs", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testInitializeResourcesMapErrors", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddInvalidlabel", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddlabelWithExclusivity", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testReplaceLabelsOnHostsShouldUpdateNodesBelongTo", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsToNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testGetNodeLabelsInfo", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testTrimLabelsWhenAddRemoveNodeLabels", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddRemovelabel", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddlabelWithCase", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testTrimLabelsWhenModifyLabelsOnNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsToNodesForSelectedLabels", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testRemoveNodeLabelsInfo", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testRemovelabelWithNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testNoMoreThanOneLabelExistedInOneHost", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsInfoToNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddReplaceRemoveLabelsOnNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testNodeLabelsDisabled", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testReplaceLabelsOnNodeInDistributedMode", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[1]", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBInitFromOldPB", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceAttributes", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testParsingResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBWithExtraResources", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testEmptyResourcePBInit", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetVirtualCores", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetMemory", + "org.apache.hadoop.yarn.api.TestResourceRequest#testEqualsOnExecutionTypeRequest", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testAMContainerTokenIdentifier", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testContainerTokenIdentifierOldFormat", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testContainerTokenIdentifier" + ], + "yarn.resource-types": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithEmptyCluster[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithNoExtraResource[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testNormalize[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioNumeratorAndDenominatorIsZero[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithOnlyMandatory[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsIn[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioDenominatorIsZero[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsInDiagnosticsCollector[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithEmptyCluster[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithNoExtraResource[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testNormalize[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioNumeratorAndDenominatorIsZero[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithOnlyMandatory[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsIn[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioDenominatorIsZero[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsInDiagnosticsCollector[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateSimpleResourceWithSameIntValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testAdd", + "org.apache.hadoop.yarn.util.resource.TestResources#testSubtract", + "org.apache.hadoop.yarn.util.resource.TestResources#testClone", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateResourceWithSameIntValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyRoundUp", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndRoundUpCustomResources", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateSimpleResourceWithSameLongValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testCompareToWithNoneResource", + "org.apache.hadoop.yarn.util.resource.TestResources#testComponentwiseMax", + "org.apache.hadoop.yarn.util.resource.TestResources#testComponentwiseMin", + "org.apache.hadoop.yarn.util.resource.TestResources#testFitsIn", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateResourceWithSameLongValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiply", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndRoundDown", + "org.apache.hadoop.yarn.util.resource.TestResources#testCompareToWithUnboundedResource", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndAddTo", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetNodeResourcesRedefineGpuErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypes", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformationWithDiffUnits", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testMultipleOpsForResourcesWithTags", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetRequestedResourcesFromConfig", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetNodeResourcesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testResourceUnitParsing", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetNodeResourcesRedefineFpgaErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformation", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigs", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddInvalidlabel", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddlabelWithExclusivity", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testReplaceLabelsOnHostsShouldUpdateNodesBelongTo", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsToNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testGetNodeLabelsInfo", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testTrimLabelsWhenAddRemoveNodeLabels", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddRemovelabel", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddlabelWithCase", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testTrimLabelsWhenModifyLabelsOnNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsToNodesForSelectedLabels", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testRemoveNodeLabelsInfo", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testRemovelabelWithNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testNoMoreThanOneLabelExistedInOneHost", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsInfoToNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddReplaceRemoveLabelsOnNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testNodeLabelsDisabled", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testReplaceLabelsOnNodeInDistributedMode", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[1]", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBInitFromOldPB", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceAttributes", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testParsingResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBWithExtraResources", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testEmptyResourcePBInit", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetVirtualCores", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetMemory", + "org.apache.hadoop.yarn.api.TestResourceRequest#testEqualsOnExecutionTypeRequest", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testAMContainerTokenIdentifier", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testContainerTokenIdentifierOldFormat", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testContainerTokenIdentifier" + ], + "hadoop.security.token.service.use_ip": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.client.TestClientRMProxy#testProxyUserCorrectUGI", + "org.apache.hadoop.yarn.client.TestClientRMProxy#testGetRMDelegationTokenService", + "org.apache.hadoop.yarn.client.TestClientRMProxy#testGetAMRMTokenService", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainersForAppAttempt", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetApplication", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainer", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntity", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainers", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenOperationsRetry", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineClientCleanup", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostIncompleteEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesWithError", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenDisabledOnSimpleAuth", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testCheckRetryCount", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineConnectorDestroy", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSyncCall", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSetTimelineToken", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionCalls", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionMultipleRetry", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testASyncCallMerge", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testConfigurableNumberOfMerges", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testAfterStop", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testProcessTreeDump", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testProcessTree", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testMemForOlderProcesses", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testCpuAndMemoryForProcessTree", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testDestroyProcessTree", + "org.apache.hadoop.yarn.util.TestFSDownload#testDirDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testUniqueDestinationPath", + "org.apache.hadoop.yarn.util.TestFSDownload#testResourceTimestampChangeDuringDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZipWithTurkishLocale", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPatternJar", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchive", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveTgz", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZip", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadBadPublic", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPublicWithStatCache", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownload", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccessWithPartialACLS", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccess", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccessWithNullACLS", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetPassword", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetHtmlEscapedURIWithQueryString", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testAppendQueryParams", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testLoadSslConfiguration", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#TestRMWebAppURLRemoteAndLocal", + "org.apache.hadoop.yarn.webapp.TestWebApp#testYARNWebAppContext", + "org.apache.hadoop.yarn.webapp.TestWebApp#testDefaultRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithBindAddressNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testEncodedUrl", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testPortRanges", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePathsNoName", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreate", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCustomRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePaths", + "org.apache.hadoop.yarn.webapp.TestWebApp#testRobotsText", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[1]", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAccessDenied", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBlockContainsPortNumForUnavailableAppLog", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBadLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlockHar", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlock", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testNoLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRefreshLogRetentionSettings", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testCheckInterval", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletionTwoControllers", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletion", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRobustLogDeletion", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testDefaultLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomUser", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomGroup", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationDefault", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testFetchApplictionLogsHar", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetLogMetaFilesOfNode", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetRollOverLogMaxSize", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testLogAggregationIndexFileFormat", + "org.apache.hadoop.yarn.conf.TestYarnConfiguration#testUpdateConnectAddr", + "org.apache.hadoop.yarn.conf.TestYarnConfiguration#testGetSocketAddressForNMWithHA", + "org.apache.hadoop.yarn.conf.TestYarnConfiguration#testGetSocketAddr", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testParseTimelineDelegationTokenIdentifierRenewer", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testReadCredentialsFromConfigFile", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testGetCredentialsFromTokensByteBuffer", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testWriteDockerCredentialsToPath" + ], + "ipc.server.purge.interval": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout" + ], + "ipc.client.low-latency": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.client.TestClientRMProxy#testProxyUserCorrectUGI", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout" + ], + "hadoop.rpc.socket.factory.class.default": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.client.TestClientRMProxy#testProxyUserCorrectUGI", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout" + ], + "ipc.server.tcpnodelay": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout" + ], + "ipc.client.fallback-to-simple-auth-allowed": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.client.TestClientRMProxy#testProxyUserCorrectUGI", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetRollOverLogMaxSize" + ], + "hadoop.user.group.metrics.percentiles.intervals": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.client.TestClientRMProxy#testProxyUserCorrectUGI", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainersForAppAttempt", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetApplication", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainer", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntity", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainers", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenOperationsRetry", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineClientCleanup", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostIncompleteEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesWithError", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenDisabledOnSimpleAuth", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testCheckRetryCount", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineConnectorDestroy", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSyncCall", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSetTimelineToken", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionCalls", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionMultipleRetry", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testASyncCallMerge", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testConfigurableNumberOfMerges", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testAfterStop", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testProcessTreeDump", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testProcessTree", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testMemForOlderProcesses", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testCpuAndMemoryForProcessTree", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testDestroyProcessTree", + "org.apache.hadoop.yarn.util.TestFSDownload#testDirDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testUniqueDestinationPath", + "org.apache.hadoop.yarn.util.TestFSDownload#testResourceTimestampChangeDuringDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZipWithTurkishLocale", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPatternJar", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchive", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveTgz", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZip", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadBadPublic", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPublicWithStatCache", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownload", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccessWithPartialACLS", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccess", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccessWithNullACLS", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetPassword", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetHtmlEscapedURIWithQueryString", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testAppendQueryParams", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testLoadSslConfiguration", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[1]", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAccessDenied", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBlockContainsPortNumForUnavailableAppLog", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBadLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlockHar", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlock", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testNoLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRefreshLogRetentionSettings", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testCheckInterval", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletionTwoControllers", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletion", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRobustLogDeletion", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testDefaultLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomUser", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomGroup", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationDefault", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testFetchApplictionLogsHar", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetLogMetaFilesOfNode", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetRollOverLogMaxSize", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testLogAggregationIndexFileFormat", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testReadCredentialsFromConfigFile", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testGetCredentialsFromTokensByteBuffer", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testWriteDockerCredentialsToPath" + ], + "ipc.ping.interval": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.client.TestClientRMProxy#testProxyUserCorrectUGI", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout" + ], + "ipc.0.callqueue.impl": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout" + ], + "hadoop.security.groups.cache.background.reload.threads": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.client.TestClientRMProxy#testProxyUserCorrectUGI", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainersForAppAttempt", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetApplication", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainer", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntity", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainers", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenOperationsRetry", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineClientCleanup", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostIncompleteEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesWithError", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenDisabledOnSimpleAuth", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testCheckRetryCount", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineConnectorDestroy", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSyncCall", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSetTimelineToken", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionCalls", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionMultipleRetry", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testASyncCallMerge", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testConfigurableNumberOfMerges", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testAfterStop", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testProcessTreeDump", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testProcessTree", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testMemForOlderProcesses", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testCpuAndMemoryForProcessTree", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testDestroyProcessTree", + "org.apache.hadoop.yarn.util.TestFSDownload#testDirDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testUniqueDestinationPath", + "org.apache.hadoop.yarn.util.TestFSDownload#testResourceTimestampChangeDuringDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZipWithTurkishLocale", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPatternJar", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchive", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveTgz", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZip", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadBadPublic", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPublicWithStatCache", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownload", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccessWithPartialACLS", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccess", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccessWithNullACLS", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetPassword", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetHtmlEscapedURIWithQueryString", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testAppendQueryParams", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testLoadSslConfiguration", + "org.apache.hadoop.yarn.webapp.TestWebApp#testYARNWebAppContext", + "org.apache.hadoop.yarn.webapp.TestWebApp#testDefaultRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithBindAddressNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testEncodedUrl", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testPortRanges", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePathsNoName", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreate", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCustomRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePaths", + "org.apache.hadoop.yarn.webapp.TestWebApp#testRobotsText", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[1]", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAccessDenied", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBlockContainsPortNumForUnavailableAppLog", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBadLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlockHar", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlock", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testNoLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRefreshLogRetentionSettings", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testCheckInterval", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletionTwoControllers", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletion", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRobustLogDeletion", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testDefaultLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomUser", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomGroup", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationDefault", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testFetchApplictionLogsHar", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetLogMetaFilesOfNode", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetRollOverLogMaxSize", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testLogAggregationIndexFileFormat", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testReadCredentialsFromConfigFile", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testGetCredentialsFromTokensByteBuffer", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testWriteDockerCredentialsToPath" + ], + "ipc.client.connection.maxidletime": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.client.TestClientRMProxy#testProxyUserCorrectUGI", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout" + ], + "hadoop.security.dns.log-slow-lookups.enabled": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.client.TestClientRMProxy#testProxyUserCorrectUGI", + "org.apache.hadoop.yarn.client.TestClientRMProxy#testGetRMDelegationTokenService", + "org.apache.hadoop.yarn.client.TestClientRMProxy#testGetAMRMTokenService", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainersForAppAttempt", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetApplication", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainer", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntity", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainers", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenOperationsRetry", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineClientCleanup", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostIncompleteEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesWithError", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenDisabledOnSimpleAuth", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testCheckRetryCount", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineConnectorDestroy", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSyncCall", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSetTimelineToken", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionCalls", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionMultipleRetry", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testASyncCallMerge", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testConfigurableNumberOfMerges", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testAfterStop", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testProcessTreeDump", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testProcessTree", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testMemForOlderProcesses", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testCpuAndMemoryForProcessTree", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testDestroyProcessTree", + "org.apache.hadoop.yarn.util.TestFSDownload#testDirDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testUniqueDestinationPath", + "org.apache.hadoop.yarn.util.TestFSDownload#testResourceTimestampChangeDuringDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZipWithTurkishLocale", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPatternJar", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchive", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveTgz", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZip", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadBadPublic", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPublicWithStatCache", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownload", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccessWithPartialACLS", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccess", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccessWithNullACLS", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetPassword", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetHtmlEscapedURIWithQueryString", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testAppendQueryParams", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testLoadSslConfiguration", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#TestRMWebAppURLRemoteAndLocal", + "org.apache.hadoop.yarn.webapp.TestWebApp#testYARNWebAppContext", + "org.apache.hadoop.yarn.webapp.TestWebApp#testDefaultRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithBindAddressNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testEncodedUrl", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testPortRanges", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePathsNoName", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreate", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCustomRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePaths", + "org.apache.hadoop.yarn.webapp.TestWebApp#testRobotsText", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[1]", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAccessDenied", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBlockContainsPortNumForUnavailableAppLog", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBadLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlockHar", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlock", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testNoLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRefreshLogRetentionSettings", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testCheckInterval", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletionTwoControllers", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletion", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRobustLogDeletion", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testDefaultLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomUser", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomGroup", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationDefault", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testFetchApplictionLogsHar", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetLogMetaFilesOfNode", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetRollOverLogMaxSize", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testLogAggregationIndexFileFormat", + "org.apache.hadoop.yarn.conf.TestYarnConfiguration#testUpdateConnectAddr", + "org.apache.hadoop.yarn.conf.TestYarnConfiguration#testGetSocketAddressForNMWithHA", + "org.apache.hadoop.yarn.conf.TestYarnConfiguration#testGetSocketAddr", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testParseTimelineDelegationTokenIdentifierRenewer", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testReadCredentialsFromConfigFile", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testGetCredentialsFromTokensByteBuffer", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testWriteDockerCredentialsToPath" + ], + "hadoop.tokens": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.client.TestClientRMProxy#testProxyUserCorrectUGI", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainersForAppAttempt", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetApplication", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainer", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntity", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainers", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenOperationsRetry", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineClientCleanup", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostIncompleteEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesWithError", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenDisabledOnSimpleAuth", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testCheckRetryCount", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineConnectorDestroy", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSyncCall", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSetTimelineToken", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionCalls", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionMultipleRetry", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testASyncCallMerge", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testConfigurableNumberOfMerges", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testAfterStop", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testProcessTreeDump", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testProcessTree", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testMemForOlderProcesses", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testCpuAndMemoryForProcessTree", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testDestroyProcessTree", + "org.apache.hadoop.yarn.util.TestFSDownload#testDirDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testUniqueDestinationPath", + "org.apache.hadoop.yarn.util.TestFSDownload#testResourceTimestampChangeDuringDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZipWithTurkishLocale", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPatternJar", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchive", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveTgz", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZip", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadBadPublic", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPublicWithStatCache", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownload", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccessWithPartialACLS", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccess", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccessWithNullACLS", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetPassword", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetHtmlEscapedURIWithQueryString", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testAppendQueryParams", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testLoadSslConfiguration", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[1]", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAccessDenied", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBlockContainsPortNumForUnavailableAppLog", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBadLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlockHar", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlock", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testNoLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRefreshLogRetentionSettings", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testCheckInterval", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletionTwoControllers", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletion", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRobustLogDeletion", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testDefaultLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testFetchApplictionLogsHar", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetLogMetaFilesOfNode", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetRollOverLogMaxSize", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testLogAggregationIndexFileFormat", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testReadCredentialsFromConfigFile", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testGetCredentialsFromTokensByteBuffer", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testWriteDockerCredentialsToPath" + ], + "yarn.ipc.record.factory.class": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.client.TestClientRMProxy#testProxyUserCorrectUGI", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainersForAppAttempt", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetApplication", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainer", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntity", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainers", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSyncCall", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSetTimelineToken", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionCalls", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionMultipleRetry", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testASyncCallMerge", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testConfigurableNumberOfMerges", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testAfterStop", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testResourceUnitParsing", + "org.apache.hadoop.yarn.util.TestFSDownload#testDirDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testUniqueDestinationPath", + "org.apache.hadoop.yarn.util.TestFSDownload#testResourceTimestampChangeDuringDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZipWithTurkishLocale", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPatternJar", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchive", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveTgz", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZip", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadBadPublic", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPublicWithStatCache", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownload", + "org.apache.hadoop.yarn.util.TestConverterUtils#testNodeIdWithDefaultPort", + "org.apache.hadoop.yarn.util.TestConverterUtils#testInvalidAppattemptId", + "org.apache.hadoop.yarn.util.TestConverterUtils#testConvertUrlWithNoPort", + "org.apache.hadoop.yarn.util.TestConverterUtils#testContainerIdWithEpoch", + "org.apache.hadoop.yarn.util.TestConverterUtils#testContainerId", + "org.apache.hadoop.yarn.util.TestConverterUtils#testContainerIdNull", + "org.apache.hadoop.yarn.util.TestConverterUtils#testConvertUrlWithUserinfo", + "org.apache.hadoop.yarn.util.TestConverterUtils#testApplicationId", + "org.apache.hadoop.yarn.util.TestConverterUtils#testInvalidContainerId", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccessWithPartialACLS", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccess", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccessWithNullACLS", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.nodelabels.TestNodeLabelUtil#testIsNodeAttributesEquals", + "org.apache.hadoop.yarn.nodelabels.TestNodeLabelUtil#testAttributeValueAddition", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddInvalidlabel", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddlabelWithExclusivity", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testReplaceLabelsOnHostsShouldUpdateNodesBelongTo", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsToNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testGetNodeLabelsInfo", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testTrimLabelsWhenAddRemoveNodeLabels", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddRemovelabel", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddlabelWithCase", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testTrimLabelsWhenModifyLabelsOnNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsToNodesForSelectedLabels", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testRemoveNodeLabelsInfo", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testRemovelabelWithNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testNoMoreThanOneLabelExistedInOneHost", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsInfoToNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddReplaceRemoveLabelsOnNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testNodeLabelsDisabled", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testReplaceLabelsOnNodeInDistributedMode", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[1]", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAccessDenied", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBlockContainsPortNumForUnavailableAppLog", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBadLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlockHar", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlock", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testNoLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRefreshLogRetentionSettings", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testCheckInterval", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletionTwoControllers", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletion", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRobustLogDeletion", + "org.apache.hadoop.yarn.logaggregation.TestLogAggregationMetaCollector#testAllNull", + "org.apache.hadoop.yarn.logaggregation.TestLogAggregationMetaCollector#testMultipleFileRegex", + "org.apache.hadoop.yarn.logaggregation.TestLogAggregationMetaCollector#testMultipleNodeRegexRequest", + "org.apache.hadoop.yarn.logaggregation.TestLogAggregationMetaCollector#testInvalidQueryStrings", + "org.apache.hadoop.yarn.logaggregation.TestLogAggregationMetaCollector#testContainerIdExactMatch", + "org.apache.hadoop.yarn.logaggregation.TestLogAggregationMetaCollector#testSingleNodeRequest", + "org.apache.hadoop.yarn.logaggregation.TestLogAggregationMetaCollector#testAllSet", + "org.apache.hadoop.yarn.logaggregation.TestLogAggregationMetaCollector#testMultipleFileBetweenSize", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testDefaultLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testClassConfUsed", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testLogAggregationFileControllerFactoryClassNotSet", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testNodemanagerConfigurationIsUsed", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testDefaultConfUsed", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testFetchApplictionLogsHar", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetLogMetaFilesOfNode", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetRollOverLogMaxSize", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testLogAggregationIndexFileFormat", + "org.apache.hadoop.yarn.api.TestApplicationId#testApplicationId", + "org.apache.hadoop.yarn.api.TestNodeId#testNodeId", + "org.apache.hadoop.yarn.api.TestGetApplicationsRequest#testGetApplicationsRequest", + "org.apache.hadoop.yarn.api.TestTimelineEntityGroupId#testTimelineEntityGroupId", + "org.apache.hadoop.yarn.api.TestContainerId#testContainerId", + "org.apache.hadoop.yarn.api.TestApplicationAttemptId#testApplicationAttemptId", + "org.apache.hadoop.yarn.api.records.TestResourceUtilization#testResourceUtilizationWithCustomResource", + "org.apache.hadoop.yarn.api.records.TestResourceUtilization#testResourceUtilization", + "org.apache.hadoop.yarn.api.records.timelineservice.TestTimelineServiceRecords#testFirstClassCitizenEntities", + "org.apache.hadoop.yarn.api.records.impl.pb.TestApplicationClientProtocolRecords#testCLCPBImplNullResourceType", + "org.apache.hadoop.yarn.api.records.impl.pb.TestApplicationClientProtocolRecords#testCLCPBImplNullResourceVisibility", + "org.apache.hadoop.yarn.api.records.impl.pb.TestApplicationClientProtocolRecords#testCLCPBImplNullResourceURL", + "org.apache.hadoop.yarn.api.records.impl.pb.TestApplicationClientProtocolRecords#testCLCPBImplNullEnv", + "org.apache.hadoop.yarn.api.TestApplicatonReport#testApplicationReport", + "org.apache.hadoop.yarn.api.TestResourceRequest#testEqualsOnExecutionTypeRequest", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testAMRMTokenIdentifier", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testNMTokenIdentifierOldFormat", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testAMContainerTokenIdentifier", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testContainerTokenIdentifierOldFormat", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testContainerTokenIdentifier", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testNMTokenIdentifier", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testAMRMTokenIdentifierOldFormat", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testClientToAMTokenIdentifier" + ], + "ipc.0.callqueue.capacity.weights": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout" + ], + "ipc.0.faircallqueue.priority-levels": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout" + ], + "ipc.client.connect.timeout": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.client.TestClientRMProxy#testProxyUserCorrectUGI", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout" + ], + "ipc.0.scheduler.impl": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout" + ], + "ipc.client.connect.retry.interval": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.client.TestClientRMProxy#testProxyUserCorrectUGI", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout" + ], + "ipc.scheduler.impl": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout" + ], + "yarn.resource-types.vcores.minimum-allocation": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithExtraResource[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithEmptyCluster[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompare[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithNoExtraResource[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testNormalize[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioNumeratorAndDenominatorIsZero[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithOnlyMandatory[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsIn[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioDenominatorIsZero[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsInDiagnosticsCollector[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithExtraResource[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithEmptyCluster[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompare[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithNoExtraResource[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testNormalize[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioNumeratorAndDenominatorIsZero[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithOnlyMandatory[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsIn[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioDenominatorIsZero[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsInDiagnosticsCollector[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateSimpleResourceWithSameIntValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testAdd", + "org.apache.hadoop.yarn.util.resource.TestResources#testSubtract", + "org.apache.hadoop.yarn.util.resource.TestResources#testClone", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateResourceWithSameIntValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyRoundUp", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndRoundUpCustomResources", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateSimpleResourceWithSameLongValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testCompareToWithNoneResource", + "org.apache.hadoop.yarn.util.resource.TestResources#testComponentwiseMax", + "org.apache.hadoop.yarn.util.resource.TestResources#testComponentwiseMin", + "org.apache.hadoop.yarn.util.resource.TestResources#testFitsIn", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateResourceWithSameLongValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiply", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndRoundDown", + "org.apache.hadoop.yarn.util.resource.TestResources#testCompareToWithUnboundedResource", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndAddTo", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testInitializeResourcesMap", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testResourceNameFormatValidation", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypes", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformationWithDiffUnits", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testMultipleOpsForResourcesWithTags", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetRequestedResourcesFromConfig", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetNodeResourcesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testResourceUnitParsing", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformation", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigs", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testInitializeResourcesMapErrors", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddInvalidlabel", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddlabelWithExclusivity", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testReplaceLabelsOnHostsShouldUpdateNodesBelongTo", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsToNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testGetNodeLabelsInfo", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testTrimLabelsWhenAddRemoveNodeLabels", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddRemovelabel", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddlabelWithCase", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testTrimLabelsWhenModifyLabelsOnNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsToNodesForSelectedLabels", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testRemoveNodeLabelsInfo", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testRemovelabelWithNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testNoMoreThanOneLabelExistedInOneHost", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsInfoToNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddReplaceRemoveLabelsOnNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testNodeLabelsDisabled", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testReplaceLabelsOnNodeInDistributedMode", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[1]", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBInitFromOldPB", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceAttributes", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testParsingResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBWithExtraResources", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testEmptyResourcePBInit", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetVirtualCores", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetMemory", + "org.apache.hadoop.yarn.api.TestResourceRequest#testEqualsOnExecutionTypeRequest", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testAMContainerTokenIdentifier", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testContainerTokenIdentifierOldFormat", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testContainerTokenIdentifier" + ], + "yarn.ipc.server.factory.class": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout" + ], + "hadoop.security.groups.cache.background.reload": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.client.TestClientRMProxy#testProxyUserCorrectUGI", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainersForAppAttempt", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetApplication", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainer", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntity", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainers", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenOperationsRetry", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineClientCleanup", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostIncompleteEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesWithError", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenDisabledOnSimpleAuth", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testCheckRetryCount", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineConnectorDestroy", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSyncCall", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSetTimelineToken", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionCalls", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionMultipleRetry", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testASyncCallMerge", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testConfigurableNumberOfMerges", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testAfterStop", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testProcessTreeDump", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testProcessTree", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testMemForOlderProcesses", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testCpuAndMemoryForProcessTree", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testDestroyProcessTree", + "org.apache.hadoop.yarn.util.TestFSDownload#testDirDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testUniqueDestinationPath", + "org.apache.hadoop.yarn.util.TestFSDownload#testResourceTimestampChangeDuringDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZipWithTurkishLocale", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPatternJar", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchive", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveTgz", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZip", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadBadPublic", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPublicWithStatCache", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownload", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccessWithPartialACLS", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccess", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccessWithNullACLS", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetPassword", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetHtmlEscapedURIWithQueryString", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testAppendQueryParams", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testLoadSslConfiguration", + "org.apache.hadoop.yarn.webapp.TestWebApp#testYARNWebAppContext", + "org.apache.hadoop.yarn.webapp.TestWebApp#testDefaultRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithBindAddressNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testEncodedUrl", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testPortRanges", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePathsNoName", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreate", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCustomRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePaths", + "org.apache.hadoop.yarn.webapp.TestWebApp#testRobotsText", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[1]", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAccessDenied", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBlockContainsPortNumForUnavailableAppLog", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBadLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlockHar", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlock", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testNoLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRefreshLogRetentionSettings", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testCheckInterval", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletionTwoControllers", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletion", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRobustLogDeletion", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testDefaultLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomUser", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomGroup", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationDefault", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testFetchApplictionLogsHar", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetLogMetaFilesOfNode", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetRollOverLogMaxSize", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testLogAggregationIndexFileFormat", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testReadCredentialsFromConfigFile", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testGetCredentialsFromTokensByteBuffer", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testWriteDockerCredentialsToPath" + ], + "hadoop.security.dns.log-slow-lookups.threshold.ms": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.client.TestClientRMProxy#testProxyUserCorrectUGI", + "org.apache.hadoop.yarn.client.TestClientRMProxy#testGetRMDelegationTokenService", + "org.apache.hadoop.yarn.client.TestClientRMProxy#testGetAMRMTokenService", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainersForAppAttempt", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetApplication", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainer", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntity", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainers", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenOperationsRetry", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineClientCleanup", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostIncompleteEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesWithError", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenDisabledOnSimpleAuth", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testCheckRetryCount", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineConnectorDestroy", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSyncCall", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSetTimelineToken", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionCalls", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionMultipleRetry", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testASyncCallMerge", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testConfigurableNumberOfMerges", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testAfterStop", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testProcessTreeDump", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testProcessTree", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testMemForOlderProcesses", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testCpuAndMemoryForProcessTree", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testDestroyProcessTree", + "org.apache.hadoop.yarn.util.TestFSDownload#testDirDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testUniqueDestinationPath", + "org.apache.hadoop.yarn.util.TestFSDownload#testResourceTimestampChangeDuringDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZipWithTurkishLocale", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPatternJar", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchive", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveTgz", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZip", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadBadPublic", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPublicWithStatCache", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownload", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccessWithPartialACLS", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccess", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccessWithNullACLS", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetPassword", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetHtmlEscapedURIWithQueryString", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testAppendQueryParams", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testLoadSslConfiguration", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#TestRMWebAppURLRemoteAndLocal", + "org.apache.hadoop.yarn.webapp.TestWebApp#testYARNWebAppContext", + "org.apache.hadoop.yarn.webapp.TestWebApp#testDefaultRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithBindAddressNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testEncodedUrl", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testPortRanges", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePathsNoName", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreate", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCustomRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePaths", + "org.apache.hadoop.yarn.webapp.TestWebApp#testRobotsText", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[1]", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAccessDenied", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBlockContainsPortNumForUnavailableAppLog", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBadLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlockHar", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlock", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testNoLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRefreshLogRetentionSettings", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testCheckInterval", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletionTwoControllers", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletion", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRobustLogDeletion", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testDefaultLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomUser", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomGroup", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationDefault", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testFetchApplictionLogsHar", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetLogMetaFilesOfNode", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetRollOverLogMaxSize", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testLogAggregationIndexFileFormat", + "org.apache.hadoop.yarn.conf.TestYarnConfiguration#testUpdateConnectAddr", + "org.apache.hadoop.yarn.conf.TestYarnConfiguration#testGetSocketAddressForNMWithHA", + "org.apache.hadoop.yarn.conf.TestYarnConfiguration#testGetSocketAddr", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testParseTimelineDelegationTokenIdentifierRenewer", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testReadCredentialsFromConfigFile", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testGetCredentialsFromTokensByteBuffer", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testWriteDockerCredentialsToPath" + ], + "hadoop.security.groups.cache.warn.after.ms": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.client.TestClientRMProxy#testProxyUserCorrectUGI", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainersForAppAttempt", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetApplication", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainer", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntity", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainers", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenOperationsRetry", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineClientCleanup", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostIncompleteEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesWithError", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenDisabledOnSimpleAuth", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testCheckRetryCount", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineConnectorDestroy", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSyncCall", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSetTimelineToken", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionCalls", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionMultipleRetry", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testASyncCallMerge", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testConfigurableNumberOfMerges", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testAfterStop", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testProcessTreeDump", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testProcessTree", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testMemForOlderProcesses", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testCpuAndMemoryForProcessTree", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testDestroyProcessTree", + "org.apache.hadoop.yarn.util.TestFSDownload#testDirDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testUniqueDestinationPath", + "org.apache.hadoop.yarn.util.TestFSDownload#testResourceTimestampChangeDuringDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZipWithTurkishLocale", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPatternJar", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchive", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveTgz", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZip", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadBadPublic", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPublicWithStatCache", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownload", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccessWithPartialACLS", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccess", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccessWithNullACLS", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetPassword", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetHtmlEscapedURIWithQueryString", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testAppendQueryParams", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testLoadSslConfiguration", + "org.apache.hadoop.yarn.webapp.TestWebApp#testYARNWebAppContext", + "org.apache.hadoop.yarn.webapp.TestWebApp#testDefaultRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithBindAddressNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testEncodedUrl", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testPortRanges", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePathsNoName", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreate", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCustomRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePaths", + "org.apache.hadoop.yarn.webapp.TestWebApp#testRobotsText", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[1]", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAccessDenied", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBlockContainsPortNumForUnavailableAppLog", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBadLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlockHar", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlock", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testNoLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRefreshLogRetentionSettings", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testCheckInterval", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletionTwoControllers", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletion", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRobustLogDeletion", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testDefaultLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomUser", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomGroup", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationDefault", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testFetchApplictionLogsHar", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetLogMetaFilesOfNode", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetRollOverLogMaxSize", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testLogAggregationIndexFileFormat", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testReadCredentialsFromConfigFile", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testGetCredentialsFromTokensByteBuffer", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testWriteDockerCredentialsToPath" + ], + "ipc.client.async.calls.max": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.client.TestClientRMProxy#testProxyUserCorrectUGI", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout" + ], + "ipc.client.connect.max.retries": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout" + ], + "yarn.resource-types.vcores.maximum-allocation": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithExtraResource[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithEmptyCluster[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompare[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithNoExtraResource[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testNormalize[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioNumeratorAndDenominatorIsZero[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithOnlyMandatory[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsIn[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioDenominatorIsZero[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsInDiagnosticsCollector[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithExtraResource[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithEmptyCluster[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompare[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithNoExtraResource[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testNormalize[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioNumeratorAndDenominatorIsZero[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithOnlyMandatory[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsIn[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioDenominatorIsZero[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsInDiagnosticsCollector[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateSimpleResourceWithSameIntValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testAdd", + "org.apache.hadoop.yarn.util.resource.TestResources#testSubtract", + "org.apache.hadoop.yarn.util.resource.TestResources#testClone", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateResourceWithSameIntValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyRoundUp", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndRoundUpCustomResources", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateSimpleResourceWithSameLongValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testCompareToWithNoneResource", + "org.apache.hadoop.yarn.util.resource.TestResources#testComponentwiseMax", + "org.apache.hadoop.yarn.util.resource.TestResources#testComponentwiseMin", + "org.apache.hadoop.yarn.util.resource.TestResources#testFitsIn", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateResourceWithSameLongValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiply", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndRoundDown", + "org.apache.hadoop.yarn.util.resource.TestResources#testCompareToWithUnboundedResource", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndAddTo", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testInitializeResourcesMap", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testResourceNameFormatValidation", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypes", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformationWithDiffUnits", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testMultipleOpsForResourcesWithTags", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetRequestedResourcesFromConfig", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetNodeResourcesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testResourceUnitParsing", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformation", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigs", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testInitializeResourcesMapErrors", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddInvalidlabel", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddlabelWithExclusivity", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testReplaceLabelsOnHostsShouldUpdateNodesBelongTo", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsToNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testGetNodeLabelsInfo", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testTrimLabelsWhenAddRemoveNodeLabels", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddRemovelabel", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddlabelWithCase", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testTrimLabelsWhenModifyLabelsOnNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsToNodesForSelectedLabels", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testRemoveNodeLabelsInfo", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testRemovelabelWithNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testNoMoreThanOneLabelExistedInOneHost", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsInfoToNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddReplaceRemoveLabelsOnNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testNodeLabelsDisabled", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testReplaceLabelsOnNodeInDistributedMode", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[1]", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBInitFromOldPB", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceAttributes", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testParsingResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBWithExtraResources", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testEmptyResourcePBInit", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetVirtualCores", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetMemory", + "org.apache.hadoop.yarn.api.TestResourceRequest#testEqualsOnExecutionTypeRequest", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testAMContainerTokenIdentifier", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testContainerTokenIdentifierOldFormat", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testContainerTokenIdentifier" + ], + "ipc.server.handler.queue.size": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout" + ], + "ipc.callqueue.impl": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout" + ], + "ipc.client.kill.max": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout" + ], + "yarn.scheduler.maximum-allocation-vcores": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithExtraResource[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithEmptyCluster[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompare[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithNoExtraResource[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testNormalize[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioNumeratorAndDenominatorIsZero[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithOnlyMandatory[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsIn[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioDenominatorIsZero[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsInDiagnosticsCollector[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithExtraResource[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithEmptyCluster[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompare[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithNoExtraResource[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testNormalize[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioNumeratorAndDenominatorIsZero[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithOnlyMandatory[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsIn[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioDenominatorIsZero[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsInDiagnosticsCollector[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateSimpleResourceWithSameIntValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testAdd", + "org.apache.hadoop.yarn.util.resource.TestResources#testSubtract", + "org.apache.hadoop.yarn.util.resource.TestResources#testClone", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateResourceWithSameIntValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyRoundUp", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndRoundUpCustomResources", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateSimpleResourceWithSameLongValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testCompareToWithNoneResource", + "org.apache.hadoop.yarn.util.resource.TestResources#testComponentwiseMax", + "org.apache.hadoop.yarn.util.resource.TestResources#testComponentwiseMin", + "org.apache.hadoop.yarn.util.resource.TestResources#testFitsIn", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateResourceWithSameLongValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiply", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndRoundDown", + "org.apache.hadoop.yarn.util.resource.TestResources#testCompareToWithUnboundedResource", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndAddTo", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testInitializeResourcesMap", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testResourceNameFormatValidation", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypes", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformationWithDiffUnits", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testMultipleOpsForResourcesWithTags", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetRequestedResourcesFromConfig", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetNodeResourcesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testResourceUnitParsing", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformation", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigs", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddInvalidlabel", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddlabelWithExclusivity", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testReplaceLabelsOnHostsShouldUpdateNodesBelongTo", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsToNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testGetNodeLabelsInfo", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testTrimLabelsWhenAddRemoveNodeLabels", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddRemovelabel", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddlabelWithCase", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testTrimLabelsWhenModifyLabelsOnNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsToNodesForSelectedLabels", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testRemoveNodeLabelsInfo", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testRemovelabelWithNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testNoMoreThanOneLabelExistedInOneHost", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsInfoToNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddReplaceRemoveLabelsOnNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testNodeLabelsDisabled", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testReplaceLabelsOnNodeInDistributedMode", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[1]", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBInitFromOldPB", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceAttributes", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testParsingResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBWithExtraResources", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testEmptyResourcePBInit", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetVirtualCores", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetMemory", + "org.apache.hadoop.yarn.api.TestResourceRequest#testEqualsOnExecutionTypeRequest", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testAMContainerTokenIdentifier", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testContainerTokenIdentifierOldFormat", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testContainerTokenIdentifier" + ], + "hadoop.security.auth_to_local": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.client.TestClientRMProxy#testProxyUserCorrectUGI", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainersForAppAttempt", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetApplication", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainer", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntity", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainers", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenOperationsRetry", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineClientCleanup", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostIncompleteEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesWithError", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenDisabledOnSimpleAuth", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testCheckRetryCount", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineConnectorDestroy", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSyncCall", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSetTimelineToken", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionCalls", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionMultipleRetry", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testASyncCallMerge", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testConfigurableNumberOfMerges", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testAfterStop", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testProcessTreeDump", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testProcessTree", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testMemForOlderProcesses", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testCpuAndMemoryForProcessTree", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testDestroyProcessTree", + "org.apache.hadoop.yarn.util.TestFSDownload#testDirDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testUniqueDestinationPath", + "org.apache.hadoop.yarn.util.TestFSDownload#testResourceTimestampChangeDuringDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZipWithTurkishLocale", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPatternJar", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchive", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveTgz", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZip", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadBadPublic", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPublicWithStatCache", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownload", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccessWithPartialACLS", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccess", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccessWithNullACLS", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetPassword", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetHtmlEscapedURIWithQueryString", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testAppendQueryParams", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testLoadSslConfiguration", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[1]", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAccessDenied", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBlockContainsPortNumForUnavailableAppLog", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBadLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlockHar", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlock", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testNoLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRefreshLogRetentionSettings", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testCheckInterval", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletionTwoControllers", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletion", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRobustLogDeletion", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testDefaultLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomUser", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomGroup", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationDefault", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testFetchApplictionLogsHar", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetLogMetaFilesOfNode", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetRollOverLogMaxSize", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testLogAggregationIndexFileFormat", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testReadCredentialsFromConfigFile", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testGetCredentialsFromTokensByteBuffer", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testWriteDockerCredentialsToPath" + ], + "yarn.resource-types.memory-mb.minimum-allocation": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithExtraResource[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithEmptyCluster[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompare[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithNoExtraResource[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testNormalize[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioNumeratorAndDenominatorIsZero[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithOnlyMandatory[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsIn[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioDenominatorIsZero[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsInDiagnosticsCollector[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithExtraResource[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithEmptyCluster[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompare[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithNoExtraResource[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testNormalize[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioNumeratorAndDenominatorIsZero[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithOnlyMandatory[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsIn[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioDenominatorIsZero[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsInDiagnosticsCollector[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateSimpleResourceWithSameIntValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testAdd", + "org.apache.hadoop.yarn.util.resource.TestResources#testSubtract", + "org.apache.hadoop.yarn.util.resource.TestResources#testClone", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateResourceWithSameIntValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyRoundUp", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndRoundUpCustomResources", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateSimpleResourceWithSameLongValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testCompareToWithNoneResource", + "org.apache.hadoop.yarn.util.resource.TestResources#testComponentwiseMax", + "org.apache.hadoop.yarn.util.resource.TestResources#testComponentwiseMin", + "org.apache.hadoop.yarn.util.resource.TestResources#testFitsIn", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateResourceWithSameLongValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiply", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndRoundDown", + "org.apache.hadoop.yarn.util.resource.TestResources#testCompareToWithUnboundedResource", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndAddTo", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testInitializeResourcesMap", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testResourceNameFormatValidation", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypes", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformationWithDiffUnits", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testMultipleOpsForResourcesWithTags", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetRequestedResourcesFromConfig", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetNodeResourcesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testResourceUnitParsing", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformation", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigs", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testInitializeResourcesMapErrors", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddInvalidlabel", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddlabelWithExclusivity", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testReplaceLabelsOnHostsShouldUpdateNodesBelongTo", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsToNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testGetNodeLabelsInfo", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testTrimLabelsWhenAddRemoveNodeLabels", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddRemovelabel", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddlabelWithCase", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testTrimLabelsWhenModifyLabelsOnNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsToNodesForSelectedLabels", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testRemoveNodeLabelsInfo", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testRemovelabelWithNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testNoMoreThanOneLabelExistedInOneHost", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsInfoToNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddReplaceRemoveLabelsOnNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testNodeLabelsDisabled", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testReplaceLabelsOnNodeInDistributedMode", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[1]", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBInitFromOldPB", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceAttributes", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testParsingResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBWithExtraResources", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testEmptyResourcePBInit", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetVirtualCores", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetMemory", + "org.apache.hadoop.yarn.api.TestResourceRequest#testEqualsOnExecutionTypeRequest", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testAMContainerTokenIdentifier", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testContainerTokenIdentifierOldFormat", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testContainerTokenIdentifier" + ], + "hadoop.user.group.static.mapping.overrides": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.client.TestClientRMProxy#testProxyUserCorrectUGI", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainersForAppAttempt", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetApplication", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainer", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntity", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainers", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenOperationsRetry", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineClientCleanup", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostIncompleteEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesWithError", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenDisabledOnSimpleAuth", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testCheckRetryCount", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineConnectorDestroy", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSyncCall", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSetTimelineToken", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionCalls", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionMultipleRetry", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testASyncCallMerge", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testConfigurableNumberOfMerges", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testAfterStop", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testProcessTreeDump", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testProcessTree", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testMemForOlderProcesses", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testCpuAndMemoryForProcessTree", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testDestroyProcessTree", + "org.apache.hadoop.yarn.util.TestFSDownload#testDirDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testUniqueDestinationPath", + "org.apache.hadoop.yarn.util.TestFSDownload#testResourceTimestampChangeDuringDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZipWithTurkishLocale", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPatternJar", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchive", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveTgz", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZip", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadBadPublic", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPublicWithStatCache", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownload", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccessWithPartialACLS", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccess", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccessWithNullACLS", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetPassword", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetHtmlEscapedURIWithQueryString", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testAppendQueryParams", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testLoadSslConfiguration", + "org.apache.hadoop.yarn.webapp.TestWebApp#testYARNWebAppContext", + "org.apache.hadoop.yarn.webapp.TestWebApp#testDefaultRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithBindAddressNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testEncodedUrl", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testPortRanges", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePathsNoName", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreate", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCustomRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePaths", + "org.apache.hadoop.yarn.webapp.TestWebApp#testRobotsText", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[1]", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAccessDenied", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBlockContainsPortNumForUnavailableAppLog", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBadLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlockHar", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlock", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testNoLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRefreshLogRetentionSettings", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testCheckInterval", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletionTwoControllers", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletion", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRobustLogDeletion", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testDefaultLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomUser", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomGroup", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationDefault", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testFetchApplictionLogsHar", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetLogMetaFilesOfNode", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetRollOverLogMaxSize", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testLogAggregationIndexFileFormat", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testReadCredentialsFromConfigFile", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testGetCredentialsFromTokensByteBuffer", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testWriteDockerCredentialsToPath" + ], + "hadoop.security.auth_to_local.mechanism": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.client.TestClientRMProxy#testProxyUserCorrectUGI", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainersForAppAttempt", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetApplication", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainer", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntity", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainers", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenOperationsRetry", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineClientCleanup", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostIncompleteEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesWithError", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenDisabledOnSimpleAuth", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testCheckRetryCount", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineConnectorDestroy", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSyncCall", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSetTimelineToken", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionCalls", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionMultipleRetry", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testASyncCallMerge", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testConfigurableNumberOfMerges", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testAfterStop", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testProcessTreeDump", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testProcessTree", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testMemForOlderProcesses", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testCpuAndMemoryForProcessTree", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testDestroyProcessTree", + "org.apache.hadoop.yarn.util.TestFSDownload#testDirDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testUniqueDestinationPath", + "org.apache.hadoop.yarn.util.TestFSDownload#testResourceTimestampChangeDuringDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZipWithTurkishLocale", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPatternJar", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchive", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveTgz", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZip", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadBadPublic", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPublicWithStatCache", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownload", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccessWithPartialACLS", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccess", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccessWithNullACLS", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetPassword", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetHtmlEscapedURIWithQueryString", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testAppendQueryParams", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testLoadSslConfiguration", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[1]", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAccessDenied", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBlockContainsPortNumForUnavailableAppLog", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBadLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlockHar", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlock", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testNoLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRefreshLogRetentionSettings", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testCheckInterval", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletionTwoControllers", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletion", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRobustLogDeletion", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testDefaultLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomUser", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomGroup", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationDefault", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testFetchApplictionLogsHar", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetLogMetaFilesOfNode", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetRollOverLogMaxSize", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testLogAggregationIndexFileFormat", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testParseTimelineDelegationTokenIdentifierRenewer", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testReadCredentialsFromConfigFile", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testGetCredentialsFromTokensByteBuffer", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testWriteDockerCredentialsToPath" + ], + "rpc.metrics.percentiles.intervals": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout" + ], + "ipc.0.backoff.enable": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout" + ], + "ipc.client.tcpnodelay": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.client.TestClientRMProxy#testProxyUserCorrectUGI", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout" + ], + "yarn.scheduler.maximum-allocation-mb": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithExtraResource[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithEmptyCluster[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompare[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithNoExtraResource[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testNormalize[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioNumeratorAndDenominatorIsZero[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithOnlyMandatory[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsIn[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioDenominatorIsZero[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsInDiagnosticsCollector[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithExtraResource[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithEmptyCluster[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompare[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithNoExtraResource[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testNormalize[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioNumeratorAndDenominatorIsZero[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithOnlyMandatory[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsIn[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioDenominatorIsZero[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsInDiagnosticsCollector[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateSimpleResourceWithSameIntValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testAdd", + "org.apache.hadoop.yarn.util.resource.TestResources#testSubtract", + "org.apache.hadoop.yarn.util.resource.TestResources#testClone", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateResourceWithSameIntValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyRoundUp", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndRoundUpCustomResources", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateSimpleResourceWithSameLongValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testCompareToWithNoneResource", + "org.apache.hadoop.yarn.util.resource.TestResources#testComponentwiseMax", + "org.apache.hadoop.yarn.util.resource.TestResources#testComponentwiseMin", + "org.apache.hadoop.yarn.util.resource.TestResources#testFitsIn", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateResourceWithSameLongValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiply", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndRoundDown", + "org.apache.hadoop.yarn.util.resource.TestResources#testCompareToWithUnboundedResource", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndAddTo", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testInitializeResourcesMap", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testResourceNameFormatValidation", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypes", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformationWithDiffUnits", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testMultipleOpsForResourcesWithTags", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetRequestedResourcesFromConfig", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetNodeResourcesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testResourceUnitParsing", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformation", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigs", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddInvalidlabel", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddlabelWithExclusivity", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testReplaceLabelsOnHostsShouldUpdateNodesBelongTo", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsToNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testGetNodeLabelsInfo", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testTrimLabelsWhenAddRemoveNodeLabels", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddRemovelabel", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddlabelWithCase", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testTrimLabelsWhenModifyLabelsOnNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsToNodesForSelectedLabels", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testRemoveNodeLabelsInfo", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testRemovelabelWithNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testNoMoreThanOneLabelExistedInOneHost", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsInfoToNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddReplaceRemoveLabelsOnNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testNodeLabelsDisabled", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testReplaceLabelsOnNodeInDistributedMode", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[1]", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBInitFromOldPB", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceAttributes", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testParsingResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBWithExtraResources", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testEmptyResourcePBInit", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetVirtualCores", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetMemory", + "org.apache.hadoop.yarn.api.TestResourceRequest#testEqualsOnExecutionTypeRequest", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testAMContainerTokenIdentifier", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testContainerTokenIdentifierOldFormat", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testContainerTokenIdentifier" + ], + "ipc.client.connect.max.retries.on.sasl": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.client.TestClientRMProxy#testProxyUserCorrectUGI", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout" + ], + "ipc.server.reuseaddr": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout" + ], + "ipc.client.idlethreshold": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout" + ], + "ipc.maximum.data.length": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout" + ], + "hadoop.security.groups.cache.secs": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.client.TestClientRMProxy#testProxyUserCorrectUGI", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainersForAppAttempt", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetApplication", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainer", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntity", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainers", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenOperationsRetry", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineClientCleanup", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostIncompleteEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesWithError", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenDisabledOnSimpleAuth", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testCheckRetryCount", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineConnectorDestroy", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSyncCall", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSetTimelineToken", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionCalls", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionMultipleRetry", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testASyncCallMerge", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testConfigurableNumberOfMerges", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testAfterStop", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testProcessTreeDump", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testProcessTree", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testMemForOlderProcesses", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testCpuAndMemoryForProcessTree", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testDestroyProcessTree", + "org.apache.hadoop.yarn.util.TestFSDownload#testDirDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testUniqueDestinationPath", + "org.apache.hadoop.yarn.util.TestFSDownload#testResourceTimestampChangeDuringDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZipWithTurkishLocale", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPatternJar", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchive", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveTgz", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZip", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadBadPublic", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPublicWithStatCache", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownload", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccessWithPartialACLS", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccess", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccessWithNullACLS", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetPassword", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetHtmlEscapedURIWithQueryString", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testAppendQueryParams", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testLoadSslConfiguration", + "org.apache.hadoop.yarn.webapp.TestWebApp#testYARNWebAppContext", + "org.apache.hadoop.yarn.webapp.TestWebApp#testDefaultRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithBindAddressNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testEncodedUrl", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testPortRanges", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePathsNoName", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreate", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCustomRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePaths", + "org.apache.hadoop.yarn.webapp.TestWebApp#testRobotsText", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[1]", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAccessDenied", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBlockContainsPortNumForUnavailableAppLog", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBadLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlockHar", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlock", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testNoLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRefreshLogRetentionSettings", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testCheckInterval", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletionTwoControllers", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletion", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRobustLogDeletion", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testDefaultLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomUser", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomGroup", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationDefault", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testFetchApplictionLogsHar", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetLogMetaFilesOfNode", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetRollOverLogMaxSize", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testLogAggregationIndexFileFormat", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testReadCredentialsFromConfigFile", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testGetCredentialsFromTokensByteBuffer", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testWriteDockerCredentialsToPath" + ], + "ipc.0.scheduler.priority.levels": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout" + ], + "ipc.client.connection.idle-scan-interval.ms": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout" + ], + "yarn.scheduler.minimum-allocation-vcores": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithExtraResource[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithEmptyCluster[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompare[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithNoExtraResource[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testNormalize[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioNumeratorAndDenominatorIsZero[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithOnlyMandatory[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsIn[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioDenominatorIsZero[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsInDiagnosticsCollector[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithExtraResource[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithEmptyCluster[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompare[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithNoExtraResource[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testNormalize[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioNumeratorAndDenominatorIsZero[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompareWithOnlyMandatory[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsIn[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testDivisionByZeroRatioDenominatorIsZero[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testFitsInDiagnosticsCollector[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateSimpleResourceWithSameIntValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testAdd", + "org.apache.hadoop.yarn.util.resource.TestResources#testSubtract", + "org.apache.hadoop.yarn.util.resource.TestResources#testClone", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateResourceWithSameIntValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyRoundUp", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndRoundUpCustomResources", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateSimpleResourceWithSameLongValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testCompareToWithNoneResource", + "org.apache.hadoop.yarn.util.resource.TestResources#testComponentwiseMax", + "org.apache.hadoop.yarn.util.resource.TestResources#testComponentwiseMin", + "org.apache.hadoop.yarn.util.resource.TestResources#testFitsIn", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateResourceWithSameLongValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiply", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndRoundDown", + "org.apache.hadoop.yarn.util.resource.TestResources#testCompareToWithUnboundedResource", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndAddTo", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testInitializeResourcesMap", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testResourceNameFormatValidation", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypes", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformationWithDiffUnits", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testMultipleOpsForResourcesWithTags", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetRequestedResourcesFromConfig", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetNodeResourcesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testResourceUnitParsing", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformation", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigs", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddInvalidlabel", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddlabelWithExclusivity", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testReplaceLabelsOnHostsShouldUpdateNodesBelongTo", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsToNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testGetNodeLabelsInfo", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testTrimLabelsWhenAddRemoveNodeLabels", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddRemovelabel", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddlabelWithCase", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testTrimLabelsWhenModifyLabelsOnNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsToNodesForSelectedLabels", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testRemoveNodeLabelsInfo", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testRemovelabelWithNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testNoMoreThanOneLabelExistedInOneHost", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsInfoToNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddReplaceRemoveLabelsOnNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testNodeLabelsDisabled", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testReplaceLabelsOnNodeInDistributedMode", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[1]", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBInitFromOldPB", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceAttributes", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testParsingResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBWithExtraResources", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testEmptyResourcePBInit", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetVirtualCores", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetMemory", + "org.apache.hadoop.yarn.api.TestResourceRequest#testEqualsOnExecutionTypeRequest", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testAMContainerTokenIdentifier", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testContainerTokenIdentifierOldFormat", + "org.apache.hadoop.yarn.security.TestYARNTokenIdentifier#testContainerTokenIdentifier" + ], + "ipc.client.bind.wildcard.addr": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.client.TestClientRMProxy#testProxyUserCorrectUGI", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout" + ], + "ipc.server.read.connection-queue.size": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout" + ], + "ipc.maximum.response.length": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.client.TestClientRMProxy#testProxyUserCorrectUGI", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout" + ], + "yarn.ipc.client.factory.class": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.client.TestClientRMProxy#testProxyUserCorrectUGI", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout" + ], + "ipc.server.read.threadpool.size": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout" + ], + "ipc.server.listen.queue.size": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout" + ], + "rpc.metrics.timeunit": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout" + ], + "hadoop.security.group.mapping": [ + "org.apache.hadoop.yarn.TestContainerLaunchRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.client.TestClientRMProxy#testProxyUserCorrectUGI", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainersForAppAttempt", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetApplication", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainer", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntity", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainers", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenOperationsRetry", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineClientCleanup", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostIncompleteEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesWithError", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenDisabledOnSimpleAuth", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testCheckRetryCount", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineConnectorDestroy", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSyncCall", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSetTimelineToken", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionCalls", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionMultipleRetry", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testASyncCallMerge", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testConfigurableNumberOfMerges", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testAfterStop", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testProcessTreeDump", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testProcessTree", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testMemForOlderProcesses", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testCpuAndMemoryForProcessTree", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testDestroyProcessTree", + "org.apache.hadoop.yarn.util.TestFSDownload#testDirDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testUniqueDestinationPath", + "org.apache.hadoop.yarn.util.TestFSDownload#testResourceTimestampChangeDuringDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZipWithTurkishLocale", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPatternJar", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchive", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveTgz", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZip", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadBadPublic", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPublicWithStatCache", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownload", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccessWithPartialACLS", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccess", + "org.apache.hadoop.yarn.server.security.TestApplicationACLsManager#testCheckAccessWithNullACLS", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetPassword", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetHtmlEscapedURIWithQueryString", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testAppendQueryParams", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testLoadSslConfiguration", + "org.apache.hadoop.yarn.webapp.TestWebApp#testYARNWebAppContext", + "org.apache.hadoop.yarn.webapp.TestWebApp#testDefaultRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithBindAddressNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testEncodedUrl", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testPortRanges", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePathsNoName", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreate", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCustomRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePaths", + "org.apache.hadoop.yarn.webapp.TestWebApp#testRobotsText", + "org.apache.hadoop.yarn.TestRPCFactories#test", + "org.apache.hadoop.yarn.TestContainerResourceIncreaseRPC#testHadoopProtoRPCTimeout", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[1]", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAccessDenied", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBlockContainsPortNumForUnavailableAppLog", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBadLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlockHar", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlock", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testNoLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRefreshLogRetentionSettings", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testCheckInterval", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletionTwoControllers", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletion", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRobustLogDeletion", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testDefaultLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomUser", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomGroup", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationDefault", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testFetchApplictionLogsHar", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetLogMetaFilesOfNode", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetRollOverLogMaxSize", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testLogAggregationIndexFileFormat", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testReadCredentialsFromConfigFile", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testGetCredentialsFromTokensByteBuffer", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testWriteDockerCredentialsToPath" + ], + "yarn.client.failover-sleep-base-ms": [ + "org.apache.hadoop.yarn.client.TestClientRMProxy#testProxyUserCorrectUGI" + ], + "yarn.client.failover-proxy-provider": [ + "org.apache.hadoop.yarn.client.TestClientRMProxy#testProxyUserCorrectUGI" + ], + "yarn.client.failover-retries": [ + "org.apache.hadoop.yarn.client.TestClientRMProxy#testProxyUserCorrectUGI" + ], + "yarn.http.policy": [ + "org.apache.hadoop.yarn.client.TestClientRMProxy#testProxyUserCorrectUGI", + "org.apache.hadoop.yarn.client.TestClientRMProxy#testGetRMDelegationTokenService", + "org.apache.hadoop.yarn.client.TestClientRMProxy#testGetAMRMTokenService", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainersForAppAttempt", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetApplication", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainer", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntity", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainers", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenOperationsRetry", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostIncompleteEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesWithError", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenDisabledOnSimpleAuth", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testCheckRetryCount", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineConnectorDestroy", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSyncCall", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSetTimelineToken", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionCalls", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionMultipleRetry", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testASyncCallMerge", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testConfigurableNumberOfMerges", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testAfterStop", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#TestRMWebAppURLRemoteAndLocal", + "org.apache.hadoop.yarn.webapp.TestWebApp#testYARNWebAppContext", + "org.apache.hadoop.yarn.webapp.TestWebApp#testDefaultRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithBindAddressNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testEncodedUrl", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testPortRanges", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePathsNoName", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreate", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCustomRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePaths", + "org.apache.hadoop.yarn.webapp.TestWebApp#testRobotsText", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBlockContainsPortNumForUnavailableAppLog", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBadLogs", + "org.apache.hadoop.yarn.conf.TestYarnConfiguration#testUpdateConnectAddr", + "org.apache.hadoop.yarn.conf.TestYarnConfiguration#testGetSocketAddressForNMWithHA", + "org.apache.hadoop.yarn.conf.TestYarnConfiguration#testRMWebUrlSpecified", + "org.apache.hadoop.yarn.conf.TestYarnConfiguration#testDefaultRMWebUrl", + "org.apache.hadoop.yarn.conf.TestHAUtil#testVerifyAndSetConfiguration", + "org.apache.hadoop.yarn.conf.TestHAUtil#testGetRMServiceId", + "org.apache.hadoop.yarn.conf.TestHAUtil#testGetRMId", + "org.apache.hadoop.yarn.conf.TestHAUtil#testGetConfKeyForRMInstance" + ], + "ipc.client.rpc-timeout.ms": [ + "org.apache.hadoop.yarn.client.TestClientRMProxy#testProxyUserCorrectUGI", + "org.apache.hadoop.yarn.TestRPCFactories#test" + ], + "yarn.client.failover-sleep-max-ms": [ + "org.apache.hadoop.yarn.client.TestClientRMProxy#testProxyUserCorrectUGI" + ], + "yarn.client.failover-retries-on-socket-timeouts": [ + "org.apache.hadoop.yarn.client.TestClientRMProxy#testProxyUserCorrectUGI" + ], + "yarn.resourcemanager.address": [ + "org.apache.hadoop.yarn.client.TestClientRMProxy#testGetRMDelegationTokenService" + ], + "yarn.resourcemanager.hostname": [ + "org.apache.hadoop.yarn.client.TestClientRMProxy#testGetRMDelegationTokenService", + "org.apache.hadoop.yarn.client.TestClientRMProxy#testGetAMRMTokenService", + "org.apache.hadoop.yarn.conf.TestYarnConfiguration#testDefaultRMWebUrl", + "org.apache.hadoop.yarn.conf.TestYarnConfiguration#testGetSocketAddr" + ], + "yarn.resourcemanager.scheduler.address": [ + "org.apache.hadoop.yarn.client.TestClientRMProxy#testGetAMRMTokenService" + ], + "yarn.timeline-service.client.retry-interval-ms": [ + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainersForAppAttempt", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetApplication", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainer", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntity", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainers", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineClientCleanup", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostIncompleteEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesWithError", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenDisabledOnSimpleAuth", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineConnectorDestroy", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSyncCall", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSetTimelineToken", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionCalls", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionMultipleRetry", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testASyncCallMerge", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testConfigurableNumberOfMerges", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testAfterStop" + ], + "yarn.timeline-service.webapp.address": [ + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainersForAppAttempt", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetApplication", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainer", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntity", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainers", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenOperationsRetry", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineClientCleanup", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostIncompleteEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesWithError", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenDisabledOnSimpleAuth", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testCheckRetryCount", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineConnectorDestroy" + ], + "yarn.timeline-service.reader.webapp.address": [ + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainersForAppAttempt", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetApplication", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainer", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntity", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainers" + ], + "yarn.timeline-service.hostname": [ + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainersForAppAttempt", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetApplication", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainer", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntity", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainers", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenOperationsRetry", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineClientCleanup", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostIncompleteEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesWithError", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenDisabledOnSimpleAuth", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testCheckRetryCount", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineConnectorDestroy" + ], + "yarn.timeline-service.versions": [ + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainersForAppAttempt", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetApplication", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainer", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntity", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainers", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenOperationsRetry", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineClientCleanup", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostIncompleteEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesWithError", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenDisabledOnSimpleAuth", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testCheckRetryCount", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineConnectorDestroy", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSyncCall", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSetTimelineToken", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionCalls", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionMultipleRetry", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testASyncCallMerge", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testConfigurableNumberOfMerges", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testAfterStop" + ], + "yarn.timeline-service.http-authentication.type": [ + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainersForAppAttempt", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetApplication", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainer", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntity", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainers", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineClientCleanup", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostIncompleteEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesWithError", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testCheckRetryCount", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineConnectorDestroy", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSyncCall", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSetTimelineToken", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionCalls", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionMultipleRetry", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testASyncCallMerge", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testConfigurableNumberOfMerges", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testAfterStop" + ], + "yarn.resourcemanager.cluster-id": [ + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainersForAppAttempt", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetApplication", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainer", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntity", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainers" + ], + "yarn.timeline-service.client.max-retries": [ + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainersForAppAttempt", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetApplication", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainer", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#getApplicationAttemptEntity", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineReaderClientImpl#testGetContainers", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostIncompleteEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesWithError", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testDelegationTokenDisabledOnSimpleAuth", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPostEntitiesConnectionRefused", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testPutDomainNoResponse", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineConnectorDestroy", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSyncCall", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSetTimelineToken", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionCalls", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testASyncCallMerge", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testConfigurableNumberOfMerges", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testAfterStop" + ], + "fs.iostatistics.thread.level.enabled": [ + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir", + "org.apache.hadoop.yarn.util.TestFSDownload#testDirDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testUniqueDestinationPath", + "org.apache.hadoop.yarn.util.TestFSDownload#testResourceTimestampChangeDuringDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZipWithTurkishLocale", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPatternJar", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchive", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveTgz", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZip", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadBadPublic", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownload", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetPassword", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetHtmlEscapedURIWithQueryString", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testAppendQueryParams", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testLoadSslConfiguration", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[1]", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAccessDenied", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBadLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlockHar", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlock", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testNoLogs", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testFetchApplictionLogsHar", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetLogMetaFilesOfNode", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testLogAggregationIndexFileFormat", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testReadCredentialsFromConfigFile", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testGetCredentialsFromTokensByteBuffer", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testWriteDockerCredentialsToPath" + ], + "fs.automatic.close": [ + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir", + "org.apache.hadoop.yarn.util.TestFSDownload#testDirDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testUniqueDestinationPath", + "org.apache.hadoop.yarn.util.TestFSDownload#testResourceTimestampChangeDuringDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZipWithTurkishLocale", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPatternJar", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchive", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveTgz", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZip", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadBadPublic", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPublicWithStatCache", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownload", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetPassword", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetHtmlEscapedURIWithQueryString", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testAppendQueryParams", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testLoadSslConfiguration", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[1]", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAccessDenied", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBadLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlockHar", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlock", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRefreshLogRetentionSettings", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testCheckInterval", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletionTwoControllers", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletion", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRobustLogDeletion", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testDefaultLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testFetchApplictionLogsHar", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetLogMetaFilesOfNode", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetRollOverLogMaxSize", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testLogAggregationIndexFileFormat", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testReadCredentialsFromConfigFile", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testGetCredentialsFromTokensByteBuffer", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testWriteDockerCredentialsToPath" + ], + "yarn.timeline-service.client.fd-clean-interval-secs": [ + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir" + ], + "yarn.timeline-service.entity-group-fs-store.with-user-dir": [ + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain" + ], + "fs.local.block.size": [ + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testProcessTreeDump", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testProcessTree", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testMemForOlderProcesses", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testCpuAndMemoryForProcessTree", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testDestroyProcessTree", + "org.apache.hadoop.yarn.util.TestFSDownload#testDirDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testUniqueDestinationPath", + "org.apache.hadoop.yarn.util.TestFSDownload#testResourceTimestampChangeDuringDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZipWithTurkishLocale", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPatternJar", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchive", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveTgz", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZip", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadBadPublic", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPublicWithStatCache", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownload", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetPassword", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetHtmlEscapedURIWithQueryString", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testAppendQueryParams", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testLoadSslConfiguration", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[1]", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAccessDenied", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBlockContainsPortNumForUnavailableAppLog", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBadLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlockHar", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlock", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testNoLogs", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testDefaultLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testFetchApplictionLogsHar", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetLogMetaFilesOfNode", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetRollOverLogMaxSize", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testLogAggregationIndexFileFormat", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testReadCredentialsFromConfigFile", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testGetCredentialsFromTokensByteBuffer", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testWriteDockerCredentialsToPath" + ], + "yarn.timeline-service.client.fd-retain-secs": [ + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir" + ], + "fs.client.resolve.remote.symlinks": [ + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testProcessTreeDump", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testProcessTree", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testMemForOlderProcesses", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testCpuAndMemoryForProcessTree", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testDestroyProcessTree", + "org.apache.hadoop.yarn.util.TestFSDownload#testDirDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testUniqueDestinationPath", + "org.apache.hadoop.yarn.util.TestFSDownload#testResourceTimestampChangeDuringDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZipWithTurkishLocale", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPatternJar", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchive", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveTgz", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZip", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadBadPublic", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPublicWithStatCache", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownload", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetPassword", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetHtmlEscapedURIWithQueryString", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testAppendQueryParams", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testLoadSslConfiguration", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[1]", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAccessDenied", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBlockContainsPortNumForUnavailableAppLog", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBadLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlockHar", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlock", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testNoLogs", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testDefaultLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testFetchApplictionLogsHar", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetLogMetaFilesOfNode", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetRollOverLogMaxSize", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testLogAggregationIndexFileFormat", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testReadCredentialsFromConfigFile", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testGetCredentialsFromTokensByteBuffer", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testWriteDockerCredentialsToPath" + ], + "yarn.timeline-service.client.fd-flush-interval-secs": [ + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir" + ], + "fs.AbstractFileSystem.file.impl": [ + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testProcessTreeDump", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testProcessTree", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testMemForOlderProcesses", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testCpuAndMemoryForProcessTree", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testDestroyProcessTree", + "org.apache.hadoop.yarn.util.TestFSDownload#testDirDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testUniqueDestinationPath", + "org.apache.hadoop.yarn.util.TestFSDownload#testResourceTimestampChangeDuringDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZipWithTurkishLocale", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPatternJar", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchive", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveTgz", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZip", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadBadPublic", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPublicWithStatCache", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownload", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAccessDenied", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBlockContainsPortNumForUnavailableAppLog", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBadLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlockHar", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlock", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testNoLogs", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testDefaultLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testFetchApplictionLogsHar", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetLogMetaFilesOfNode", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testLogAggregationIndexFileFormat" + ], + "hadoop.service.shutdown.timeout": [ + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir", + "org.apache.hadoop.yarn.util.TestFSDownload#testDirDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testUniqueDestinationPath", + "org.apache.hadoop.yarn.util.TestFSDownload#testResourceTimestampChangeDuringDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZipWithTurkishLocale", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPatternJar", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchive", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveTgz", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZip", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadBadPublic", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPublicWithStatCache", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownload", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetPassword", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetHtmlEscapedURIWithQueryString", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testAppendQueryParams", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testLoadSslConfiguration", + "org.apache.hadoop.yarn.TestYarnUncaughtExceptionHandler#testUncaughtExceptionHandlerWithError", + "org.apache.hadoop.yarn.TestYarnUncaughtExceptionHandler#testUncaughtExceptionHandlerWithRuntimeException", + "org.apache.hadoop.yarn.TestYarnUncaughtExceptionHandler#testUncaughtExceptionHandlerWithOutOfMemoryError", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[1]", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAccessDenied", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBadLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlockHar", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlock", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRefreshLogRetentionSettings", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testCheckInterval", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletionTwoControllers", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletion", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRobustLogDeletion", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testDefaultLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testFetchApplictionLogsHar", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetLogMetaFilesOfNode", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetRollOverLogMaxSize", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testLogAggregationIndexFileFormat", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testReadCredentialsFromConfigFile", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testGetCredentialsFromTokensByteBuffer", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testWriteDockerCredentialsToPath" + ], + "yarn.timeline-service.client.internal-attempt-dir-cache-size": [ + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir" + ], + "file.bytes-per-checksum": [ + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir", + "org.apache.hadoop.yarn.util.TestFSDownload#testDirDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testUniqueDestinationPath", + "org.apache.hadoop.yarn.util.TestFSDownload#testResourceTimestampChangeDuringDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZipWithTurkishLocale", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPatternJar", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchive", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveTgz", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZip", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadBadPublic", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPublicWithStatCache", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownload", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetPassword", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetHtmlEscapedURIWithQueryString", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testAppendQueryParams", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testLoadSslConfiguration", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[1]", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAccessDenied", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBadLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlockHar", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlock", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testDefaultLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testFetchApplictionLogsHar", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetLogMetaFilesOfNode", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetRollOverLogMaxSize", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testLogAggregationIndexFileFormat", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testReadCredentialsFromConfigFile", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testGetCredentialsFromTokensByteBuffer", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testWriteDockerCredentialsToPath" + ], + "fs.permissions.umask-mode": [ + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir", + "org.apache.hadoop.yarn.util.TestFSDownload#testDirDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testUniqueDestinationPath", + "org.apache.hadoop.yarn.util.TestFSDownload#testResourceTimestampChangeDuringDownload", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetPassword", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetHtmlEscapedURIWithQueryString", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testAppendQueryParams", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testLoadSslConfiguration", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[1]", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAccessDenied", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBadLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlock", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testNoLogs", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testDefaultLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testFetchApplictionLogsHar", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetLogMetaFilesOfNode", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testLogAggregationIndexFileFormat" + ], + "file.stream-buffer-size": [ + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir", + "org.apache.hadoop.yarn.util.TestFSDownload#testDirDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testUniqueDestinationPath", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZipWithTurkishLocale", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPatternJar", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchive", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveTgz", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZip", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownload", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetPassword", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetHtmlEscapedURIWithQueryString", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testAppendQueryParams", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testLoadSslConfiguration", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlockHar", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testFetchApplictionLogsHar", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetLogMetaFilesOfNode", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testLogAggregationIndexFileFormat", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testReadCredentialsFromConfigFile", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testGetCredentialsFromTokensByteBuffer", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testWriteDockerCredentialsToPath" + ], + "fs.creation.parallel.count": [ + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testProcessTreeDump", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testProcessTree", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testMemForOlderProcesses", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testCpuAndMemoryForProcessTree", + "org.apache.hadoop.yarn.util.TestProcfsBasedProcessTree#testDestroyProcessTree", + "org.apache.hadoop.yarn.util.TestFSDownload#testDirDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testUniqueDestinationPath", + "org.apache.hadoop.yarn.util.TestFSDownload#testResourceTimestampChangeDuringDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZipWithTurkishLocale", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPatternJar", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchive", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveTgz", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZip", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadBadPublic", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPublicWithStatCache", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownload", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetPassword", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetHtmlEscapedURIWithQueryString", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testAppendQueryParams", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testLoadSslConfiguration", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[1]", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAccessDenied", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBlockContainsPortNumForUnavailableAppLog", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBadLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlockHar", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlock", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testNoLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRefreshLogRetentionSettings", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testCheckInterval", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletionTwoControllers", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletion", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRobustLogDeletion", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testDefaultLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomUser", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomGroup", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationDefault", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testFetchApplictionLogsHar", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetLogMetaFilesOfNode", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetRollOverLogMaxSize", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testLogAggregationIndexFileFormat", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testReadCredentialsFromConfigFile", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testGetCredentialsFromTokensByteBuffer", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testWriteDockerCredentialsToPath" + ], + "fs.defaultFS": [ + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir", + "org.apache.hadoop.yarn.util.TestFSDownload#testDirDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testUniqueDestinationPath", + "org.apache.hadoop.yarn.util.TestFSDownload#testResourceTimestampChangeDuringDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZipWithTurkishLocale", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPatternJar", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchive", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveTgz", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZip", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadBadPublic", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPublicWithStatCache", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownload", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetPassword", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetHtmlEscapedURIWithQueryString", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testAppendQueryParams", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testLoadSslConfiguration", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[1]", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAccessDenied", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBlockContainsPortNumForUnavailableAppLog", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBadLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlockHar", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlock", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testNoLogs", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testDefaultLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testFetchApplictionLogsHar", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetLogMetaFilesOfNode", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetRollOverLogMaxSize", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testLogAggregationIndexFileFormat", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testReadCredentialsFromConfigFile", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testGetCredentialsFromTokensByteBuffer", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testWriteDockerCredentialsToPath" + ], + "yarn.timeline-service.entity-file.fs-support-append": [ + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir" + ], + "io.file.buffer.size": [ + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir", + "org.apache.hadoop.yarn.util.TestFSDownload#testDirDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testUniqueDestinationPath", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZipWithTurkishLocale", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPatternJar", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchive", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveTgz", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZip", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownload", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetPassword", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetHtmlEscapedURIWithQueryString", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testAppendQueryParams", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testLoadSslConfiguration", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[1]", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlockHar", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testReadCredentialsFromConfigFile", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testGetCredentialsFromTokensByteBuffer", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testWriteDockerCredentialsToPath" + ], + "yarn.timeline-service.client.internal-timers-ttl-secs": [ + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir" + ], + "fs.file.impl": [ + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPostEntitiesToKeepUnderUserDir", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomain", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientForATS1_5#testPutDomainToKeepUnderUserDir", + "org.apache.hadoop.yarn.util.TestFSDownload#testDirDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testUniqueDestinationPath", + "org.apache.hadoop.yarn.util.TestFSDownload#testResourceTimestampChangeDuringDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZipWithTurkishLocale", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPatternJar", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchive", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveTgz", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZip", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadBadPublic", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPublicWithStatCache", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownload", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetPassword", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetHtmlEscapedURIWithQueryString", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testAppendQueryParams", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testLoadSslConfiguration", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[1]", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAccessDenied", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBadLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlockHar", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlock", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testDefaultLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testFetchApplictionLogsHar", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetLogMetaFilesOfNode", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetRollOverLogMaxSize", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testLogAggregationIndexFileFormat", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testReadCredentialsFromConfigFile", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testGetCredentialsFromTokensByteBuffer", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testWriteDockerCredentialsToPath" + ], + "hadoop.security.credential.provider.path": [ + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineClientCleanup", + "org.apache.hadoop.yarn.webapp.util.TestWebServiceClient#testCreateClient" + ], + "ssl.client.truststore.type": [ + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineClientCleanup", + "org.apache.hadoop.yarn.webapp.util.TestWebServiceClient#testGetWebServiceClient", + "org.apache.hadoop.yarn.webapp.util.TestWebServiceClient#testCreateClient", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetRollOverLogMaxSize" + ], + "ssl.client.keystore.type": [ + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineClientCleanup", + "org.apache.hadoop.yarn.webapp.util.TestWebServiceClient#testGetWebServiceClient", + "org.apache.hadoop.yarn.webapp.util.TestWebServiceClient#testCreateClient", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetRollOverLogMaxSize" + ], + "hadoop.ssl.enabled.protocols": [ + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineClientCleanup", + "org.apache.hadoop.yarn.webapp.util.TestWebServiceClient#testGetWebServiceClient", + "org.apache.hadoop.yarn.webapp.util.TestWebServiceClient#testCreateClient", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetRollOverLogMaxSize" + ], + "ssl.server.exclude.cipher.list": [ + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineClientCleanup", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testLoadSslConfiguration", + "org.apache.hadoop.yarn.webapp.util.TestWebServiceClient#testGetWebServiceClient", + "org.apache.hadoop.yarn.webapp.util.TestWebServiceClient#testCreateClient", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetRollOverLogMaxSize" + ], + "ssl.client.stores.reload.interval": [ + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineClientCleanup", + "org.apache.hadoop.yarn.webapp.util.TestWebServiceClient#testGetWebServiceClient", + "org.apache.hadoop.yarn.webapp.util.TestWebServiceClient#testCreateClient", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetRollOverLogMaxSize" + ], + "hadoop.security.credential.clear-text-fallback": [ + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineClientCleanup", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetPassword", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetHtmlEscapedURIWithQueryString", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testAppendQueryParams", + "org.apache.hadoop.yarn.webapp.util.TestWebServiceClient#testCreateClient" + ], + "hadoop.ssl.keystores.factory.class": [ + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineClientCleanup", + "org.apache.hadoop.yarn.webapp.util.TestWebServiceClient#testGetWebServiceClient", + "org.apache.hadoop.yarn.webapp.util.TestWebServiceClient#testCreateClient", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetRollOverLogMaxSize" + ], + "yarn.timeline-service.webapp.https.address": [ + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClient#testTimelineClientCleanup" + ], + "yarn.timeline-service.client.drain-entities.timeout.ms": [ + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSyncCall", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testPostEntities", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testSetTimelineToken", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionCalls", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testExceptionMultipleRetry", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testASyncCallMerge", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testConfigurableNumberOfMerges", + "org.apache.hadoop.yarn.client.api.impl.TestTimelineClientV2Impl#testAfterStop" + ], + "mapreduce.map.envbogus": [ + "org.apache.hadoop.yarn.util.TestApps#testSetEnvFromInputPropertyDefault" + ], + "bogus1": [ + "org.apache.hadoop.yarn.util.TestApps#testSetEnvFromInputPropertyNull" + ], + "mapreduce.reduce.env": [ + "org.apache.hadoop.yarn.util.TestApps#testSetEnvFromInputPropertyOverrideDefault" + ], + "yarn.resource-types.test.maximum-allocation": [ + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithExtraResource[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompare[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithExtraResource[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompare[DominantResourceCalculator]" + ], + "yarn.resource-types.test.minimum-allocation": [ + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithExtraResource[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompare[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithExtraResource[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompare[DominantResourceCalculator]" + ], + "yarn.resource-types.test.units": [ + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithExtraResource[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompare[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithExtraResource[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompare[DominantResourceCalculator]" + ], + "yarn.resource-types.test.tags": [ + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithExtraResource[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompare[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithExtraResource[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompare[DominantResourceCalculator]" + ], + "yarn.resource-types.test.type": [ + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithExtraResource[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompare[DefaultResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testRatioWithExtraResource[DominantResourceCalculator]", + "org.apache.hadoop.yarn.util.resource.TestResourceCalculator#testCompare[DominantResourceCalculator]" + ], + "yarn.resource-types.resource2.minimum-allocation": [ + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateSimpleResourceWithSameIntValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testAdd", + "org.apache.hadoop.yarn.util.resource.TestResources#testSubtract", + "org.apache.hadoop.yarn.util.resource.TestResources#testClone", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateResourceWithSameIntValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyRoundUp", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndRoundUpCustomResources", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateSimpleResourceWithSameLongValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testCompareToWithNoneResource", + "org.apache.hadoop.yarn.util.resource.TestResources#testComponentwiseMax", + "org.apache.hadoop.yarn.util.resource.TestResources#testComponentwiseMin", + "org.apache.hadoop.yarn.util.resource.TestResources#testFitsIn", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateResourceWithSameLongValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiply", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndRoundDown", + "org.apache.hadoop.yarn.util.resource.TestResources#testCompareToWithUnboundedResource", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndAddTo", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testInitializeResourcesMap", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testResourceNameFormatValidation", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformationWithDiffUnits", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testMultipleOpsForResourcesWithTags", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetRequestedResourcesFromConfig", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetNodeResourcesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformation", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigs", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBInitFromOldPB", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceAttributes", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testParsingResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBWithExtraResources", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testEmptyResourcePBInit", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetVirtualCores", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetMemory" + ], + "yarn.resource-types.resource2.tags": [ + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateSimpleResourceWithSameIntValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testAdd", + "org.apache.hadoop.yarn.util.resource.TestResources#testSubtract", + "org.apache.hadoop.yarn.util.resource.TestResources#testClone", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateResourceWithSameIntValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyRoundUp", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndRoundUpCustomResources", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateSimpleResourceWithSameLongValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testCompareToWithNoneResource", + "org.apache.hadoop.yarn.util.resource.TestResources#testComponentwiseMax", + "org.apache.hadoop.yarn.util.resource.TestResources#testComponentwiseMin", + "org.apache.hadoop.yarn.util.resource.TestResources#testFitsIn", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateResourceWithSameLongValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiply", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndRoundDown", + "org.apache.hadoop.yarn.util.resource.TestResources#testCompareToWithUnboundedResource", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndAddTo", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testInitializeResourcesMap", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testResourceNameFormatValidation", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformationWithDiffUnits", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testMultipleOpsForResourcesWithTags", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetRequestedResourcesFromConfig", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetNodeResourcesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformation", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigs", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBInitFromOldPB", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceAttributes", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testParsingResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBWithExtraResources", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testEmptyResourcePBInit", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetVirtualCores", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetMemory" + ], + "yarn.resource-types.resource2.units": [ + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateSimpleResourceWithSameIntValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testAdd", + "org.apache.hadoop.yarn.util.resource.TestResources#testSubtract", + "org.apache.hadoop.yarn.util.resource.TestResources#testClone", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateResourceWithSameIntValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyRoundUp", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndRoundUpCustomResources", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateSimpleResourceWithSameLongValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testCompareToWithNoneResource", + "org.apache.hadoop.yarn.util.resource.TestResources#testComponentwiseMax", + "org.apache.hadoop.yarn.util.resource.TestResources#testComponentwiseMin", + "org.apache.hadoop.yarn.util.resource.TestResources#testFitsIn", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateResourceWithSameLongValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiply", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndRoundDown", + "org.apache.hadoop.yarn.util.resource.TestResources#testCompareToWithUnboundedResource", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndAddTo", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformationWithDiffUnits", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testMultipleOpsForResourcesWithTags", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetRequestedResourcesFromConfig", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetNodeResourcesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformation", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigs", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBInitFromOldPB", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceAttributes", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testParsingResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBWithExtraResources", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testEmptyResourcePBInit", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetVirtualCores", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetMemory" + ], + "yarn.resource-types.resource2.type": [ + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateSimpleResourceWithSameIntValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testAdd", + "org.apache.hadoop.yarn.util.resource.TestResources#testSubtract", + "org.apache.hadoop.yarn.util.resource.TestResources#testClone", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateResourceWithSameIntValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyRoundUp", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndRoundUpCustomResources", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateSimpleResourceWithSameLongValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testCompareToWithNoneResource", + "org.apache.hadoop.yarn.util.resource.TestResources#testComponentwiseMax", + "org.apache.hadoop.yarn.util.resource.TestResources#testComponentwiseMin", + "org.apache.hadoop.yarn.util.resource.TestResources#testFitsIn", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateResourceWithSameLongValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiply", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndRoundDown", + "org.apache.hadoop.yarn.util.resource.TestResources#testCompareToWithUnboundedResource", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndAddTo", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testInitializeResourcesMap", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testResourceNameFormatValidation", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformationWithDiffUnits", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testMultipleOpsForResourcesWithTags", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetRequestedResourcesFromConfig", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetNodeResourcesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformation", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigs", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBInitFromOldPB", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceAttributes", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testParsingResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBWithExtraResources", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testEmptyResourcePBInit", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetVirtualCores", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetMemory" + ], + "yarn.resource-types.resource2.maximum-allocation": [ + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateSimpleResourceWithSameIntValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testAdd", + "org.apache.hadoop.yarn.util.resource.TestResources#testSubtract", + "org.apache.hadoop.yarn.util.resource.TestResources#testClone", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateResourceWithSameIntValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyRoundUp", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndRoundUpCustomResources", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateSimpleResourceWithSameLongValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testCompareToWithNoneResource", + "org.apache.hadoop.yarn.util.resource.TestResources#testComponentwiseMax", + "org.apache.hadoop.yarn.util.resource.TestResources#testComponentwiseMin", + "org.apache.hadoop.yarn.util.resource.TestResources#testFitsIn", + "org.apache.hadoop.yarn.util.resource.TestResources#testCreateResourceWithSameLongValue", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiply", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndRoundDown", + "org.apache.hadoop.yarn.util.resource.TestResources#testCompareToWithUnboundedResource", + "org.apache.hadoop.yarn.util.resource.TestResources#testMultiplyAndAddTo", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testInitializeResourcesMap", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testResourceNameFormatValidation", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformationWithDiffUnits", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testMultipleOpsForResourcesWithTags", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetRequestedResourcesFromConfig", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetNodeResourcesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformation", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigs", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBInitFromOldPB", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceAttributes", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testParsingResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBWithExtraResources", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testEmptyResourcePBInit", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetVirtualCores", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetMemory" + ], + "yarn.resource-types.yarn.io/gpu.maximum-allocation": [ + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetNodeResourcesRedefineGpuErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformationWithDiffUnits", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testMultipleOpsForResourcesWithTags", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetRequestedResourcesFromConfig", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetNodeResourcesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformation", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigs", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBInitFromOldPB", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceAttributes", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testParsingResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBWithExtraResources", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testEmptyResourcePBInit", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetVirtualCores", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetMemory" + ], + "yarn.resource-types.yarn.io/gpu.tags": [ + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetNodeResourcesRedefineGpuErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformationWithDiffUnits", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testMultipleOpsForResourcesWithTags", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetRequestedResourcesFromConfig", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetNodeResourcesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformation", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigs", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBInitFromOldPB", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceAttributes", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testParsingResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBWithExtraResources", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testEmptyResourcePBInit", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetVirtualCores", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetMemory" + ], + "yarn.resource-types.yarn.io/gpu.minimum-allocation": [ + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetNodeResourcesRedefineGpuErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformationWithDiffUnits", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testMultipleOpsForResourcesWithTags", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetRequestedResourcesFromConfig", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetNodeResourcesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformation", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigs", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBInitFromOldPB", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceAttributes", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testParsingResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBWithExtraResources", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testEmptyResourcePBInit", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetVirtualCores", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetMemory" + ], + "yarn.resource-types.yarn.io/gpu.type": [ + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetNodeResourcesRedefineGpuErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformationWithDiffUnits", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testMultipleOpsForResourcesWithTags", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetRequestedResourcesFromConfig", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetNodeResourcesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformation", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigs", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBInitFromOldPB", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceAttributes", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testParsingResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBWithExtraResources", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testEmptyResourcePBInit", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetVirtualCores", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetMemory" + ], + "yarn.resource-types.yarn.io/gpu.units": [ + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetNodeResourcesRedefineGpuErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformationWithDiffUnits", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testMultipleOpsForResourcesWithTags", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetRequestedResourcesFromConfig", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetNodeResourcesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformation", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigs", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBInitFromOldPB", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceAttributes", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testParsingResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBWithExtraResources", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testEmptyResourcePBInit", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetVirtualCores", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetMemory" + ], + "yarn.resource-types.resource1.minimum-allocation": [ + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testInitializeResourcesMap", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testResourceNameFormatValidation", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformationWithDiffUnits", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testMultipleOpsForResourcesWithTags", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetRequestedResourcesFromConfig", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetNodeResourcesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformation", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigs", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBInitFromOldPB", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceAttributes", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testParsingResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBWithExtraResources", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testEmptyResourcePBInit", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetVirtualCores", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetMemory" + ], + "yarn.resource-types.resource1.type": [ + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testInitializeResourcesMap", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testResourceNameFormatValidation", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformationWithDiffUnits", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testMultipleOpsForResourcesWithTags", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetRequestedResourcesFromConfig", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetNodeResourcesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformation", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigs", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBInitFromOldPB", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceAttributes", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testParsingResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBWithExtraResources", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testEmptyResourcePBInit", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetVirtualCores", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetMemory" + ], + "yarn.resource-types.resource1.maximum-allocation": [ + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testInitializeResourcesMap", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testResourceNameFormatValidation", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformationWithDiffUnits", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testMultipleOpsForResourcesWithTags", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetRequestedResourcesFromConfig", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetNodeResourcesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformation", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigs", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBInitFromOldPB", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceAttributes", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testParsingResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBWithExtraResources", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testEmptyResourcePBInit", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetVirtualCores", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetMemory" + ], + "yarn.resource-types.resource1.tags": [ + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testInitializeResourcesMap", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testResourceNameFormatValidation", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformationWithDiffUnits", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testMultipleOpsForResourcesWithTags", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetRequestedResourcesFromConfig", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetNodeResourcesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformation", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigs", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBInitFromOldPB", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceAttributes", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testParsingResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBWithExtraResources", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testEmptyResourcePBInit", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetVirtualCores", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetMemory" + ], + "yarn.resource-types.resource1.units": [ + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformationWithDiffUnits", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testMultipleOpsForResourcesWithTags", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetRequestedResourcesFromConfig", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetNodeResourcesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceInformation", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigs", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBInitFromOldPB", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceAttributes", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testParsingResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBWithExtraResources", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testEmptyResourcePBInit", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetVirtualCores", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetMemory" + ], + "yarn.resource-types.resource3.maximum-allocation": [ + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testMultipleOpsForResourcesWithTags", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetRequestedResourcesFromConfig", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBInitFromOldPB", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceAttributes", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testParsingResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBWithExtraResources", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testEmptyResourcePBInit", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetVirtualCores", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetMemory" + ], + "yarn.resource-types.yarn.io/test-volume.maximum-allocation": [ + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testMultipleOpsForResourcesWithTags", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetRequestedResourcesFromConfig", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBInitFromOldPB", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceAttributes", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testParsingResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBWithExtraResources", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testEmptyResourcePBInit", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetVirtualCores", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetMemory" + ], + "yarn.resource-types.resource3.units": [ + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testMultipleOpsForResourcesWithTags", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetRequestedResourcesFromConfig", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBInitFromOldPB", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceAttributes", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testParsingResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBWithExtraResources", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testEmptyResourcePBInit", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetVirtualCores", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetMemory" + ], + "yarn.resource-types.yarn.io/test-volume.minimum-allocation": [ + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testMultipleOpsForResourcesWithTags", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetRequestedResourcesFromConfig", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBInitFromOldPB", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceAttributes", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testParsingResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBWithExtraResources", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testEmptyResourcePBInit", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetVirtualCores", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetMemory" + ], + "yarn.resource-types.resource3.tags": [ + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testMultipleOpsForResourcesWithTags", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetRequestedResourcesFromConfig", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBInitFromOldPB", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceAttributes", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testParsingResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBWithExtraResources", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testEmptyResourcePBInit", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetVirtualCores", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetMemory" + ], + "yarn.resource-types.yarn.io/test-volume.type": [ + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testMultipleOpsForResourcesWithTags", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetRequestedResourcesFromConfig", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBInitFromOldPB", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceAttributes", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testParsingResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBWithExtraResources", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testEmptyResourcePBInit", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetVirtualCores", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetMemory" + ], + "yarn.resource-types.resource3.minimum-allocation": [ + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testMultipleOpsForResourcesWithTags", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetRequestedResourcesFromConfig", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBInitFromOldPB", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceAttributes", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testParsingResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBWithExtraResources", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testEmptyResourcePBInit", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetVirtualCores", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetMemory" + ], + "yarn.resource-types.resource3.type": [ + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testMultipleOpsForResourcesWithTags", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetRequestedResourcesFromConfig", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBInitFromOldPB", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceAttributes", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testParsingResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBWithExtraResources", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testEmptyResourcePBInit", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetVirtualCores", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetMemory" + ], + "yarn.resource-types.yarn.io/test-volume.units": [ + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testMultipleOpsForResourcesWithTags", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetRequestedResourcesFromConfig", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBInitFromOldPB", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceAttributes", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testParsingResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBWithExtraResources", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testEmptyResourcePBInit", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetVirtualCores", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetMemory" + ], + "yarn.resource-types.yarn.io/test-volume.tags": [ + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testMultipleOpsForResourcesWithTags", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetRequestedResourcesFromConfig", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBInitFromOldPB", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceAttributes", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testParsingResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourcePBWithExtraResources", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testEmptyResourcePBInit", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testResourceTags", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetVirtualCores", + "org.apache.hadoop.yarn.api.TestResourcePBImpl#testGetMemory" + ], + "yarn.resource-types.yarn.io/fpga.maximum-allocation": [ + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetNodeResourcesRedefineFpgaErrors" + ], + "yarn.resource-types.yarn.io/fpga.tags": [ + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetNodeResourcesRedefineFpgaErrors" + ], + "yarn.resource-types.yarn.io/fpga.type": [ + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetNodeResourcesRedefineFpgaErrors" + ], + "yarn.resource-types.yarn.io/fpga.units": [ + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetNodeResourcesRedefineFpgaErrors" + ], + "yarn.resource-types.yarn.io/fpga.minimum-allocation": [ + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetNodeResourcesRedefineFpgaErrors" + ], + "yarn.resource-types.memory.units": [ + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigErrors" + ], + "yarn.resource-types.memory.minimum-allocation": [ + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testInitializeResourcesMapErrors" + ], + "yarn.resource-types.memory.maximum-allocation": [ + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testInitializeResourcesMapErrors" + ], + "yarn.resource-types.memory-mb.units": [ + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigErrors" + ], + "yarn.resource-types.memory-mb.type": [ + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testInitializeResourcesMapErrors" + ], + "yarn.resource-types.memory.tags": [ + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testInitializeResourcesMapErrors" + ], + "yarn.resource-types.memory-mb.tags": [ + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testInitializeResourcesMapErrors" + ], + "yarn.resource-types.memory.type": [ + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testGetResourceTypesConfigErrors", + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testInitializeResourcesMapErrors" + ], + "yarn.resource-types.vcores.tags": [ + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testInitializeResourcesMapErrors" + ], + "yarn.resource-types.vcores.type": [ + "org.apache.hadoop.yarn.util.resource.TestResourceUtils#testInitializeResourcesMapErrors" + ], + "fs.option.openfile.buffer.size": [ + "org.apache.hadoop.yarn.util.TestFSDownload#testDirDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testUniqueDestinationPath", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZipWithTurkishLocale", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPatternJar", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchive", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveTgz", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZip", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownload", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAccessDenied", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlockHar", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlock", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testNoLogs", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testFetchApplictionLogsHar" + ], + "fs.file.impl.disable.cache": [ + "org.apache.hadoop.yarn.util.TestFSDownload#testDirDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testUniqueDestinationPath", + "org.apache.hadoop.yarn.util.TestFSDownload#testResourceTimestampChangeDuringDownload", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZipWithTurkishLocale", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPatternJar", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchive", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveTgz", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadArchiveZip", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadBadPublic", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownloadPublicWithStatCache", + "org.apache.hadoop.yarn.util.TestFSDownload#testDownload", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetPassword", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetHtmlEscapedURIWithQueryString", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testAppendQueryParams", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testLoadSslConfiguration", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[1]", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAccessDenied", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBadLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlockHar", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlock", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testDefaultLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testFetchApplictionLogsHar", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetLogMetaFilesOfNode", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetRollOverLogMaxSize", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testLogAggregationIndexFileFormat", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testReadCredentialsFromConfigFile", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testGetCredentialsFromTokensByteBuffer", + "org.apache.hadoop.yarn.security.TestDockerClientConfigHandler#testWriteDockerCredentialsToPath" + ], + "net.topology.script.number.args": [ + "org.apache.hadoop.yarn.util.TestRackResolverScriptBasedMapping#testScriptName" + ], + "yarn.dispatcher.print-thread-pool.maximum-pool-size": [ + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testDispatcherMetricsHistogram", + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testDispatcherOnCloseIfQueueEmpty", + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testPrintDispatcherEventDetails", + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testMetricsForDispatcher", + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testPrintDispatcherEventDetailsAvoidDeadLoop", + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testDispatchStopOnTimeout", + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testDrainDispatcherDrainEventsOnStop" + ], + "yarn.dispatcher.print-thread-pool.core-pool-size": [ + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testDispatcherMetricsHistogram", + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testDispatcherOnCloseIfQueueEmpty", + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testPrintDispatcherEventDetails", + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testMetricsForDispatcher", + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testPrintDispatcherEventDetailsAvoidDeadLoop", + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testDispatchStopOnTimeout", + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testDrainDispatcherDrainEventsOnStop" + ], + "yarn.dispatcher.print-events-info.threshold": [ + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testDispatcherMetricsHistogram", + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testDispatcherOnCloseIfQueueEmpty", + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testMetricsForDispatcher", + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testDispatchStopOnTimeout", + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testDrainDispatcherDrainEventsOnStop" + ], + "yarn.dispatcher.print-thread-pool.keep-alive-time": [ + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testDispatcherMetricsHistogram", + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testDispatcherOnCloseIfQueueEmpty", + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testPrintDispatcherEventDetails", + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testMetricsForDispatcher", + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testPrintDispatcherEventDetailsAvoidDeadLoop", + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testDispatchStopOnTimeout", + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testDrainDispatcherDrainEventsOnStop" + ], + "yarn.dispatcher.drain-events.timeout": [ + "org.apache.hadoop.yarn.event.TestAsyncDispatcher#testDispatcherOnCloseIfQueueEmpty" + ], + "hadoop.security.credstore.java-keystore-provider.password-file": [ + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetPassword", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetHtmlEscapedURIWithQueryString", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testAppendQueryParams", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testLoadSslConfiguration" + ], + "invalid-alias": [ + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetPassword", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testGetHtmlEscapedURIWithQueryString", + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testAppendQueryParams" + ], + "ssl.server.keystore.type": [ + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testLoadSslConfiguration", + "org.apache.hadoop.yarn.webapp.util.TestWebServiceClient#testCreateClient" + ], + "ssl.server.truststore.type": [ + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testLoadSslConfiguration", + "org.apache.hadoop.yarn.webapp.util.TestWebServiceClient#testCreateClient" + ], + "ssl.server.truststore.location": [ + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testLoadSslConfiguration" + ], + "ssl.server.keystore.location": [ + "org.apache.hadoop.yarn.webapp.util.TestWebAppUtils#testLoadSslConfiguration" + ], + "hadoop.ssl.hostname.verifier": [ + "org.apache.hadoop.yarn.webapp.util.TestWebServiceClient#testGetWebServiceClient", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetRollOverLogMaxSize" + ], + "ssl.client.truststore.location": [ + "org.apache.hadoop.yarn.webapp.util.TestWebServiceClient#testGetWebServiceClient", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetRollOverLogMaxSize" + ], + "hadoop.ssl.client.conf": [ + "org.apache.hadoop.yarn.webapp.util.TestWebServiceClient#testGetWebServiceClient", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetRollOverLogMaxSize" + ], + "ssl.{0}.stores.reload.interval": [ + "org.apache.hadoop.yarn.webapp.util.TestWebServiceClient#testCreateClient" + ], + "hadoop.http.acceptor.count": [ + "org.apache.hadoop.yarn.webapp.util.TestWebServiceClient#testCreateClient", + "org.apache.hadoop.yarn.webapp.TestWebApp#testYARNWebAppContext", + "org.apache.hadoop.yarn.webapp.TestWebApp#testDefaultRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithBindAddressNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testEncodedUrl", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testPortRanges", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePathsNoName", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreate", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCustomRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePaths", + "org.apache.hadoop.yarn.webapp.TestWebApp#testRobotsText" + ], + "hadoop.http.socket.backlog.size": [ + "org.apache.hadoop.yarn.webapp.util.TestWebServiceClient#testCreateClient", + "org.apache.hadoop.yarn.webapp.TestWebApp#testYARNWebAppContext", + "org.apache.hadoop.yarn.webapp.TestWebApp#testDefaultRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithBindAddressNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testEncodedUrl", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testPortRanges", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePathsNoName", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreate", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCustomRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePaths", + "org.apache.hadoop.yarn.webapp.TestWebApp#testRobotsText" + ], + "hadoop.http.temp.dir": [ + "org.apache.hadoop.yarn.webapp.util.TestWebServiceClient#testCreateClient", + "org.apache.hadoop.yarn.webapp.TestWebApp#testYARNWebAppContext", + "org.apache.hadoop.yarn.webapp.TestWebApp#testDefaultRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithBindAddressNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testEncodedUrl", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testPortRanges", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePathsNoName", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreate", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCustomRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePaths", + "org.apache.hadoop.yarn.webapp.TestWebApp#testRobotsText" + ], + "hadoop.http.max.response.header.size": [ + "org.apache.hadoop.yarn.webapp.util.TestWebServiceClient#testCreateClient", + "org.apache.hadoop.yarn.webapp.TestWebApp#testYARNWebAppContext", + "org.apache.hadoop.yarn.webapp.TestWebApp#testDefaultRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithBindAddressNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testEncodedUrl", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testPortRanges", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePathsNoName", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreate", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCustomRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePaths", + "org.apache.hadoop.yarn.webapp.TestWebApp#testRobotsText" + ], + "hadoop.http.max.threads": [ + "org.apache.hadoop.yarn.webapp.util.TestWebServiceClient#testCreateClient", + "org.apache.hadoop.yarn.webapp.TestWebApp#testYARNWebAppContext", + "org.apache.hadoop.yarn.webapp.TestWebApp#testDefaultRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithBindAddressNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testEncodedUrl", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testPortRanges", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePathsNoName", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreate", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCustomRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePaths", + "org.apache.hadoop.yarn.webapp.TestWebApp#testRobotsText" + ], + "hadoop.http.selector.count": [ + "org.apache.hadoop.yarn.webapp.util.TestWebServiceClient#testCreateClient", + "org.apache.hadoop.yarn.webapp.TestWebApp#testYARNWebAppContext", + "org.apache.hadoop.yarn.webapp.TestWebApp#testDefaultRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithBindAddressNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testEncodedUrl", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testPortRanges", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePathsNoName", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreate", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCustomRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePaths", + "org.apache.hadoop.yarn.webapp.TestWebApp#testRobotsText" + ], + "hadoop.http.filter.initializers": [ + "org.apache.hadoop.yarn.webapp.util.TestWebServiceClient#testCreateClient", + "org.apache.hadoop.yarn.webapp.TestWebApp#testYARNWebAppContext", + "org.apache.hadoop.yarn.webapp.TestWebApp#testDefaultRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithBindAddressNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testEncodedUrl", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testPortRanges", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePathsNoName", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreate", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCustomRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePaths", + "org.apache.hadoop.yarn.webapp.TestWebApp#testRobotsText" + ], + "hadoop.http.sni.host.check.enabled": [ + "org.apache.hadoop.yarn.webapp.util.TestWebServiceClient#testCreateClient", + "org.apache.hadoop.yarn.webapp.TestWebApp#testYARNWebAppContext", + "org.apache.hadoop.yarn.webapp.TestWebApp#testDefaultRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithBindAddressNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testEncodedUrl", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testPortRanges", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePathsNoName", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreate", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCustomRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePaths", + "org.apache.hadoop.yarn.webapp.TestWebApp#testRobotsText" + ], + "hadoop.prometheus.endpoint.enabled": [ + "org.apache.hadoop.yarn.webapp.util.TestWebServiceClient#testCreateClient", + "org.apache.hadoop.yarn.webapp.TestWebApp#testYARNWebAppContext", + "org.apache.hadoop.yarn.webapp.TestWebApp#testDefaultRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithBindAddressNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testEncodedUrl", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testPortRanges", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePathsNoName", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreate", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCustomRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePaths", + "org.apache.hadoop.yarn.webapp.TestWebApp#testRobotsText" + ], + "hadoop.jetty.logs.serve.aliases": [ + "org.apache.hadoop.yarn.webapp.util.TestWebServiceClient#testCreateClient", + "org.apache.hadoop.yarn.webapp.TestWebApp#testYARNWebAppContext", + "org.apache.hadoop.yarn.webapp.TestWebApp#testDefaultRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithBindAddressNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testEncodedUrl", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testPortRanges", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePathsNoName", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreate", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCustomRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePaths", + "org.apache.hadoop.yarn.webapp.TestWebApp#testRobotsText" + ], + "hadoop.http.logs.enabled": [ + "org.apache.hadoop.yarn.webapp.util.TestWebServiceClient#testCreateClient", + "org.apache.hadoop.yarn.webapp.TestWebApp#testYARNWebAppContext", + "org.apache.hadoop.yarn.webapp.TestWebApp#testDefaultRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithBindAddressNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testEncodedUrl", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testPortRanges", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePathsNoName", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreate", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCustomRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePaths", + "org.apache.hadoop.yarn.webapp.TestWebApp#testRobotsText" + ], + "hadoop.http.idle_timeout.ms": [ + "org.apache.hadoop.yarn.webapp.util.TestWebServiceClient#testCreateClient", + "org.apache.hadoop.yarn.webapp.TestWebApp#testYARNWebAppContext", + "org.apache.hadoop.yarn.webapp.TestWebApp#testDefaultRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithBindAddressNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testEncodedUrl", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testPortRanges", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePathsNoName", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreate", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCustomRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePaths", + "org.apache.hadoop.yarn.webapp.TestWebApp#testRobotsText" + ], + "hadoop.http.metrics.enabled": [ + "org.apache.hadoop.yarn.webapp.util.TestWebServiceClient#testCreateClient", + "org.apache.hadoop.yarn.webapp.TestWebApp#testYARNWebAppContext", + "org.apache.hadoop.yarn.webapp.TestWebApp#testDefaultRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithBindAddressNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testEncodedUrl", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testPortRanges", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePathsNoName", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreate", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCustomRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePaths", + "org.apache.hadoop.yarn.webapp.TestWebApp#testRobotsText" + ], + "hadoop.http.max.request.header.size": [ + "org.apache.hadoop.yarn.webapp.util.TestWebServiceClient#testCreateClient", + "org.apache.hadoop.yarn.webapp.TestWebApp#testYARNWebAppContext", + "org.apache.hadoop.yarn.webapp.TestWebApp#testDefaultRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithBindAddressNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testEncodedUrl", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testPortRanges", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePathsNoName", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreate", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCustomRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePaths", + "org.apache.hadoop.yarn.webapp.TestWebApp#testRobotsText" + ], + "hadoop.http.authentication.kerberos.principal": [ + "org.apache.hadoop.yarn.webapp.TestWebApp#testYARNWebAppContext", + "org.apache.hadoop.yarn.webapp.TestWebApp#testDefaultRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithBindAddressNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testEncodedUrl", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testPortRanges", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePathsNoName", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreate", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCustomRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePaths", + "org.apache.hadoop.yarn.webapp.TestWebApp#testRobotsText" + ], + "hadoop.http.authentication.kerberos.keytab": [ + "org.apache.hadoop.yarn.webapp.TestWebApp#testYARNWebAppContext", + "org.apache.hadoop.yarn.webapp.TestWebApp#testDefaultRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithBindAddressNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testEncodedUrl", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testPortRanges", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePathsNoName", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreate", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCustomRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePaths", + "org.apache.hadoop.yarn.webapp.TestWebApp#testRobotsText" + ], + "hadoop.http.authentication.simple.anonymous.allowed": [ + "org.apache.hadoop.yarn.webapp.TestWebApp#testYARNWebAppContext", + "org.apache.hadoop.yarn.webapp.TestWebApp#testDefaultRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithBindAddressNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testEncodedUrl", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testPortRanges", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePathsNoName", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreate", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCustomRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePaths", + "org.apache.hadoop.yarn.webapp.TestWebApp#testRobotsText" + ], + "hadoop.http.authentication.signature.secret.file": [ + "org.apache.hadoop.yarn.webapp.TestWebApp#testYARNWebAppContext", + "org.apache.hadoop.yarn.webapp.TestWebApp#testDefaultRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithBindAddressNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testEncodedUrl", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testPortRanges", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePathsNoName", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreate", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCustomRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePaths", + "org.apache.hadoop.yarn.webapp.TestWebApp#testRobotsText" + ], + "hadoop.http.authentication.token.validity": [ + "org.apache.hadoop.yarn.webapp.TestWebApp#testYARNWebAppContext", + "org.apache.hadoop.yarn.webapp.TestWebApp#testDefaultRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithBindAddressNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testEncodedUrl", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testPortRanges", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePathsNoName", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreate", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCustomRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePaths", + "org.apache.hadoop.yarn.webapp.TestWebApp#testRobotsText" + ], + "dfs.web.ugi": [ + "org.apache.hadoop.yarn.webapp.TestWebApp#testYARNWebAppContext", + "org.apache.hadoop.yarn.webapp.TestWebApp#testDefaultRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithBindAddressNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testEncodedUrl", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testPortRanges", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePathsNoName", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreate", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCustomRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePaths", + "org.apache.hadoop.yarn.webapp.TestWebApp#testRobotsText" + ], + "hadoop.http.authentication.type": [ + "org.apache.hadoop.yarn.webapp.TestWebApp#testYARNWebAppContext", + "org.apache.hadoop.yarn.webapp.TestWebApp#testDefaultRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithBindAddressNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testEncodedUrl", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testPortRanges", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePathsNoName", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreate", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCustomRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePaths", + "org.apache.hadoop.yarn.webapp.TestWebApp#testRobotsText" + ], + "yarn.admin.acl": [ + "org.apache.hadoop.yarn.webapp.TestWebApp#testYARNWebAppContext", + "org.apache.hadoop.yarn.webapp.TestWebApp#testDefaultRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithBindAddressNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testEncodedUrl", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testPortRanges", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePathsNoName", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreate", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCustomRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePaths", + "org.apache.hadoop.yarn.webapp.TestWebApp#testRobotsText" + ], + "hadoop.http.staticuser.user": [ + "org.apache.hadoop.yarn.webapp.TestWebApp#testYARNWebAppContext", + "org.apache.hadoop.yarn.webapp.TestWebApp#testDefaultRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithBindAddressNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testEncodedUrl", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreateWithNonZeroPort", + "org.apache.hadoop.yarn.webapp.TestWebApp#testPortRanges", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePathsNoName", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCreate", + "org.apache.hadoop.yarn.webapp.TestWebApp#testCustomRoutes", + "org.apache.hadoop.yarn.webapp.TestWebApp#testServePaths", + "org.apache.hadoop.yarn.webapp.TestWebApp#testRobotsText" + ], + "yarn.node-labels.configuration-type": [ + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddInvalidlabel", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddlabelWithExclusivity", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testReplaceLabelsOnHostsShouldUpdateNodesBelongTo", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsToNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testGetNodeLabelsInfo", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testTrimLabelsWhenAddRemoveNodeLabels", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddRemovelabel", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddlabelWithCase", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testTrimLabelsWhenModifyLabelsOnNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsToNodesForSelectedLabels", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testRemoveNodeLabelsInfo", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testRemovelabelWithNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testNoMoreThanOneLabelExistedInOneHost", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testLabelsInfoToNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testAddReplaceRemoveLabelsOnNodes", + "org.apache.hadoop.yarn.nodelabels.TestCommonNodeLabelsManager#testNodeLabelsDisabled", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[1]" + ], + "yarn.fs-store.file.replication": [ + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[0]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithDistributedNodeLabels[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRootMkdirOnInitStore[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testSerilizationAfterRecovery[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testRecoverWithMirror[1]", + "org.apache.hadoop.yarn.nodelabels.TestFileSystemNodeLabelsStore#testEditlogRecover[1]" + ], + "yarn.nodemanager.log-aggregation.compression-type": [ + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAccessDenied", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBadLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlock", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testNoLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletionTwoControllers", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testLogAggregationFileControllerFactory" + ], + "yarn.nodemanager.remote-app-log-dir-include-older": [ + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAccessDenied", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBlockContainsPortNumForUnavailableAppLog", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBadLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlockHar", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlock", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testNoLogs", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testDefaultLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testFetchApplictionLogsHar", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testLogAggregationIndexFileFormat" + ], + "yarn.log-aggregation.TFile.remote-app-log-dir-suffix": [ + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAccessDenied", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBlockContainsPortNumForUnavailableAppLog", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBadLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlock", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testNoLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRefreshLogRetentionSettings", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testCheckInterval", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletion", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRobustLogDeletion", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testDefaultLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testNodemanagerConfigurationIsUsed", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testDefaultConfUsed", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomUser", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomGroup", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationDefault" + ], + "tfile.fs.output.buffer.size": [ + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAccessDenied", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBadLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlock", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testNoLogs" + ], + "yarn.nodemanager.remote-app-log-dir-suffix": [ + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAccessDenied", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBlockContainsPortNumForUnavailableAppLog", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBadLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlock", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testNoLogs", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomUser", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomGroup", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationDefault", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetRollOverLogMaxSize" + ], + "yarn.log-aggregation.file-controller.TFile.class": [ + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAccessDenied", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBlockContainsPortNumForUnavailableAppLog", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBadLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlock", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testNoLogs", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testDefaultLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testNodemanagerConfigurationIsUsed", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testDefaultConfUsed" + ], + "tfile.io.chunk.size": [ + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAccessDenied", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBadLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlock", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testNoLogs" + ], + "tfile.fs.input.buffer.size": [ + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAccessDenied", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlockHar", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlock", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testNoLogs" + ], + "yarn.nodemanager.log-aggregation.num-log-files-per-app": [ + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAccessDenied", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBlockContainsPortNumForUnavailableAppLog", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBadLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlock", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testNoLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRefreshLogRetentionSettings", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testCheckInterval", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletionTwoControllers", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletion", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRobustLogDeletion", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testDefaultLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testClassConfUsed", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testNodemanagerConfigurationIsUsed", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testDefaultConfUsed", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomUser", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomGroup", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationDefault", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testFetchApplictionLogsHar", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetLogMetaFilesOfNode", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetRollOverLogMaxSize", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testLogAggregationIndexFileFormat" + ], + "yarn.log-aggregation.file-formats": [ + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAccessDenied", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBlockContainsPortNumForUnavailableAppLog", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBadLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlock", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testNoLogs", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testDefaultLogAggregationFileControllerFactory" + ], + "yarn.log-aggregation.TFile.remote-app-log-dir": [ + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAccessDenied", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBlockContainsPortNumForUnavailableAppLog", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBadLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlock", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testNoLogs", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRefreshLogRetentionSettings", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testCheckInterval", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletion", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRobustLogDeletion", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testDefaultLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testNodemanagerConfigurationIsUsed", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testDefaultConfUsed", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomUser", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomGroup", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationDefault" + ], + "yarn.nodemanager.hostname": [ + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBlockContainsPortNumForUnavailableAppLog", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBadLogs" + ], + "yarn.nodemanager.webapp.address": [ + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBlockContainsPortNumForUnavailableAppLog", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testBadLogs" + ], + "fs.AbstractFileSystem.har.impl": [ + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlockHar", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testFetchApplictionLogsHar" + ], + "fs.har.metadatacache.entries": [ + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogsBlock#testAggregatedLogsBlockHar", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testFetchApplictionLogsHar" + ], + "fs.mockfs.impl.disable.cache": [ + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRefreshLogRetentionSettings", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testCheckInterval", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletionTwoControllers", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletion", + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testRobustLogDeletion" + ], + "indexedFile.fs.op.num-retries": [ + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletionTwoControllers", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testFetchApplictionLogsHar", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetLogMetaFilesOfNode", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetRollOverLogMaxSize", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testLogAggregationIndexFileFormat" + ], + "indexedFile.log.roll-over.max-file-size-gb": [ + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletionTwoControllers", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testFetchApplictionLogsHar", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetLogMetaFilesOfNode", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetRollOverLogMaxSize", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testLogAggregationIndexFileFormat" + ], + "indexedFile.fs.retry-interval-ms": [ + "org.apache.hadoop.yarn.logaggregation.TestAggregatedLogDeletionService#testDeletionTwoControllers", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testLogAggregationFileControllerFactory", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testFetchApplictionLogsHar", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetLogMetaFilesOfNode", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetRollOverLogMaxSize", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testLogAggregationIndexFileFormat" + ], + "yarn.log-aggregation.TestLogAggregationFileController.remote-app-log-dir": [ + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testLogAggregationFileControllerFactoryClassNotSet" + ], + "yarn.log-aggregation.file-controller.TestLogAggregationFileController.class": [ + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testLogAggregationFileControllerFactoryClassNotSet" + ], + "yarn.log-aggregation.TestLogAggregationFileController.remote-app-log-dir-suffix": [ + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileControllerFactory#testLogAggregationFileControllerFactoryClassNotSet" + ], + "yarn.nodemanager.remote-app-log-dir": [ + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomUser", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationWithCustomGroup", + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationDefault", + "org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.TestLogAggregationIndexedFileController#testGetRollOverLogMaxSize" + ], + "yarn.nodemanager.remote-app-log-dir.groupname": [ + "org.apache.hadoop.yarn.logaggregation.filecontroller.TestLogAggregationFileController#testRemoteDirCreationDefault" + ], + "yarn.nodemanager.localizer.address.rm1": [ + "org.apache.hadoop.yarn.conf.TestYarnConfiguration#testUpdateConnectAddr" + ], + "yarn.resourcemanager.ha.enabled": [ + "org.apache.hadoop.yarn.conf.TestYarnConfiguration#testRMWebUrlSpecified", + "org.apache.hadoop.yarn.conf.TestYarnConfiguration#testGetSocketAddr" + ], + "yarn.resourcemanager.webapp.address": [ + "org.apache.hadoop.yarn.conf.TestYarnConfiguration#testDefaultRMWebUrl" + ], + "yarn.resourcemanager.hostname.rm1": [ + "org.apache.hadoop.yarn.conf.TestHAUtil#testVerifyAndSetConfiguration" + ], + "yarn.resourcemanager.application-tag-based-placement.force-lowercase": [ + "org.apache.hadoop.yarn.api.TestGetApplicationsRequest#testGetApplicationsRequest", + "org.apache.hadoop.yarn.api.protocolrecords.impl.pb.TestGetApplicationsRequestPBImpl#testAppTagsLowerCaseConversionDefault[0]", + "org.apache.hadoop.yarn.api.protocolrecords.impl.pb.TestGetApplicationsRequestPBImpl#testAppTagsLowerCaseConversionDisabled[0]", + "org.apache.hadoop.yarn.api.protocolrecords.impl.pb.TestGetApplicationsRequestPBImpl#testAppTagsLowerCaseConversionEnabled[0]", + "org.apache.hadoop.yarn.api.protocolrecords.impl.pb.TestGetApplicationsRequestPBImpl#testAppTagsLowerCaseConversionDefault[1]", + "org.apache.hadoop.yarn.api.protocolrecords.impl.pb.TestGetApplicationsRequestPBImpl#testAppTagsLowerCaseConversionDisabled[1]", + "org.apache.hadoop.yarn.api.protocolrecords.impl.pb.TestGetApplicationsRequestPBImpl#testAppTagsLowerCaseConversionEnabled[1]", + "org.apache.hadoop.yarn.api.records.impl.pb.TestApplicationSubmissionContextPBImpl#testAppTagsLowerCaseConversionDefault[0]", + "org.apache.hadoop.yarn.api.records.impl.pb.TestApplicationSubmissionContextPBImpl#testAppTagsLowerCaseConversionDisabled[0]", + "org.apache.hadoop.yarn.api.records.impl.pb.TestApplicationSubmissionContextPBImpl#testAppTagsLowerCaseConversionEnabled[0]", + "org.apache.hadoop.yarn.api.records.impl.pb.TestApplicationSubmissionContextPBImpl#testAppTagsLowerCaseConversionDefault[1]", + "org.apache.hadoop.yarn.api.records.impl.pb.TestApplicationSubmissionContextPBImpl#testAppTagsLowerCaseConversionDisabled[1]", + "org.apache.hadoop.yarn.api.records.impl.pb.TestApplicationSubmissionContextPBImpl#testAppTagsLowerCaseConversionEnabled[1]" + ] } \ No newline at end of file From 877b93d63e64b4180bb4835dcdb42adbe36d1dbb Mon Sep 17 00:00:00 2001 From: yuanfei2 Date: Sun, 4 Dec 2022 15:46:02 -0600 Subject: [PATCH 12/15] revert to ctest hadoop --- core/ctest_const.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/ctest_const.py b/core/ctest_const.py index 961a2ecf..517f70bd 100644 --- a/core/ctest_const.py +++ b/core/ctest_const.py @@ -14,7 +14,7 @@ ALLUXIO = "alluxio-core" HYARNCOMMON = "hadoop-yarn-common" -CTEST_HADOOP_DIR = os.path.join(APP_DIR, "../../../hadoop") +CTEST_HADOOP_DIR = os.path.join(APP_DIR, "ctest-hadoop") CTEST_HBASE_DIR = os.path.join(APP_DIR, "ctest-hbase") CTEST_ZK_DIR = os.path.join(APP_DIR, "ctest-zookeeper") CTEST_ALLUXIO_DIR = os.path.join(APP_DIR, "ctest-alluxio") From 612e2a3c8580f2c98b2f38c794520e180c94fe92 Mon Sep 17 00:00:00 2001 From: yuanfei2 Date: Mon, 5 Dec 2022 14:40:56 -0600 Subject: [PATCH 13/15] add patch file for yarn --- core/patch/hadoop/intercept_log.patch | 219 ++++++++++++++++++++++++++ 1 file changed, 219 insertions(+) create mode 100644 core/patch/hadoop/intercept_log.patch diff --git a/core/patch/hadoop/intercept_log.patch b/core/patch/hadoop/intercept_log.patch new file mode 100644 index 00000000..fac19abb --- /dev/null +++ b/core/patch/hadoop/intercept_log.patch @@ -0,0 +1,219 @@ +From e31cc93f9a323196ed7ca5dc353cbfac1f8f3264 Mon Sep 17 00:00:00 2001 +From: yuanfei2 +Date: Mon, 5 Dec 2022 13:47:18 -0600 +Subject: [PATCH] ctest + +--- + hadoop-common-project/hadoop-common/pom.xml | 1 + + .../org/apache/hadoop/conf/Configuration.java | 36 ++++++++++++++++++- + .../hadoop/yarn/conf/YarnConfiguration.java | 3 ++ + hadoop-yarn-project/hadoop-yarn/pom.xml | 16 +++++++++ + pom.xml | 7 ++++ + 5 files changed, 62 insertions(+), 1 deletion(-) + +diff --git a/hadoop-common-project/hadoop-common/pom.xml b/hadoop-common-project/hadoop-common/pom.xml +index 4391995d209..645b836526b 100644 +--- a/hadoop-common-project/hadoop-common/pom.xml ++++ b/hadoop-common-project/hadoop-common/pom.xml +@@ -550,6 +550,7 @@ + + org.apache.maven.plugins + maven-surefire-plugin ++ 3.0.0-M4 + + + ${runningWithNative} +diff --git a/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/conf/Configuration.java b/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/conf/Configuration.java +index ab7ff0bd40c..f398ffeec1f 100755 +--- a/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/conf/Configuration.java ++++ b/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/conf/Configuration.java +@@ -787,6 +787,7 @@ private void handleDeprecation() { + // Add default resources + addDefaultResource("core-default.xml"); + addDefaultResource("core-site.xml"); ++ addDefaultResource("core-ctest.xml"); + + // print deprecation warning if hadoop-site.xml is found in classpath + ClassLoader cL = Thread.currentThread().getContextClassLoader(); +@@ -1243,6 +1244,14 @@ String getProperty(String key) { + } + } + ++ private String getStackTrace() { ++ String stacktrace = " "; ++ for (StackTraceElement element : Thread.currentThread().getStackTrace()) { ++ stacktrace = stacktrace.concat(element.getClassName() + "\t"); ++ } ++ return stacktrace; ++ } ++ + /** + * Get the value of the name property, null if + * no such property exists. If the key is deprecated, it returns the value of +@@ -1259,11 +1268,14 @@ String getProperty(String key) { + * or null if no such property exists. + */ + public String get(String name) { ++ String ctestParam = name; //CTEST + String[] names = handleDeprecation(deprecationContext.get(), name); + String result = null; + for(String n : names) { ++ ctestParam = n; //CTEST + result = substituteVars(getProps().getProperty(n)); + } ++ LOG.warn("[CTEST][GET-PARAM] " + ctestParam); //CTEST + return result; + } + +@@ -1351,11 +1363,14 @@ public String getTrimmed(String name, String defaultValue) { + * its replacing property and null if no such property exists. + */ + public String getRaw(String name) { ++ String ctestParam = name; //CTEST + String[] names = handleDeprecation(deprecationContext.get(), name); + String result = null; + for(String n : names) { ++ ctestParam = n; //CTEST + result = getProps().getProperty(n); + } ++ LOG.warn("[CTEST][GET-PARAM] " + ctestParam); //CTEST + return result; + } + +@@ -1402,6 +1417,10 @@ public String getRaw(String name) { + public void set(String name, String value) { + set(name, value, null); + } ++ ++ public void set(String name, String value, String source) { ++ set(name, value, source, true); ++ } + + /** + * Set the value of the name property. If +@@ -1415,7 +1434,7 @@ public void set(String name, String value) { + * (For debugging). + * @throws IllegalArgumentException when the value or name is null. + */ +- public void set(String name, String value, String source) { ++ public void set(String name, String value, String source, boolean log_enabled) { + Preconditions.checkArgument( + name != null, + "Property name must not be null"); +@@ -1427,6 +1446,10 @@ public void set(String name, String value, String source) { + if (deprecations.getDeprecatedKeyMap().isEmpty()) { + getProps(); + } ++ if(log_enabled) { ++ String msg = "[CTEST][SET-PARAM] " + name + getStackTrace(); ++ LOG.warn(msg); //CTEST ++ } + getOverlay().setProperty(name, value); + getProps().setProperty(name, value); + String newSource = (source == null ? "programmatically" : source); +@@ -1437,6 +1460,10 @@ public void set(String name, String value, String source) { + if(altNames != null) { + for(String n: altNames) { + if(!n.equals(name)) { ++ if(log_enabled) { ++ String msg = "[CTEST][SET-PARAM] " + n + getStackTrace(); ++ LOG.warn(msg); //CTEST ++ } + getOverlay().setProperty(n, value); + getProps().setProperty(n, value); + putIntoUpdatingResource(n, new String[] {newSource}); +@@ -1448,6 +1475,10 @@ public void set(String name, String value, String source) { + String[] names = handleDeprecation(deprecationContext.get(), name); + String altSource = "because " + name + " is deprecated"; + for(String n : names) { ++ if(log_enabled) { ++ String msg = "[CTEST][SET-PARAM] " + n + getStackTrace(); ++ LOG.warn(msg); //CTEST ++ } + getOverlay().setProperty(n, value); + getProps().setProperty(n, value); + putIntoUpdatingResource(n, new String[] {altSource}); +@@ -1520,11 +1551,14 @@ private synchronized Properties getOverlay() { + * doesn't exist. + */ + public String get(String name, String defaultValue) { ++ String ctestParam = name; //CTEST + String[] names = handleDeprecation(deprecationContext.get(), name); + String result = null; + for(String n : names) { ++ ctestParam = n; //CTEST + result = substituteVars(getProps().getProperty(n, defaultValue)); + } ++ LOG.warn("[CTEST][GET-PARAM] " + ctestParam); //CTEST + return result; + } + +diff --git a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/src/main/java/org/apache/hadoop/yarn/conf/YarnConfiguration.java b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/src/main/java/org/apache/hadoop/yarn/conf/YarnConfiguration.java +index 25513fec90c..f01a9eb0a31 100644 +--- a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/src/main/java/org/apache/hadoop/yarn/conf/YarnConfiguration.java ++++ b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/src/main/java/org/apache/hadoop/yarn/conf/YarnConfiguration.java +@@ -63,6 +63,8 @@ + private static final String YARN_DEFAULT_CONFIGURATION_FILE = + "yarn-default.xml"; + ++ private static final String YARN_CTEST_CONFIGURATION_FILE = "yarn-common-ctest.xml"; ++ + @Private + public static final String CORE_SITE_CONFIGURATION_FILE = "core-site.xml"; + +@@ -100,6 +102,7 @@ + Configuration.addDefaultResource(YARN_DEFAULT_CONFIGURATION_FILE); + Configuration.addDefaultResource(YARN_SITE_CONFIGURATION_FILE); + Configuration.addDefaultResource(RESOURCE_TYPES_CONFIGURATION_FILE); ++ Configuration.addDefaultResource(YARN_CTEST_CONFIGURATION_FILE); + } + + private static void addDeprecatedKeys() { +diff --git a/hadoop-yarn-project/hadoop-yarn/pom.xml b/hadoop-yarn-project/hadoop-yarn/pom.xml +index e97e3560855..22c97417e19 100644 +--- a/hadoop-yarn-project/hadoop-yarn/pom.xml ++++ b/hadoop-yarn-project/hadoop-yarn/pom.xml +@@ -39,6 +39,22 @@ + + + ++ ++ org.apache.maven.plugins ++ maven-surefire-plugin ++ 3.0.0-M4 ++ ++ ++ ${runningWithNative} ++ ++ ++ ++ listener ++ org.apache.hadoop.test.TimedOutTestsListener ++ ++ ++ ++ + + com.github.spotbugs + spotbugs-maven-plugin +diff --git a/pom.xml b/pom.xml +index fca42f71630..61c34179d44 100644 +--- a/pom.xml ++++ b/pom.xml +@@ -144,6 +144,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/x + + + ++ ++ org.apache.maven.plugins ++ maven-surefire-plugin ++ ++ plain ++ ++ + + org.apache.maven.plugins + maven-dependency-plugin +-- +2.25.1 + From 170125a246038671ca7581033f85f4c94a3102ad Mon Sep 17 00:00:00 2001 From: yuanfei2 Date: Thu, 8 Dec 2022 16:11:37 -0600 Subject: [PATCH 14/15] add interception and logging patch files for hadoop-yarn-common --- .../hadoop-yarn-common/interception.patch | 144 ++++++++++++++++++ core/patch/hadoop-yarn-common/logging.patch | 121 +++++++++++++++ 2 files changed, 265 insertions(+) create mode 100644 core/patch/hadoop-yarn-common/interception.patch create mode 100644 core/patch/hadoop-yarn-common/logging.patch diff --git a/core/patch/hadoop-yarn-common/interception.patch b/core/patch/hadoop-yarn-common/interception.patch new file mode 100644 index 00000000..921d7f0d --- /dev/null +++ b/core/patch/hadoop-yarn-common/interception.patch @@ -0,0 +1,144 @@ +diff --git a/hadoop-common-project/hadoop-common/pom.xml b/hadoop-common-project/hadoop-common/pom.xml +index 530e18e4b83..9fc70dbeccc 100644 +--- a/hadoop-common-project/hadoop-common/pom.xml ++++ b/hadoop-common-project/hadoop-common/pom.xml +@@ -509,6 +509,7 @@ + + org.apache.maven.plugins + maven-surefire-plugin ++ 3.0.0-M4 + + + ${runningWithNative} +diff --git a/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/conf/Configuration.java b/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/conf/Configuration.java +index 818ef37eb79..5103d3522cf 100755 +--- a/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/conf/Configuration.java ++++ b/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/conf/Configuration.java +@@ -786,6 +786,7 @@ private void handleDeprecation() { + // Add default resources + addDefaultResource("core-default.xml"); + addDefaultResource("core-site.xml"); ++ addDefaultResource("core-ctest.xml"); + + // print deprecation warning if hadoop-site.xml is found in classpath + ClassLoader cL = Thread.currentThread().getContextClassLoader(); +@@ -1383,7 +1384,7 @@ public String getRaw(String name) { + public void set(String name, String value) { + set(name, value, null); + } +- ++ + /** + * Set the value of the name property. If + * name is deprecated, it also sets the value to +diff --git a/hadoop-common-project/hadoop-common/src/test/resources/core-ctest.xml b/hadoop-common-project/hadoop-common/src/test/resources/core-ctest.xml +new file mode 100644 +index 00000000000..db723656af7 +--- /dev/null ++++ b/hadoop-common-project/hadoop-common/src/test/resources/core-ctest.xml +@@ -0,0 +1,6 @@ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/src/main/java/org/apache/hadoop/yarn/conf/YarnConfiguration.java b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/src/main/java/org/apache/hadoop/yarn/conf/YarnConfiguration.java +index c1bb6aa68d2..e3431584a32 100644 +--- a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/src/main/java/org/apache/hadoop/yarn/conf/YarnConfiguration.java ++++ b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/src/main/java/org/apache/hadoop/yarn/conf/YarnConfiguration.java +@@ -65,6 +65,8 @@ + @Private + public static final String CORE_SITE_CONFIGURATION_FILE = "core-site.xml"; + ++ public static final String CTEST_CONFIGURATION_FILE = "ctest-yarn-common.xml"; ++ + @Private + public static final String RESOURCE_TYPES_CONFIGURATION_FILE = + "resource-types.xml"; +@@ -104,6 +106,7 @@ + Configuration.addDefaultResource(YARN_DEFAULT_CONFIGURATION_FILE); + Configuration.addDefaultResource(YARN_SITE_CONFIGURATION_FILE); + Configuration.addDefaultResource(RESOURCE_TYPES_CONFIGURATION_FILE); ++ Configuration.addDefaultResource(CTEST_CONFIGURATION_FILE); + } + + private static void addDeprecatedKeys() { +diff --git a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/pom.xml b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/pom.xml +index d97197bc042..92521010100 100644 +--- a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/pom.xml ++++ b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/pom.xml +@@ -254,6 +254,13 @@ + + + ++ ++ org.apache.maven.plugins ++ maven-surefire-plugin ++ ++ plain ++ ++ + + org.xolstice.maven.plugins + protobuf-maven-plugin +diff --git a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/core-ctest.xml b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/core-ctest.xml +new file mode 100644 +index 00000000000..db723656af7 +--- /dev/null ++++ b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/core-ctest.xml +@@ -0,0 +1,6 @@ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/ctest-yarn-common.xml b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/ctest-yarn-common.xml +new file mode 100644 +index 00000000000..db723656af7 +--- /dev/null ++++ b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/ctest-yarn-common.xml +@@ -0,0 +1,6 @@ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/hadoop-yarn-project/hadoop-yarn/pom.xml b/hadoop-yarn-project/hadoop-yarn/pom.xml +index ddc4e875279..b7c85a1dad8 100644 +--- a/hadoop-yarn-project/hadoop-yarn/pom.xml ++++ b/hadoop-yarn-project/hadoop-yarn/pom.xml +@@ -62,6 +62,7 @@ + + org.apache.maven.plugins + maven-surefire-plugin ++ 3.0.0-M4 + + + +diff --git a/pom.xml b/pom.xml +index f4e435c7493..e47571761ae 100644 +--- a/pom.xml ++++ b/pom.xml +@@ -142,6 +142,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/x + + + ++ ++ org.apache.maven.plugins ++ maven-surefire-plugin ++ ++ plain ++ ++ + + org.apache.maven.plugins + maven-dependency-plugin +-- +2.25.1 + diff --git a/core/patch/hadoop-yarn-common/logging.patch b/core/patch/hadoop-yarn-common/logging.patch new file mode 100644 index 00000000..3dc3f2ce --- /dev/null +++ b/core/patch/hadoop-yarn-common/logging.patch @@ -0,0 +1,121 @@ +diff --git a/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/conf/Configuration.java b/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/conf/Configuration.java +index 5103d3522cf..72d30a988db 100755 +--- a/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/conf/Configuration.java ++++ b/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/conf/Configuration.java +@@ -1225,6 +1225,15 @@ String getProperty(String key) { + } + } + ++ //CTEST find parameter ++ private String getStackTrace() { ++ String stacktrace = " "; ++ for (StackTraceElement element : Thread.currentThread().getStackTrace()) { ++ stacktrace = stacktrace.concat(element.getClassName() + "\t"); ++ } ++ return stacktrace; ++ } ++ + /** + * Get the value of the name property, null if + * no such property exists. If the key is deprecated, it returns the value of +@@ -1241,11 +1250,14 @@ String getProperty(String key) { + * or null if no such property exists. + */ + public String get(String name) { ++ String ctestParam = name; //CTEST + String[] names = handleDeprecation(deprecationContext.get(), name); + String result = null; + for(String n : names) { ++ ctestParam = n; //CTEST + result = substituteVars(getProps().getProperty(n)); + } ++ LOG.warn("[CTEST][GET-PARAM] " + ctestParam); //CTEST + return result; + } + +@@ -1333,11 +1345,14 @@ public String getTrimmed(String name, String defaultValue) { + * its replacing property and null if no such property exists. + */ + public String getRaw(String name) { ++ String ctestParam = name; //CTEST + String[] names = handleDeprecation(deprecationContext.get(), name); + String result = null; + for(String n : names) { ++ ctestParam = n; //CTEST + result = getProps().getProperty(n); + } ++ LOG.warn("[CTEST][GET-PARAM] " + ctestParam); //CTEST + return result; + } + +@@ -1385,6 +1400,10 @@ public void set(String name, String value) { + set(name, value, null); + } + ++ public void set(String name, String value, String source) { ++ set(name, value, source, true); ++ } ++ + /** + * Set the value of the name property. If + * name is deprecated, it also sets the value to +@@ -1397,7 +1416,7 @@ public void set(String name, String value) { + * (For debugging). + * @throws IllegalArgumentException when the value or name is null. + */ +- public void set(String name, String value, String source) { ++ public void set(String name, String value, String source, boolean log_enabled) { + Preconditions.checkArgument( + name != null, + "Property name must not be null"); +@@ -1409,6 +1428,10 @@ public void set(String name, String value, String source) { + if (deprecations.getDeprecatedKeyMap().isEmpty()) { + getProps(); + } ++ if(log_enabled) { ++ String msg = "[CTEST][SET-PARAM] " + name + getStackTrace(); ++ LOG.warn(msg); //CTEST ++ } + getOverlay().setProperty(name, value); + getProps().setProperty(name, value); + String newSource = (source == null ? "programmatically" : source); +@@ -1419,6 +1442,10 @@ public void set(String name, String value, String source) { + if(altNames != null) { + for(String n: altNames) { + if(!n.equals(name)) { ++ if(log_enabled) { ++ String msg = "[CTEST][SET-PARAM] " + n + getStackTrace(); ++ LOG.warn(msg); //CTEST ++ } + getOverlay().setProperty(n, value); + getProps().setProperty(n, value); + putIntoUpdatingResource(n, new String[] {newSource}); +@@ -1430,6 +1457,10 @@ public void set(String name, String value, String source) { + String[] names = handleDeprecation(deprecationContext.get(), name); + String altSource = "because " + name + " is deprecated"; + for(String n : names) { ++ if(log_enabled) { ++ String msg = "[CTEST][SET-PARAM] " + n + getStackTrace(); ++ LOG.warn(msg); //CTEST ++ } + getOverlay().setProperty(n, value); + getProps().setProperty(n, value); + putIntoUpdatingResource(n, new String[] {altSource}); +@@ -1502,11 +1533,14 @@ private synchronized Properties getOverlay() { + * doesn't exist. + */ + public String get(String name, String defaultValue) { ++ String ctestParam = name; //CTEST + String[] names = handleDeprecation(deprecationContext.get(), name); + String result = null; + for(String n : names) { ++ ctestParam = n; //CTEST + result = substituteVars(getProps().getProperty(n, defaultValue)); + } ++ LOG.warn("[CTEST][GET-PARAM] " + ctestParam); //CTEST + return result; + } + +-- +2.25.1 + From e4b90e46f9d57a346fe3ca9f3d3192611bfc1b3a Mon Sep 17 00:00:00 2001 From: yuanfei2 Date: Thu, 8 Dec 2022 16:13:08 -0600 Subject: [PATCH 15/15] removed combined patch file --- core/patch/hadoop/intercept_log.patch | 219 -------------------------- 1 file changed, 219 deletions(-) delete mode 100644 core/patch/hadoop/intercept_log.patch diff --git a/core/patch/hadoop/intercept_log.patch b/core/patch/hadoop/intercept_log.patch deleted file mode 100644 index fac19abb..00000000 --- a/core/patch/hadoop/intercept_log.patch +++ /dev/null @@ -1,219 +0,0 @@ -From e31cc93f9a323196ed7ca5dc353cbfac1f8f3264 Mon Sep 17 00:00:00 2001 -From: yuanfei2 -Date: Mon, 5 Dec 2022 13:47:18 -0600 -Subject: [PATCH] ctest - ---- - hadoop-common-project/hadoop-common/pom.xml | 1 + - .../org/apache/hadoop/conf/Configuration.java | 36 ++++++++++++++++++- - .../hadoop/yarn/conf/YarnConfiguration.java | 3 ++ - hadoop-yarn-project/hadoop-yarn/pom.xml | 16 +++++++++ - pom.xml | 7 ++++ - 5 files changed, 62 insertions(+), 1 deletion(-) - -diff --git a/hadoop-common-project/hadoop-common/pom.xml b/hadoop-common-project/hadoop-common/pom.xml -index 4391995d209..645b836526b 100644 ---- a/hadoop-common-project/hadoop-common/pom.xml -+++ b/hadoop-common-project/hadoop-common/pom.xml -@@ -550,6 +550,7 @@ - - org.apache.maven.plugins - maven-surefire-plugin -+ 3.0.0-M4 - - - ${runningWithNative} -diff --git a/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/conf/Configuration.java b/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/conf/Configuration.java -index ab7ff0bd40c..f398ffeec1f 100755 ---- a/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/conf/Configuration.java -+++ b/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/conf/Configuration.java -@@ -787,6 +787,7 @@ private void handleDeprecation() { - // Add default resources - addDefaultResource("core-default.xml"); - addDefaultResource("core-site.xml"); -+ addDefaultResource("core-ctest.xml"); - - // print deprecation warning if hadoop-site.xml is found in classpath - ClassLoader cL = Thread.currentThread().getContextClassLoader(); -@@ -1243,6 +1244,14 @@ String getProperty(String key) { - } - } - -+ private String getStackTrace() { -+ String stacktrace = " "; -+ for (StackTraceElement element : Thread.currentThread().getStackTrace()) { -+ stacktrace = stacktrace.concat(element.getClassName() + "\t"); -+ } -+ return stacktrace; -+ } -+ - /** - * Get the value of the name property, null if - * no such property exists. If the key is deprecated, it returns the value of -@@ -1259,11 +1268,14 @@ String getProperty(String key) { - * or null if no such property exists. - */ - public String get(String name) { -+ String ctestParam = name; //CTEST - String[] names = handleDeprecation(deprecationContext.get(), name); - String result = null; - for(String n : names) { -+ ctestParam = n; //CTEST - result = substituteVars(getProps().getProperty(n)); - } -+ LOG.warn("[CTEST][GET-PARAM] " + ctestParam); //CTEST - return result; - } - -@@ -1351,11 +1363,14 @@ public String getTrimmed(String name, String defaultValue) { - * its replacing property and null if no such property exists. - */ - public String getRaw(String name) { -+ String ctestParam = name; //CTEST - String[] names = handleDeprecation(deprecationContext.get(), name); - String result = null; - for(String n : names) { -+ ctestParam = n; //CTEST - result = getProps().getProperty(n); - } -+ LOG.warn("[CTEST][GET-PARAM] " + ctestParam); //CTEST - return result; - } - -@@ -1402,6 +1417,10 @@ public String getRaw(String name) { - public void set(String name, String value) { - set(name, value, null); - } -+ -+ public void set(String name, String value, String source) { -+ set(name, value, source, true); -+ } - - /** - * Set the value of the name property. If -@@ -1415,7 +1434,7 @@ public void set(String name, String value) { - * (For debugging). - * @throws IllegalArgumentException when the value or name is null. - */ -- public void set(String name, String value, String source) { -+ public void set(String name, String value, String source, boolean log_enabled) { - Preconditions.checkArgument( - name != null, - "Property name must not be null"); -@@ -1427,6 +1446,10 @@ public void set(String name, String value, String source) { - if (deprecations.getDeprecatedKeyMap().isEmpty()) { - getProps(); - } -+ if(log_enabled) { -+ String msg = "[CTEST][SET-PARAM] " + name + getStackTrace(); -+ LOG.warn(msg); //CTEST -+ } - getOverlay().setProperty(name, value); - getProps().setProperty(name, value); - String newSource = (source == null ? "programmatically" : source); -@@ -1437,6 +1460,10 @@ public void set(String name, String value, String source) { - if(altNames != null) { - for(String n: altNames) { - if(!n.equals(name)) { -+ if(log_enabled) { -+ String msg = "[CTEST][SET-PARAM] " + n + getStackTrace(); -+ LOG.warn(msg); //CTEST -+ } - getOverlay().setProperty(n, value); - getProps().setProperty(n, value); - putIntoUpdatingResource(n, new String[] {newSource}); -@@ -1448,6 +1475,10 @@ public void set(String name, String value, String source) { - String[] names = handleDeprecation(deprecationContext.get(), name); - String altSource = "because " + name + " is deprecated"; - for(String n : names) { -+ if(log_enabled) { -+ String msg = "[CTEST][SET-PARAM] " + n + getStackTrace(); -+ LOG.warn(msg); //CTEST -+ } - getOverlay().setProperty(n, value); - getProps().setProperty(n, value); - putIntoUpdatingResource(n, new String[] {altSource}); -@@ -1520,11 +1551,14 @@ private synchronized Properties getOverlay() { - * doesn't exist. - */ - public String get(String name, String defaultValue) { -+ String ctestParam = name; //CTEST - String[] names = handleDeprecation(deprecationContext.get(), name); - String result = null; - for(String n : names) { -+ ctestParam = n; //CTEST - result = substituteVars(getProps().getProperty(n, defaultValue)); - } -+ LOG.warn("[CTEST][GET-PARAM] " + ctestParam); //CTEST - return result; - } - -diff --git a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/src/main/java/org/apache/hadoop/yarn/conf/YarnConfiguration.java b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/src/main/java/org/apache/hadoop/yarn/conf/YarnConfiguration.java -index 25513fec90c..f01a9eb0a31 100644 ---- a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/src/main/java/org/apache/hadoop/yarn/conf/YarnConfiguration.java -+++ b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/src/main/java/org/apache/hadoop/yarn/conf/YarnConfiguration.java -@@ -63,6 +63,8 @@ - private static final String YARN_DEFAULT_CONFIGURATION_FILE = - "yarn-default.xml"; - -+ private static final String YARN_CTEST_CONFIGURATION_FILE = "yarn-common-ctest.xml"; -+ - @Private - public static final String CORE_SITE_CONFIGURATION_FILE = "core-site.xml"; - -@@ -100,6 +102,7 @@ - Configuration.addDefaultResource(YARN_DEFAULT_CONFIGURATION_FILE); - Configuration.addDefaultResource(YARN_SITE_CONFIGURATION_FILE); - Configuration.addDefaultResource(RESOURCE_TYPES_CONFIGURATION_FILE); -+ Configuration.addDefaultResource(YARN_CTEST_CONFIGURATION_FILE); - } - - private static void addDeprecatedKeys() { -diff --git a/hadoop-yarn-project/hadoop-yarn/pom.xml b/hadoop-yarn-project/hadoop-yarn/pom.xml -index e97e3560855..22c97417e19 100644 ---- a/hadoop-yarn-project/hadoop-yarn/pom.xml -+++ b/hadoop-yarn-project/hadoop-yarn/pom.xml -@@ -39,6 +39,22 @@ - - - -+ -+ org.apache.maven.plugins -+ maven-surefire-plugin -+ 3.0.0-M4 -+ -+ -+ ${runningWithNative} -+ -+ -+ -+ listener -+ org.apache.hadoop.test.TimedOutTestsListener -+ -+ -+ -+ - - com.github.spotbugs - spotbugs-maven-plugin -diff --git a/pom.xml b/pom.xml -index fca42f71630..61c34179d44 100644 ---- a/pom.xml -+++ b/pom.xml -@@ -144,6 +144,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/x - - - -+ -+ org.apache.maven.plugins -+ maven-surefire-plugin -+ -+ plain -+ -+ - - org.apache.maven.plugins - maven-dependency-plugin --- -2.25.1 -