| RoundRobinMultiInputRecordReaderT Constructor |
Namespace:
Ookii.Jumbo.IO
Assembly:
Ookii.Jumbo (in Ookii.Jumbo.dll) Version: 2.0.0
Syntax public RoundRobinMultiInputRecordReader(
IEnumerable<int> partitions,
int totalInputCount,
bool allowRecordReuse,
int bufferSize,
CompressionType compressionType
)
Public Sub New (
partitions As IEnumerable(Of Integer),
totalInputCount As Integer,
allowRecordReuse As Boolean,
bufferSize As Integer,
compressionType As CompressionType
)
public:
RoundRobinMultiInputRecordReader(
IEnumerable<int>^ partitions,
int totalInputCount,
bool allowRecordReuse,
int bufferSize,
CompressionType compressionType
)
new :
partitions : IEnumerable<int> *
totalInputCount : int *
allowRecordReuse : bool *
bufferSize : int *
compressionType : CompressionType -> RoundRobinMultiInputRecordReader
Parameters
- partitions
- Type: System.Collections.GenericIEnumerableInt32
The partitions that this multi input record reader will read. - totalInputCount
- Type: SystemInt32
The total number of input readers that this record reader will have. - allowRecordReuse
- Type: SystemBoolean
if the record reader may reuse record instances; otherwise, . - bufferSize
- Type: SystemInt32
The buffer size to use to read input files. - compressionType
- Type: Ookii.JumboCompressionType
The compression type to us to read input files.
See Also