Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
* RewriteDataFiles#TARGET_FILE_SIZE_BYTES}.
*
* @deprecated since 1.3.0, will be removed in 1.4.0; use {@link SizeBasedFileRewriter} instead.
* Note: This can only be removed once Spark 3.1 + 3.2 isn't using this API anymore.
* Note: This can only be removed once Spark 3.2 isn't using this API anymore.
*/
@Deprecated
public abstract class BinPackStrategy implements RewriteStrategy {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
* A strategy for rewriting files.
*
* @deprecated since 1.3.0, will be removed in 1.4.0; use {@link FileRewriter} instead. Note: This
* can only be removed once Spark 3.1 + 3.2 isn't using this API anymore.
* can only be removed once Spark 3.2 isn't using this API anymore.
*/
@Deprecated
public interface RewriteStrategy extends Serializable {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
* <p>In the future other algorithms for determining files to rewrite will be provided.
*
* @deprecated since 1.3.0, will be removed in 1.4.0; use {@link SizeBasedFileRewriter} instead.
* Note: This can only be removed once Spark 3.1 + 3.2 isn't using this API anymore.
* Note: This can only be removed once Spark 3.2 isn't using this API anymore.
*/
@Deprecated
public abstract class SortStrategy extends BinPackStrategy {
Expand Down
2 changes: 1 addition & 1 deletion docs/nessie.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ org.apache.iceberg:iceberg-spark-runtime-3.3_2.12:{{% icebergVersion %}}`.

## Spark SQL Extensions

From Spark 3.1 and above, Nessie SQL extensions can be used to manage the Nessie repo as shown below.
Nessie SQL extensions can be used to manage the Nessie repo as shown below.
Example for Spark 3.3 with scala 2.12:

```
Expand Down
2 changes: 0 additions & 2 deletions docs/spark-writes.md
Original file line number Diff line number Diff line change
Expand Up @@ -184,8 +184,6 @@ If the delete filter matches entire partitions of the table, Iceberg will perfor

### `UPDATE`

Spark 3.1 added support for `UPDATE` queries that update matching rows in tables.

Update queries accept a filter to match rows to update.

```sql
Expand Down