Interface ICombiner
Interface to implement Combiner for MapReduce.
Namespace:
Assembly: Alachisoft.NCache.Runtime.dll
Syntax
public interface ICombiner : IDisposable
Name | Description |
---|---|
BeginCombine() | Any Initialization for the parameters before actual combining begins. |
Combine(Object) | Combines the task results locally so Reducer is not burdened with excessive processing. |
FinishChunk() | When some specified chunk size is reached, combiners marks the functionality end on that chunk and send it to Reducer for further processing. And resets its internal state for next chunk. |