You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/layouts/shortcodes/generated/core_configuration.html
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -534,7 +534,7 @@
534
534
<td><h5>full-compaction.delta-commits</h5></td>
535
535
<tdstyle="word-wrap: break-word;">(none)</td>
536
536
<td>Integer</td>
537
-
<td>Full compaction will be constantly triggered after delta commits.</td>
537
+
<td>For streaming write, full compaction will be constantly triggered after delta commits. For batch write, full compaction will be triggered with each commit as long as this value is greater than 0.</td>
Copy file name to clipboardExpand all lines: paimon-spark/paimon-spark-common/src/main/scala/org/apache/paimon/spark/commands/WriteIntoPaimonTable.scala
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -36,7 +36,8 @@ case class WriteIntoPaimonTable(
36
36
overridevaloriginTable:FileStoreTable,
37
37
saveMode: SaveMode,
38
38
_data: DataFrame,
39
-
options: Options)
39
+
options: Options,
40
+
batchId: Long=-1)
40
41
extendsRunnableCommand
41
42
withExpressionHelper
42
43
withSchemaHelper
@@ -50,7 +51,7 @@ case class WriteIntoPaimonTable(
0 commit comments