difin commented on code in PR #5712: URL: https://github.com/apache/hive/pull/5712#discussion_r2016912403
########## iceberg/iceberg-handler/src/main/java/org/apache/iceberg/mr/hive/writer/WriterRegistry.java: ########## @@ -36,13 +36,10 @@ public static Map<String, List<HiveIcebergWriter>> removeWriters(TaskAttemptID t } public static void registerWriter(TaskAttemptID taskAttemptID, String tableName, HiveIcebergWriter writer) { - writers.putIfAbsent(taskAttemptID, Maps.newConcurrentMap()); + Map<String, List<HiveIcebergWriter>> outputWriters = + writers.computeIfAbsent(taskAttemptID, k -> Maps.newConcurrentMap()); - Map<String, List<HiveIcebergWriter>> writersOfTableMap = writers.get(taskAttemptID); - writersOfTableMap.putIfAbsent(tableName, Lists.newArrayList()); - - List<HiveIcebergWriter> writerList = writersOfTableMap.get(tableName); - writerList.add(writer); + outputWriters.computeIfAbsent(tableName, k -> new CopyOnWriteArrayList<>()).add(writer); Review Comment: LGTM -- 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: gitbox-unsubscr...@hive.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: gitbox-unsubscr...@hive.apache.org For additional commands, e-mail: gitbox-h...@hive.apache.org