aboutsummaryrefslogtreecommitdiff
path: root/docs/configuration.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/configuration.md')
-rw-r--r--docs/configuration.md18
1 files changed, 18 insertions, 0 deletions
diff --git a/docs/configuration.md b/docs/configuration.md
index 6bd0658b3e..08392c3918 100644
--- a/docs/configuration.md
+++ b/docs/configuration.md
@@ -1574,6 +1574,24 @@ Apart from these, the following properties are also available, and may be useful
How many batches the Spark Streaming UI and status APIs remember before garbage collecting.
</td>
</tr>
+<tr>
+ <td><code>spark.streaming.driver.writeAheadLog.closeFileAfterWrite</code></td>
+ <td>false</td>
+ <td>
+ Whether to close the file after writing a write ahead log record on the driver. Set this to 'true'
+ when you want to use S3 (or any file system that does not support flushing) for the metadata WAL
+ on the driver.
+ </td>
+</tr>
+<tr>
+ <td><code>spark.streaming.receiver.writeAheadLog.closeFileAfterWrite</code></td>
+ <td>false</td>
+ <td>
+ Whether to close the file after writing a write ahead log record on the receivers. Set this to 'true'
+ when you want to use S3 (or any file system that does not support flushing) for the data WAL
+ on the receivers.
+ </td>
+</tr>
</table>
#### SparkR