RussellSpitzer commented on code in PR #6682: URL: https://github.com/apache/iceberg/pull/6682#discussion_r1122055847
########## spark/v3.3/spark/src/main/java/org/apache/iceberg/spark/actions/DeleteReachableFilesSparkAction.java: ########## @@ -132,7 +135,20 @@ private Dataset<FileInfo> reachableFileDS(TableMetadata metadata) { } private DeleteReachableFiles.Result deleteFiles(Iterator<FileInfo> files) { - DeleteSummary summary = deleteFiles(deleteExecutorService, deleteFunc, files); + DeleteSummary summary; + if (deleteFunc != null || !(io instanceof SupportsBulkOperations)) { + if (deleteFunc == null) { + LOG.info("Table IO does not support Bulk Operations. Using non-bulk deletes."); Review Comment: changed this and made it so the same messages appear in all three actions -- 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...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org