提供一种通过udf在配置单元中使用计数器的方法

2exbekwf  于 2021-05-29  发布在  Hadoop
关注(0)|答案(1)|浏览(304)

有没有办法在配置单元中为udf/udaf/udtf添加用户定义的计数器?

gojuced7

gojuced71#

是的,有,https://issues-test.apache.org/jira/browse/hive-3628
例子:

Usage:

public class UDAFEvaluator extends GenericUDAFEvaluator{

@Override
public void iterate(final AggregationBuffer agg, final Object[] parameters) throws HiveException
{        MapredContext.get().getReporter().getCounter(...).increment(1);    }
}

相关问题