From 37c6c06f5cdb512de2f1f5adaff4650d98dc079f Mon Sep 17 00:00:00 2001 From: Sreeram Garlapati Date: Sun, 20 Feb 2022 09:06:40 -0800 Subject: [PATCH] Docs: Add Spark streaming option skip-overwrites (#4121) --- docs/versioned/spark/spark-structured-streaming.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/versioned/spark/spark-structured-streaming.md b/docs/versioned/spark/spark-structured-streaming.md index 35dbfdc85bf8..6dffdbf83896 100644 --- a/docs/versioned/spark/spark-structured-streaming.md +++ b/docs/versioned/spark/spark-structured-streaming.md @@ -44,7 +44,7 @@ val df = spark.readStream ``` {{< hint warning >}} -Iceberg only supports reading data from append snapshots. Overwrite snapshots cannot be processed and will cause an exception. Similarly, delete snapshots will cause an exception by default, but deletes may be ignored by setting `streaming-skip-delete-snapshots=true`. +Iceberg only supports reading data from append snapshots. Overwrite snapshots cannot be processed and will cause an exception by default. Overwrites may be ignored by setting `streaming-skip-overwrite-snapshots=true`. Similarly, delete snapshots will cause an exception by default, and deletes may be ignored by setting `streaming-skip-delete-snapshots=true`. {{}} ## Streaming Writes