This class enables you to interact with Parquet files.
Factory
The ParquetFileWriter$create() factory method instantiates the object and
takes the following arguments:
- schemaA Schema
- sinkAn arrow::io::OutputStream
- propertiesAn instance of ParquetWriterProperties
- arrow_propertiesAn instance of- ParquetArrowWriterProperties
Methods
- WriteTableWrite a Table to- sink
- WriteBatchWrite a RecordBatch to- sink
- CloseClose the writer. Note: does not close the- sink. arrow::io::OutputStream has its own- close()method.