Skip to content
Snippets Groups Projects
Commit 7d8e6a2e authored by Sean Owen's avatar Sean Owen Committed by Reynold Xin
Browse files

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
parent f84c799e
No related branches found
No related tags found
No related merge requests found
......@@ -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>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment