Re: FileWriterFactory Vs FileAppenderFactory

2022-06-29 Thread Ryan Blue
Taher, I typically use the helpers in the `Parquet` class to create Parquet files. That's probably the easiest way to create individual files. `FileWriterFactory` and `FileAppenderFactory` are ways to provide object model support to common write patterns. Flink and Spark both use different in-mem

FileWriterFactory Vs FileAppenderFactory

2022-06-26 Thread Taher Koitawala
Hi All, I am trying to create a Java service with an Iceberg writer that writes data over to FS after reading from various sources. I came across these two interfaces and cannot tell when to implement which one. Both the FileWriterFactory and FileAppenderFactory have an Equality Delete W