aboutsummaryrefslogtreecommitdiff
path: root/docs/configuration.md
diff options
context:
space:
mode:
authorSean Owen <sowen@cloudera.com>2015-02-25 12:20:44 -0800
committerReynold Xin <rxin@databricks.com>2015-02-25 12:20:44 -0800
commit7d8e6a2e44e13a6d6cdcd98a0d0c33b243ef0dc2 (patch)
tree81ef0ac58cf84edf748349a621fb90412759e43f /docs/configuration.md
parentf84c799ea0b82abca6a4fad39532c2515743b632 (diff)
downloadspark-7d8e6a2e44e13a6d6cdcd98a0d0c33b243ef0dc2.tar.gz
spark-7d8e6a2e44e13a6d6cdcd98a0d0c33b243ef0dc2.tar.bz2
spark-7d8e6a2e44e13a6d6cdcd98a0d0c33b243ef0dc2.zip
SPARK-5930 [DOCS] Documented default of spark.shuffle.io.retryWait is confusing
Clarify default max wait in spark.shuffle.io.retryWait docs CC andrewor14 Author: Sean Owen <sowen@cloudera.com> Closes #4769 from srowen/SPARK-5930 and squashes the following commits: ae2792b [Sean Owen] Clarify default max wait in spark.shuffle.io.retryWait docs
Diffstat (limited to 'docs/configuration.md')
-rw-r--r--docs/configuration.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/configuration.md b/docs/configuration.md
index c8db338cb6..81298514a7 100644
--- a/docs/configuration.md
+++ b/docs/configuration.md
@@ -955,7 +955,9 @@ Apart from these, the following properties are also available, and may be useful
<td>5</td>
<td>
(Netty only) Seconds to wait between retries of fetches. The maximum delay caused by retrying
- is simply <code>maxRetries * retryWait</code>, by default 15 seconds.
+ is simply <code>maxRetries * retryWait</code>. The default maximum delay is therefore
+ 15 seconds, because the default value of <code>maxRetries</code> is 3, and the default
+ <code>retryWait</code> here is 5 seconds.
</td>
</tr>
</table>