Recently, I use pig Latin language ,when it comes to limit clause,for example  

t = load 'input.txt' using PigStorage(',');
t2 = order t1 by $1;
t3 = limit t2 5;
in the process ,the number of reduce is 2,so the amount of data is ten rather 
than five,how can I to let  the amount of data is five.

Reply via email to