Skip to content

Commit

Permalink
Temp save skip partition
Browse files Browse the repository at this point in the history
  • Loading branch information
仟弋 committed Aug 21, 2024
1 parent f5b97f4 commit c8212c2
Show file tree
Hide file tree
Showing 13 changed files with 412 additions and 254 deletions.
6 changes: 6 additions & 0 deletions docs/layouts/shortcodes/generated/core_configuration.html
Original file line number Diff line number Diff line change
Expand Up @@ -888,6 +888,12 @@
<td>Boolean</td>
<td>If set to true, compactions and snapshot expiration will be skipped. This option is used along with dedicated compact jobs.</td>
</tr>
<tr>
<td><h5>write-skip-partition</h5></td>
<td style="word-wrap: break-word;">true</td>
<td>Boolean</td>
<td>Whether to skip partition field while writing.</td>
</tr>
<tr>
<td><h5>zorder.var-length-contribution</h5></td>
<td style="word-wrap: break-word;">8</td>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -427,9 +427,9 @@ public class CoreOptions implements Serializable {
public static final ConfigOption<Boolean> WRITE_SKIP_PARTITION =
key("write-skip-partition")
.booleanType()
.defaultValue(false)
.defaultValue(true)
.withFallbackKeys("write.skip-partition")
.withDescription("Whether to automatically complete missing tags.");
.withDescription("Whether to skip partition field while writing.");

public static final ConfigOption<Integer> LOCAL_SORT_MAX_NUM_FILE_HANDLES =
key("local-sort.max-num-file-handles")
Expand Down
190 changes: 0 additions & 190 deletions paimon-common/src/main/java/org/apache/paimon/PartitionSettedRow.java

This file was deleted.

Loading

0 comments on commit c8212c2

Please sign in to comment.