Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion docs/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -1188,7 +1188,9 @@ Apart from these, the following properties are also available, and may be useful
<td><code>spark.task.maxFailures</code></td>
<td>4</td>
<td>
Number of individual task failures before giving up on the job.
Number of failures of any particular task before giving up on the job.
The total number of failures spread across different tasks will not cause the job
to fail; a particular task has to fail this number of attempts.
Should be greater than or equal to 1. Number of allowed retries = this value - 1.
</td>
</tr>
Expand Down