Skip to content

Commit aa8936b

Browse files
committed
fix_whitespace_formatting
1 parent 2512dfc commit aa8936b

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

docs/docs/spark-procedures.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,6 @@ Dangling deletes are always filtered out during rewriting.
533533
| `min-input-files` | 5 | Any file group exceeding this number of files will be rewritten regardless of other criteria |
534534
| `rewrite-all` | false | Force rewriting of all provided files overriding other options |
535535
| `max-file-group-size-bytes` | 107374182400 (100GB) | Largest amount of data that should be rewritten in a single file group. The entire rewrite operation is broken down into pieces based on partitioning and within partitions based on size into file-groups. This helps with breaking down the rewriting of very large partitions which may not be rewritable otherwise due to the resource constraints of the cluster. |
536-
| `max-files-to-rewrite` | null | This option sets an upper limit on the number of files eligible for rewrite operation. It can be useful for improving job stability, particularly when dealing with a large number of files. If this option is not specified, all files will be considered for rewriting |
537536

538537
#### Output
539538

@@ -867,11 +866,11 @@ that provide additional information about the changes being tracked. These colum
867866
Here is an example of corresponding results. It shows that the first snapshot inserted 2 records, and the
868867
second snapshot deleted 1 record.
869868
870-
| id | name |_change_type | _change_ordinal | _commit_snapshot_id |
869+
| id | name |_change_type | _change_ordinal | _commit_snapshot_id |
871870
|---|--------|---|---|---|
872-
|1 | Alice |INSERT |0 |5390529835796506035|
873-
|2 | Bob |INSERT |0 |5390529835796506035|
874-
|1 | Alice |DELETE |1 |8764748981452218370|
871+
|1 | Alice |INSERT |0 |5390529835796506035|
872+
|2 | Bob |INSERT |0 |5390529835796506035|
873+
|1 | Alice |DELETE |1 |8764748981452218370|
875874
876875
#### Net Changes
877876
@@ -887,9 +886,9 @@ CALL spark_catalog.system.create_changelog_view(
887886
888887
With the net changes, the above changelog view only contains the following row since Alice was inserted in the first snapshot and deleted in the second snapshot.
889888
890-
| id | name |_change_type | _change_ordinal | _commit_snapshot_id |
889+
| id | name |_change_type | _change_ordinal | _commit_snapshot_id |
891890
|---|--------|---|---|---|
892-
|2 | Bob |INSERT |0 |5390529835796506035|
891+
|2 | Bob |INSERT |0 |5390529835796506035|
893892
894893
#### Carry-over Rows
895894

0 commit comments

Comments
 (0)