且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

Hadoop Pig UDF调用问题

更新时间:2023-01-11 16:38:00

我没有看到任何UDF调用的开销问题。



参考: http://datafu.incubator.apache.org/docs/datafu/guide/set-operations.html ,我们有一个使用示例SetDifference方法。



根据API( http://datafu.incubator.apache.org/docs/datafu/1.2.0/datafu/pig/sets/SetDifference.html )SetDifference方法需要袋作为输入,并发出它们之间的差异。

注意请注意,输入的行李必须进行排序。



在示例代码片段共享中,我没有看到以下代码片段的必要性

  F1 = foreach生成B1; 
F2 = foreach A生成B2;


The following code works quite well, but when I already have two existing bags (with their alias, suppose S1 and S2 for representing two existing bags for two sets), wondering how to call UDF setDifference to generate set differences? I think if I manually construct an additional bag, using my already existing input bags (S1 and S2), it will be additional overhead?

register datafu-1.2.0.jar;
define setDifference datafu.pig.sets.SetDifference();

-- ({(3),(4),(1),(2),(7),(5),(6)} \t {(1),(3),(5),(12)})
A = load 'input.txt' AS (B1:bag{T:tuple(val:int)},B2:bag{T:tuple(val:int)});

F1 = foreach A generate B1;
F2 = foreach A generate B2;

differenced = FOREACH A {
  -- input bags must be sorted
  sorted_b1 = ORDER B1 by val;
  sorted_b2 = ORDER B2 by val;
  GENERATE setDifference(sorted_b1,sorted_b2);
}

-- produces: ({(2),(4),(6),(7)})
DUMP differenced;

Update:

Question is, suppose I have two bags already, how to call UDF setDifference to get set differences? Do I need to build another super bag which contains the two separate bags? Thanks.

thanks in advance, Lin

I don't see any overhead issue with the UDF invocation.

Ref : http://datafu.incubator.apache.org/docs/datafu/guide/set-operations.html, we have a example for using SetDifference method.

As per API (http://datafu.incubator.apache.org/docs/datafu/1.2.0/datafu/pig/sets/SetDifference.html) SetDifference method takes bags as input and emits the difference between them.

N.B. Do note that the input bags have to be sorted.

In the example snippet shared, I don't see the need of below code snippet

F1 = foreach A generate B1;
F2 = foreach A generate B2;