问题Is there a way to remove duplicate adjacent elements in pig without writing a UDF? Example tuple: [1,2,3,3,3,4,1,1,2] -> [1,2,3,4,1,2] 来源:https://stackoverflow.com/questions/23618383/remove-duplicate-contiguous-elements-in-pig 标签 Hadoop apache-pig