WenfengJ opened a new issue #2693: URL: https://github.com/apache/iceberg/issues/2693
Hi, I use Flinksink to iceberg table,if data are offline data,the table is ok, but if data is realtime ,for example . kafka,mysql cdc.....,the table created ,but data not commit .     ``` env.setStreamTimeCharacteristic(TimeCharacteristic.EventTime); env.enableCheckpointing(6000); env.setMaxParallelism(1); ...... (source is realtime data or offline data ) FlinkSink. forRow(source, SimpleDataUtil.FLINK_SCHEMA) .table(table) .tableLoader(tableLoader) .overwrite(false) .tableSchema(SimpleDataUtil.FLINK_SCHEMA) .writeParallelism(1) .build(); ``` As shown in the figure: -- 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. For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
