Deprecated Methods |
org.apache.crunch.CombineFn.aggregator(CombineFn.Aggregator)
Use Aggregators.toCombineFn(Aggregator) |
org.apache.crunch.CombineFn.aggregatorFactory(CombineFn.AggregatorFactory)
Use PGroupedTable.combineValues(Aggregator) which doesn't require a factory. |
org.apache.crunch.FilterFn.and(FilterFn...)
Use FilterFns.and(FilterFn...) |
org.apache.crunch.PipelineResult.StageResult.findCounter(Enum>)
The Counter class changed incompatibly between Hadoop 1 and 2
(from a class to an interface) so user programs should avoid this method and use
PipelineResult.StageResult.getCounterValue(Enum) and/or PipelineResult.StageResult.getCounterDisplayName(Enum) . |
org.apache.crunch.CombineFn.FIRST_N(int)
Use Aggregators.FIRST_N(int) |
org.apache.crunch.PipelineResult.StageResult.getCounters()
The Counter class changed incompatibly between Hadoop 1 and 2
(from a class to an interface) so user programs should avoid this method and use
PipelineResult.StageResult.getCounterNames() . |
org.apache.crunch.CombineFn.LAST_N(int)
Use Aggregators.LAST_N(int) |
org.apache.crunch.CombineFn.MAX_BIGINTS()
Use Aggregators.MAX_BIGINTS() |
org.apache.crunch.CombineFn.MAX_BIGINTS(int)
Use Aggregators.MAX_BIGINTS(int) |
org.apache.crunch.CombineFn.MAX_DOUBLES()
Use Aggregators.MAX_DOUBLES() |
org.apache.crunch.CombineFn.MAX_DOUBLES(int)
Use Aggregators.MAX_DOUBLES(int) |
org.apache.crunch.CombineFn.MAX_FLOATS()
Use Aggregators.MAX_FLOATS() |
org.apache.crunch.CombineFn.MAX_FLOATS(int)
Use Aggregators.MAX_FLOATS(int) |
org.apache.crunch.CombineFn.MAX_INTS()
Use Aggregators.MAX_INTS() |
org.apache.crunch.CombineFn.MAX_INTS(int)
Use Aggregators.MAX_INTS(int) |
org.apache.crunch.CombineFn.MAX_LONGS()
Use Aggregators.MAX_LONGS() |
org.apache.crunch.CombineFn.MAX_LONGS(int)
Use Aggregators.MAX_LONGS(int) |
org.apache.crunch.CombineFn.MIN_BIGINTS()
Use Aggregators.MIN_BIGINTS() |
org.apache.crunch.CombineFn.MIN_BIGINTS(int)
Use Aggregators.MIN_BIGINTS(int) |
org.apache.crunch.CombineFn.MIN_DOUBLES()
Use Aggregators.MIN_DOUBLES() |
org.apache.crunch.CombineFn.MIN_DOUBLES(int)
Use Aggregators.MIN_DOUBLES(int) |
org.apache.crunch.CombineFn.MIN_FLOATS()
Use Aggregators.MIN_FLOATS() |
org.apache.crunch.CombineFn.MIN_FLOATS(int)
Use Aggregators.MIN_FLOATS(int) |
org.apache.crunch.CombineFn.MIN_INTS()
Use Aggregators.MIN_INTS() |
org.apache.crunch.CombineFn.MIN_INTS(int)
Use Aggregators.MIN_INTS(int) |
org.apache.crunch.CombineFn.MIN_LONGS()
Use Aggregators.MIN_LONGS() |
org.apache.crunch.CombineFn.MIN_LONGS(int)
Use Aggregators.MIN_LONGS(int) |
org.apache.crunch.FilterFn.not(FilterFn)
Use FilterFns.not(FilterFn) |
org.apache.crunch.FilterFn.or(FilterFn...)
Use FilterFns.or(FilterFn...) |
org.apache.crunch.CombineFn.pairAggregator(CombineFn.AggregatorFactory, CombineFn.AggregatorFactory)
Use Aggregators.pairAggregator(Aggregator, Aggregator) |
org.apache.crunch.CombineFn.quadAggregator(CombineFn.AggregatorFactory, CombineFn.AggregatorFactory, CombineFn.AggregatorFactory, CombineFn.AggregatorFactory)
Use Aggregators.quadAggregator(Aggregator, Aggregator, Aggregator, Aggregator) |
org.apache.crunch.CombineFn.STRING_CONCAT(String, boolean)
Use Aggregators.STRING_CONCAT(String, boolean) |
org.apache.crunch.CombineFn.STRING_CONCAT(String, boolean, long, long)
Use Aggregators.STRING_CONCAT(String, boolean, long, long) |
org.apache.crunch.CombineFn.SUM_BIGINTS()
Use Aggregators.SUM_BIGINTS() |
org.apache.crunch.CombineFn.SUM_DOUBLES()
Use Aggregators.SUM_DOUBLES() |
org.apache.crunch.CombineFn.SUM_FLOATS()
Use Aggregators.SUM_FLOATS() |
org.apache.crunch.CombineFn.SUM_INTS()
Use Aggregators.SUM_INTS() |
org.apache.crunch.CombineFn.SUM_LONGS()
Use Aggregators.SUM_LONGS() |
org.apache.crunch.CombineFn.tripAggregator(CombineFn.AggregatorFactory, CombineFn.AggregatorFactory, CombineFn.AggregatorFactory)
Use Aggregators.tripAggregator(Aggregator, Aggregator, Aggregator) |
org.apache.crunch.CombineFn.tupleAggregator(CombineFn.AggregatorFactory>...)
Use Aggregators.tupleAggregator(Aggregator...) |