blob: be438b418ced069cdc5392505573c5d6e0a5cb03 [file] [log] [blame]
/*
* Copyright 2015, Yahoo! Inc.
* Licensed under the terms of the Apache License 2.0. See LICENSE file at the project root for terms.
*/
package com.yahoo.sketches.pig.frequencies;
import java.io.IOException;
import org.apache.log4j.Logger;
import org.apache.pig.Accumulator;
import org.apache.pig.EvalFunc;
import org.apache.pig.backend.executionengine.ExecException;
import org.apache.pig.data.DataBag;
import org.apache.pig.data.Tuple;
import com.yahoo.sketches.frequencies.ArrayOfItemsSerDe;
import com.yahoo.sketches.frequencies.FrequentItemsSketch;
/**
* This is a generic implementation to be specialized in concrete UDFs
* @param <T> Type of item
*/
public abstract class MergeFrequentItemsSketch<T> extends EvalFunc<Tuple> implements Accumulator<Tuple> {
private final int sketchSize_;
private final ArrayOfItemsSerDe<T> serDe_;
private FrequentItemsSketch<T> sketch_;
private boolean isFirstCall_ = true;
public MergeFrequentItemsSketch(final int sketchSize, final ArrayOfItemsSerDe<T> serDe) {
super();
sketchSize_ = sketchSize;
serDe_ = serDe;
}
@Override
public Tuple exec(final Tuple inputTuple) throws IOException {
if (isFirstCall_) {
Logger.getLogger(getClass()).info("exec is used"); // this is to see in the log which way was used by Pig
isFirstCall_ = false;
}
if ((inputTuple == null) || (inputTuple.size() == 0)) {
return null;
}
accumulate(inputTuple);
final Tuple outputTuple = getValue();
cleanup();
return outputTuple;
}
@Override
public void accumulate(final Tuple inputTuple) throws IOException {
if (isFirstCall_) {
Logger.getLogger(getClass()).info("accumulator is used"); // this is to see in the log which way was used by Pig
isFirstCall_ = false;
}
if ((inputTuple == null) || (inputTuple.size() != 1)) {
return;
}
final Object obj = inputTuple.get(0);
if (!(obj instanceof DataBag)) {
return;
}
final DataBag bag = (DataBag) inputTuple.get(0);
if (bag.size() == 0) {
return;
}
if (sketch_ == null) {
sketch_ = new FrequentItemsSketch<T>(sketchSize_);
}
for (final Tuple innerTuple: bag) {
final int sz = innerTuple.size();
if ((sz != 1) || (innerTuple.get(0) == null)) {
continue;
}
final FrequentItemsSketch<T> incomingSketch = Util.deserializeSketchFromTuple(innerTuple, serDe_);
sketch_.merge(incomingSketch);
}
}
@Override
public Tuple getValue() {
if (sketch_ == null) { //return an empty sketch
try {
return Util.serializeSketchToTuple(new FrequentItemsSketch<T>(sketchSize_), serDe_);
} catch (ExecException ex) {
throw new RuntimeException("Pig Error: " + ex.getMessage(), ex);
}
}
try {
return Util.serializeSketchToTuple(sketch_, serDe_);
} catch (ExecException ex) {
throw new RuntimeException("Pig Error: " + ex.getMessage(), ex);
}
}
@Override
public void cleanup() {
if (sketch_ != null) sketch_.reset();
}
}