|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcascading.pipe.Pipe
cascading.pipe.SubAssembly
cascading.pipe.assembly.AggregateBy
cascading.pipe.assembly.MinBy
public class MinBy
Class MinBy is used to find the minimum value in a grouping.
Typically finding the min value of a field in a tuple stream relies on aGroupBy
and a
MinValue
Aggregator
operation.
This SubAssembly also uses the MinBy.MinPartials
AggregateBy.Functor
to track the minimum value before the GroupBy operator to reduce IO over the network.
This strategy is similar to using combiners
, except no sorting or serialization is invoked and results
in a much simpler mechanism.
The threshold
value tells the underlying MinPartials functions how many unique key sums to accumulate
in the LRU cache, before emitting the least recently used entry. This accumulation happens map-side, and thus is
bounded by the size of your map task JVM and the typical size of each group key.
By default, either the value of AggregateByProps.AGGREGATE_BY_CAPACITY
System property
or AggregateByProps.AGGREGATE_BY_DEFAULT_CAPACITY
will be used.
AggregateBy
,
Serialized FormNested Class Summary | |
---|---|
static class |
MinBy.MinPartials
|
Nested classes/interfaces inherited from class cascading.pipe.assembly.AggregateBy |
---|
AggregateBy.Cache, AggregateBy.CompositeFunction, AggregateBy.Flush, AggregateBy.Functor |
Field Summary | |
---|---|
static int |
DEFAULT_THRESHOLD
Deprecated. |
Fields inherited from class cascading.pipe.assembly.AggregateBy |
---|
AGGREGATE_BY_THRESHOLD, USE_DEFAULT_THRESHOLD |
Fields inherited from class cascading.pipe.Pipe |
---|
configDef, parent, stepConfigDef |
Constructor Summary | |
---|---|
MinBy(Fields valueField,
Fields minField)
Constructor MinBy creates a new MinBy instance. |
|
MinBy(Pipe[] pipes,
Fields groupingFields,
Fields valueField,
Fields minField)
Constructor MinBy creates a new MinBy instance. |
|
MinBy(Pipe[] pipes,
Fields groupingFields,
Fields valueField,
Fields minField,
int threshold)
Constructor MinBy creates a new MinBy instance. |
|
MinBy(Pipe pipe,
Fields groupingFields,
Fields valueField,
Fields minField)
Constructor MinBy creates a new MinBy instance. |
|
MinBy(Pipe pipe,
Fields groupingFields,
Fields valueField,
Fields minField,
int threshold)
Constructor MinBy creates a new MinBy instance. |
|
MinBy(String name,
Pipe[] pipes,
Fields groupingFields,
Fields valueField,
Fields minField)
Constructor MinBy creates a new MinBy instance. |
|
MinBy(String name,
Pipe[] pipes,
Fields groupingFields,
Fields valueField,
Fields minField,
int threshold)
Constructor MinBy creates a new MinBy instance. |
|
MinBy(String name,
Pipe pipe,
Fields groupingFields,
Fields valueField,
Fields minField)
Constructor MinBy creates a new MinBy instance. |
|
MinBy(String name,
Pipe pipe,
Fields groupingFields,
Fields valueField,
Fields minField,
int threshold)
Constructor MinBy creates a new MinBy instance. |
Method Summary |
---|
Methods inherited from class cascading.pipe.assembly.AggregateBy |
---|
getAggregators, getArgumentFields, getCapacity, getFieldDeclarations, getFunctors, getGroupBy, getGroupingFields, getThreshold, initialize, initialize, verify |
Methods inherited from class cascading.pipe.SubAssembly |
---|
getName, getPrevious, getTailNames, getTails, setPrevious, setTails, unwind |
Methods inherited from class cascading.pipe.Pipe |
---|
equals, getConfigDef, getHeads, getParent, getStepConfigDef, getTrace, hasConfigDef, hashCode, hasStepConfigDef, id, isEquivalentTo, named, names, outgoingScopeFor, pipes, print, printInternal, resolveIncomingOperationArgumentFields, resolveIncomingOperationPassThroughFields, setParent, toString |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
@Deprecated public static final int DEFAULT_THRESHOLD
Constructor Detail |
---|
@ConstructorProperties(value={"valueField","minField"}) public MinBy(Fields valueField, Fields minField)
AggregateBy
instance.
valueField
- of type FieldsminField
- of type Fields@ConstructorProperties(value={"pipe","groupingFields","valueField","minField"}) public MinBy(Pipe pipe, Fields groupingFields, Fields valueField, Fields minField)
pipe
- of type PipegroupingFields
- of type FieldsvalueField
- of type FieldsminField
- of type Fields@ConstructorProperties(value={"pipe","groupingFields","valueField","minField","threshold"}) public MinBy(Pipe pipe, Fields groupingFields, Fields valueField, Fields minField, int threshold)
pipe
- of type PipegroupingFields
- of type FieldsvalueField
- of type FieldsminField
- of type Fieldsthreshold
- of type int@ConstructorProperties(value={"name","pipe","groupingFields","valueField","minField"}) public MinBy(String name, Pipe pipe, Fields groupingFields, Fields valueField, Fields minField)
name
- of type Stringpipe
- of type PipegroupingFields
- of type FieldsvalueField
- of type FieldsminField
- of type Fields@ConstructorProperties(value={"name","pipe","groupingFields","valueField","minField","threshold"}) public MinBy(String name, Pipe pipe, Fields groupingFields, Fields valueField, Fields minField, int threshold)
name
- of type Stringpipe
- of type PipegroupingFields
- of type FieldsvalueField
- of type FieldsminField
- of type Fieldsthreshold
- of type int@ConstructorProperties(value={"pipes","groupingFields","valueField","minField"}) public MinBy(Pipe[] pipes, Fields groupingFields, Fields valueField, Fields minField)
pipes
- of type Pipe[]groupingFields
- of type FieldsvalueField
- of type FieldsminField
- of type Fields@ConstructorProperties(value={"pipes","groupingFields","valueField","minField","threshold"}) public MinBy(Pipe[] pipes, Fields groupingFields, Fields valueField, Fields minField, int threshold)
pipes
- of type Pipe[]groupingFields
- of type FieldsvalueField
- of type FieldsminField
- of type Fieldsthreshold
- of type int@ConstructorProperties(value={"name","pipes","groupingFields","valueField","minField"}) public MinBy(String name, Pipe[] pipes, Fields groupingFields, Fields valueField, Fields minField)
name
- of type Stringpipes
- of type Pipe[]groupingFields
- of type FieldsvalueField
- of type FieldsminField
- of type Fields@ConstructorProperties(value={"name","pipes","groupingFields","valueField","minField","threshold"}) public MinBy(String name, Pipe[] pipes, Fields groupingFields, Fields valueField, Fields minField, int threshold)
name
- of type Stringpipes
- of type Pipe[]groupingFields
- of type FieldsvalueField
- of type FieldsminField
- of type Fieldsthreshold
- of type int
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |