Apache Pig is a platform for analyzing large data sets.Instead of writing a complicated MapReduce Job we can simply write Apache Pig Scripts.
Below is an example code to CONCAT multiple values in Apache Pig.CONCAT is able to only concat 2 values.
Using the below code we can concat multiple values .
CONCAT(CONCAT(), );eg: CONCAT((chararray)$0,CONCAT('Pig',(chararray)$6));
Does it work for chararray only as am not able to do this with bytearray
ReplyDelete