Uses of Class
org.apache.flink.formats.parquet.ParquetWriterFactory
-
Packages that use ParquetWriterFactory Package Description org.apache.flink.formats.parquet.avro org.apache.flink.formats.parquet.protobuf org.apache.flink.formats.parquet.row -
-
Uses of ParquetWriterFactory in org.apache.flink.formats.parquet.avro
Methods in org.apache.flink.formats.parquet.avro that return ParquetWriterFactory Modifier and Type Method Description static ParquetWriterFactory<org.apache.avro.generic.GenericRecord>AvroParquetWriters. forGenericRecord(org.apache.avro.Schema schema)Creates a ParquetWriterFactory that accepts and writes Avro generic types.static <T> ParquetWriterFactory<T>AvroParquetWriters. forReflectRecord(Class<T> type)Creates a ParquetWriterFactory for the given type.static <T extends org.apache.avro.specific.SpecificRecordBase>
ParquetWriterFactory<T>AvroParquetWriters. forSpecificRecord(Class<T> type)Creates a ParquetWriterFactory for an Avro specific type. -
Uses of ParquetWriterFactory in org.apache.flink.formats.parquet.protobuf
Methods in org.apache.flink.formats.parquet.protobuf that return ParquetWriterFactory Modifier and Type Method Description static <T extends com.google.protobuf.Message>
ParquetWriterFactory<T>ParquetProtoWriters. forType(Class<T> type)Creates aParquetWriterFactoryfor the given type. -
Uses of ParquetWriterFactory in org.apache.flink.formats.parquet.row
Methods in org.apache.flink.formats.parquet.row that return ParquetWriterFactory Modifier and Type Method Description static ParquetWriterFactory<org.apache.flink.table.data.RowData>ParquetRowDataBuilder. createWriterFactory(org.apache.flink.table.types.logical.RowType rowType, org.apache.hadoop.conf.Configuration conf, boolean utcTimestamp)Create a parquetBulkWriter.Factory.
-