All Downloads are FREE. Search and download functionalities are using the official Maven repository.

console.ace-builds-1.2.8.demo.kitchen-sink.docs.pig.pig Maven / Gradle / Ivy

The newest version!
A = load 'mobydick.txt';
B = foreach A generate flatten(TOKENIZE((chararray)$0)) as word;
C = filter B by word matches '\\w+';
D = group C by word;
E = foreach D generate COUNT(C) as count, group as word;
F = order E by count desc;
-- one comment
/* another comment */
dump F;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy