Uses of Class
dev.hardwood.writer.WriterConfig.Builder
Packages that use WriterConfig.Builder
Package
Description
Parquet file writer, with a columnar and a row-oriented API over one core.
-
Uses of WriterConfig.Builder in dev.hardwood.writer
Methods in dev.hardwood.writer that return WriterConfig.BuilderModifier and TypeMethodDescriptionstatic WriterConfig.BuilderWriterConfig.builder()A builder pre-populated with the defaults.WriterConfig.Builder.codec(CompressionCodec codec) Sets the codec each page body is compressed with; must be non-null.WriterConfig.Builder.encoding(ColumnEncoding encoding) Sets the encoding policy for every column without an override of its own; must be non-null.WriterConfig.Builder.encoding(String columnPath, ColumnEncoding encoding) Sets the encoding policy for one leaf column, overriding the file-wide default; both arguments must be non-null.WriterConfig.Builder.pageTargetBytes(int pageTargetBytes) Sets the page target; must be at least oneINT32(4 bytes).WriterConfig.Builder.precisionLossPolicy(PrecisionLossPolicy precisionLossPolicy) WriterConfig.Builder.rowGroupBufferTargetBytes(long rowGroupBufferTargetBytes) Sets the byte threshold at which a row group is cut; must be positive.WriterConfig.Builder.rowGroupTargetRows(long rowGroupTargetRows) Sets the record count at which a row group is cut; must be positive.WriterConfig.Builder.statisticsTruncationLength(int statisticsTruncationLength) Sets the maximumBYTE_ARRAYmin/maxstatistics bound length; must be positive.