From efc50b9a814073902340844def78fe123cdbbd37 Mon Sep 17 00:00:00 2001 From: Yadong Date: Thu, 26 Jun 2014 22:09:02 +0800 Subject: [PATCH] The default value of "spark.locality.wait.process" is error. The default value of "spark.locality.wait.process" is error.It is "3000" in the code. The same to "spark.locality.wait.node" and "spark.locality.wait.rack". --- docs/configuration.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/configuration.md b/docs/configuration.md index 5b034e3cb3d47..9973707269288 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -343,7 +343,7 @@ Apart from these, the following properties are also available, and may be useful spark.locality.wait.process - spark.locality.wait + 3000 Customize the locality wait for process locality. This affects tasks that attempt to access cached data in a particular executor process. @@ -351,7 +351,7 @@ Apart from these, the following properties are also available, and may be useful spark.locality.wait.node - spark.locality.wait + 3000 Customize the locality wait for node locality. For example, you can set this to 0 to skip node locality and search immediately for rack locality (if your cluster has rack information). @@ -359,7 +359,7 @@ Apart from these, the following properties are also available, and may be useful spark.locality.wait.rack - spark.locality.wait + 3000 Customize the locality wait for rack locality.