Repository: spark Updated Branches: refs/heads/master f84c799ea -> 7d8e6a2e4
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 <[email protected]> Closes #4769 from srowen/SPARK-5930 and squashes the following commits: ae2792b [Sean Owen] Clarify default max wait in spark.shuffle.io.retryWait docs Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/7d8e6a2e Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/7d8e6a2e Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/7d8e6a2e Branch: refs/heads/master Commit: 7d8e6a2e44e13a6d6cdcd98a0d0c33b243ef0dc2 Parents: f84c799 Author: Sean Owen <[email protected]> Authored: Wed Feb 25 12:20:44 2015 -0800 Committer: Reynold Xin <[email protected]> Committed: Wed Feb 25 12:20:44 2015 -0800 ---------------------------------------------------------------------- docs/configuration.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/7d8e6a2e/docs/configuration.md ---------------------------------------------------------------------- diff --git a/docs/configuration.md b/docs/configuration.md index c8db338..8129851 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> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
