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/content/spark/procedures.md
+5-3Lines changed: 5 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -139,9 +139,10 @@ This section introduce all available spark procedures about paimon.
139
139
<li>options: the table options of the paimon table to migrate.</li>
140
140
<li>target_table: name of the target paimon table to migrate. If not set would keep the same name with origin table</li>
141
141
<li>delete_origin: If had set target_table, can set delete_origin to decide whether delete the origin table metadata from hms after migrate. Default is true</li>
142
-
<li>options_map: Options map for adding key-value options which is a map.</li>
142
+
<li>options_map: Options map for adding key-value options which is a map.</li>
143
+
<li>parallelism: the parallelism for migrate process, default is core numbers of machine.</li>
@@ -151,8 +152,9 @@ This section introduce all available spark procedures about paimon.
151
152
<li>source_table: name of the origin table to migrate. Cannot be empty.</li>
152
153
<li>target_table: name of the target table to be migrated. Cannot be empty.</li>
153
154
<li>delete_origin: If had set target_table, can set delete_origin to decide whether delete the origin table metadata from hms after migrate. Default is true</li>
155
+
<li>parallelism: the parallelism for migrate process, default is core numbers of machine.</li>
Copy file name to clipboardExpand all lines: paimon-flink/paimon-flink-1.18/src/main/java/org/apache/paimon/flink/procedure/MigrateDatabaseProcedure.java
Copy file name to clipboardExpand all lines: paimon-flink/paimon-flink-common/src/main/java/org/apache/paimon/flink/action/MigrateDatabaseActionFactory.java
+8-1Lines changed: 8 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -28,6 +28,7 @@ public class MigrateDatabaseActionFactory implements ActionFactory {
Copy file name to clipboardExpand all lines: paimon-flink/paimon-flink-common/src/main/java/org/apache/paimon/flink/action/MigrateFileActionFactory.java
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -35,6 +35,7 @@ public class MigrateFileActionFactory implements ActionFactory {
Copy file name to clipboardExpand all lines: paimon-flink/paimon-flink-common/src/main/java/org/apache/paimon/flink/action/MigrateTableActionFactory.java
+8-1Lines changed: 8 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -28,6 +28,7 @@ public class MigrateTableActionFactory implements ActionFactory {
0 commit comments