Documentation ¶
Overview ¶
Container provides a Writer which is capable of serializing gogen-avro structs and writing them in the Avro Object Container File (OCF) format
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AvroRecord ¶
AvroRecord is an interface fulfilled by the structs generated by gogen-avro for Avro records.
type Codec ¶
type Codec string
A Codec specifies how the blocks within a container file should be compressed.
type Writer ¶
type Writer struct {
// contains filtered or unexported fields
}
Writer wraps an io.Writer and writes the file and block-level framing required for an OCF file
func NewWriter ¶
func NewWriter(writer io.Writer, codec Codec, recordsPerBlock int64, schema string) (*Writer, error)
Create a new Writer wrapping the provided io.Writer with the given Codec and number of records per block. The Writer will lazily write the container file header when WriteRecord is called the first time. You must call Flush on the Writer before closing the underlying io.Writer, to ensure the final block is written. A schema string must be passed to ensure that a correct header is written even if no records are written. This is required to produce valid empty Avro container files.
func (*Writer) Flush ¶
Write the current block to the file, even if it hasn't been filled. This must be called before the underlying io.Writer is closed.
func (*Writer) WriteRecord ¶
func (avroWriter *Writer) WriteRecord(record AvroRecord) error
Write an AvroRecord to the container file. All gogen-avro generated structs fulfill the AvroRecord interface. Note that all records in a given container file must be of the same Avro type.