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
If you want to read the changelog of this connector, your sink table of paimon which mast has the options named `changelog-producer=input`, then you can refer to [Paimon changelog](https://paimon.apache.org/docs/master/primary-key-table/changelog-producer/).
161
+
Currently, we only support the `input` and `none` mode of changelog producer. If the changelog producer is `input`, the streaming read of the connector will generate -U,+U,+I,+D data. But if the changelog producer is `none`, the streaming read of the connector will generate +I,+U,+D data.
Copy file name to clipboardexpand all lines: seatunnel-connectors-v2/connector-paimon/src/main/java/org/apache/seatunnel/connectors/seatunnel/paimon/source/PaimonSource.java
Copy file name to clipboardexpand all lines: seatunnel-connectors-v2/connector-paimon/src/main/java/org/apache/seatunnel/connectors/seatunnel/paimon/source/PaimonSourceReader.java
Copy file name to clipboardexpand all lines: seatunnel-connectors-v2/connector-paimon/src/main/java/org/apache/seatunnel/connectors/seatunnel/paimon/source/PaimonSourceSplit.java
+8-8
Original file line number
Diff line number
Diff line change
@@ -21,22 +21,22 @@
21
21
22
22
importorg.apache.paimon.table.source.Split;
23
23
24
+
importlombok.AllArgsConstructor;
25
+
importlombok.Getter;
26
+
24
27
/** Paimon source split, wrapped the {@link Split} of paimon table. */
0 commit comments