[ https://issues.apache.org/jira/browse/HIVE-26319?focusedWorklogId=785068&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-785068 ]
ASF GitHub Bot logged work on HIVE-26319: ----------------------------------------- Author: ASF GitHub Bot Created on: 27/Jun/22 12:29 Start Date: 27/Jun/22 12:29 Worklog Time Spent: 10m Work Description: pvary commented on code in PR #3362: URL: https://github.com/apache/hive/pull/3362#discussion_r907331111 ########## iceberg/iceberg-handler/src/main/java/org/apache/iceberg/mr/hive/HiveIcebergOutputCommitter.java: ########## @@ -127,14 +133,23 @@ public void commitTask(TaskAttemptContext originalContext) throws IOException { .run(output -> { Table table = HiveIcebergStorageHandler.table(context.getJobConf(), output); if (table != null) { - HiveIcebergWriter writer = writers.get(output); + Collection<DataFile> dataFiles = Lists.newArrayList(); + Collection<DeleteFile> deleteFiles = Lists.newArrayList(); String fileForCommitLocation = generateFileForCommitLocation(table.location(), jobConf, - attemptID.getJobID(), attemptID.getTaskID().getId()); - if (writer != null) { - createFileForCommit(writer.files(), fileForCommitLocation, table.io()); - } else { + attemptID.getJobID(), attemptID.getTaskID().getId()); + if (writers.get(output) != null) { Review Comment: Maybe when we do not do the null checks we can use the streaming api to simplify the code Issue Time Tracking ------------------- Worklog Id: (was: 785068) Time Spent: 4.5h (was: 4h 20m) > Iceberg integration: Perform update split early > ----------------------------------------------- > > Key: HIVE-26319 > URL: https://issues.apache.org/jira/browse/HIVE-26319 > Project: Hive > Issue Type: Improvement > Components: File Formats > Reporter: Krisztian Kasa > Assignee: Krisztian Kasa > Priority: Major > Labels: pull-request-available > Fix For: 4.0.0 > > Time Spent: 4.5h > Remaining Estimate: 0h > > Extend update split early to iceberg tables like in HIVE-21160 for native > acid tables -- This message was sent by Atlassian Jira (v8.20.7#820007)