gpt4 book ai didi

apache-pig - 在 Apache Pig 中的排名

转载 作者:行者123 更新时间:2023-12-02 02:17:09 25 4
gpt4 key购买 nike

对 Apache Pig 中的列进行排序后,是否有一种好方法可以对其进行排名?如果排名处理平局,那就更好了。

A = LOAD 'file.txt' as (score:int, name:chararray);
B = foreach A generate score, name order by score;
....

最佳答案

尝试排名操作

A = load 'data' AS (f1:chararray,f2:int,f3:chararray);

DUMP A;
(David,1,N)
(Tete,2,N)
B = rank A;

dump B;
(1,David,1,N)
(2,Tete,2,N)

引用 https://blogs.apache.org/pig/entry/apache_pig_it_goes_to

关于apache-pig - 在 Apache Pig 中的排名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9957987/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com