Click or drag to resize

JobBuilderSpillSortCombine Method (IOperationInput, Type, Type)

Sorts the specified input by using a file channel with an output type of SortSpill.

Namespace:  Ookii.Jumbo.Jet.Jobs.Builder
Assembly:  Ookii.Jumbo.Jet (in Ookii.Jumbo.Jet.dll) Version: 2.0.0
Syntax
public SortOperation SpillSortCombine(
	IOperationInput input,
	Type combinerType,
	Type comparerType = null
)

Parameters

input
Type: Ookii.Jumbo.Jet.Jobs.BuilderIOperationInput
The input.
combinerType
Type: SystemType
Type of the combiner task. May be . May be a generic type definition with a single type parameter.
comparerType (Optional)
Type: SystemType
Type of the comparer to use. May be . May be a generic type definition with a single type parameter. Both IComparerT and IRawComparerT are supported, but using IRawComparerT is strongly recommended.

Return Value

Type: SortOperation
A SortOperation instance that can be used to further customize the operation.
See Also