blob: 4b0a50eb076d25238aeafede26fa14c15615d6c9 [file] [log] [blame]
/*
* Copyright 2019, Verizon Media.
* Licensed under the terms of the Apache License 2.0. See LICENSE file at the project root for terms.
*/
package com.yahoo.sketches.pig.kll;
import java.io.IOException;
import org.apache.pig.EvalFunc;
import org.apache.pig.data.DataByteArray;
import org.apache.pig.data.Tuple;
import com.yahoo.memory.Memory;
import com.yahoo.sketches.kll.KllFloatsSketch;
/**
* This UDF is to get a normalized rank for a given value from a given sketch. A single
* rank for a given value is returned. The normalized rank is a double value
* from 0 to 1 inclusive. For example, the rank of 0.5 corresponds to 50th percentile,
* which is the median value of the distribution (the number separating the higher half
* of the probability distribution from the lower half).
*/
public class GetRank extends EvalFunc<Double> {
@Override
public Double exec(final Tuple input) throws IOException {
if (input.size() != 2) {
throw new IllegalArgumentException("expected two inputs: sketch and value");
}
if (!(input.get(0) instanceof DataByteArray)) {
throw new IllegalArgumentException("expected a DataByteArray as a sketch, got "
+ input.get(0).getClass().getSimpleName());
}
final DataByteArray dba = (DataByteArray) input.get(0);
final KllFloatsSketch sketch = KllFloatsSketch.heapify(Memory.wrap(dba.get()));
if (!(input.get(1) instanceof Float)) {
throw new IllegalArgumentException("expected a float value, got "
+ input.get(1).getClass().getSimpleName());
}
final float value = (float) input.get(1);
return sketch.getRank(value);
}
}