lvyanquan commented on code in PR #4080: URL: https://github.com/apache/flink-cdc/pull/4080#discussion_r2256976907
########## flink-cdc-connect/flink-cdc-pipeline-connectors/flink-cdc-pipeline-connector-iceberg/src/main/java/org/apache/flink/cdc/connectors/iceberg/sink/IcebergMetadataApplier.java: ########## @@ -159,6 +170,9 @@ private void applyCreateTable(CreateTableEvent event) { PartitionSpec partitionSpec = builder.build(); if (!catalog.tableExists(tableIdentifier)) { catalog.createTable(tableIdentifier, icebergSchema, partitionSpec, tableOptions); + LOG.info( + "Spend {} ms to create iceberg table", + System.currentTimeMillis() - startTimestamp); Review Comment: It's better to add table name here too. -- 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: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org