stevenzwu commented on code in PR #4904: URL: https://github.com/apache/iceberg/pull/4904#discussion_r926825888
########## flink/v1.15/flink/src/main/java/org/apache/iceberg/flink/IcebergTableSink.java: ########## @@ -31,7 +31,7 @@ import org.apache.flink.table.connector.sink.abilities.SupportsPartitioning; import org.apache.flink.types.RowKind; import org.apache.flink.util.Preconditions; -import org.apache.iceberg.flink.sink.FlinkSink; +import org.apache.iceberg.flink.sink.v2.FlinkSink; Review Comment: Maybe `table.exec.iceberg.use-flip143-sink`. Here is the source config from my r[ecently opened PR](https://github.com/apache/iceberg/pull/5318/files#diff-dcbfb695653a4eb40200eef1889e2526122c3748c6846ef40d90987bdf0a7563). ``` public static final ConfigOption<Boolean> TABLE_EXEC_ICEBERG_USE_FLIP27_SOURCE = ConfigOptions.key("table.exec.iceberg.use-flip27-source") .booleanType() .defaultValue(false) .withDescription("Use the FLIP-27 based Iceberg source implementation."); ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
