From 4da1cad680d4783c3906a6a7e515b28b4acb9f37 Mon Sep 17 00:00:00 2001 From: wangteng13 <45892487+wangteng13@users.noreply.github.com> Date: Wed, 2 Nov 2022 04:34:59 +0800 Subject: [PATCH] document fix for MAPREDUCE-7425 (#5090) Reviewed-by: Ashutosh Gupta Signed-off-by: Chris Nauroth (cherry picked from commit 388f2f182f1f21ca0e3931db8b125f327f77880b) --- .../src/main/resources/mapred-default.xml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/resources/mapred-default.xml b/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/resources/mapred-default.xml index ac7948f92a..06e9c03861 100644 --- a/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/resources/mapred-default.xml +++ b/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/resources/mapred-default.xml @@ -1660,14 +1660,18 @@ yarn.app.mapreduce.client-am.ipc.max-retries 3 The number of client retries to the AM - before reconnecting - to the RM to fetch Application Status. + to the RM to fetch Application Status. + In other words, it is the ipc.client.connect.max.retries to be used during + reconnecting to the RM and fetching Application Status. yarn.app.mapreduce.client-am.ipc.max-retries-on-timeouts 3 The number of client retries on socket timeouts to the AM - before - reconnecting to the RM to fetch Application Status. + reconnecting to the RM to fetch Application Status. + In other words, it is the ipc.client.connect.max.retries.on.timeouts to be used during + reconnecting to the RM and fetching Application Status.