Click or drag to resize

JobBuilderSpillSortCombine(IOperationInput, Type, Type) Method

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: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntax
public SortOperation SpillSortCombine(
	IOperationInput input,
	Type combinerType,
	Type? comparerType = null
)

Parameters

input  IOperationInput
The input.
combinerType  Type
Type of the combiner task. May be . May be a generic type definition with a single type parameter.
comparerType  Type  (Optional)
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

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