Click or drag to resize

FileChannelOutputType Enumeration

Indicates how the FileOutputChannel writes intermediate data to the disk.

Namespace:  Ookii.Jumbo.Jet.Channels
Assembly:  Ookii.Jumbo.Jet (in Ookii.Jumbo.Jet.dll) Version: 2.0.0
Syntax
public enum FileChannelOutputType
Members
  Member nameValueDescription
Spill0 A SpillRecordWriterT is used to write the output. The intermediate data will be a single file containing multiple regions for each partition. The data does not contain record size markers.
SortSpill1 A SortSpillRecordWriterT is used to write the output. The intermediate data will be a single file containing one region for each partition, and the data in each region is sorted. The data contains record size markers so it can be read using the RawRecord class, allowing for raw comparisons on the receiving side on the channel.
See Also