amogh-jahagirdar commented on code in PR #6839:
URL: https://github.com/apache/iceberg/pull/6839#discussion_r1108932411
##########
core/src/main/java/org/apache/iceberg/avro/Avro.java:
##########
@@ -153,6 +155,18 @@ public WriteBuilder metricsConfig(MetricsConfig
newMetricsConfig) {
return this;
}
+ /**
+ * Overwrite only if needed on File systems where a new empty file gets
pre-created like {@link
+ * HadoopFileIO}
+ *
+ * @return {@link WriteBuilder}
+ */
+ public WriteBuilder overwriteIfNeeded() {
+ boolean needsOverwrite =
+ file instanceof HadoopFileIO || file instanceof
Files.LocalOutputFile;
Review Comment:
I'm probably missing something here but file is a `OutputFile` can it ever
be an instanceof `HadoopFileIO`? That seems possible if a class implements both
interfaces which doesn't make sense to me. Also if it's based on some notion of
OutputFile or FileIO have we considered a mixin interface instead of adding to
the API?
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]