Re: how can I distinct one field of a relation

2012-06-27 Thread Ruslan Al-Fakikh
Hey Haitao, I didn't get exactly what your requirement was and your example seems to be incomplete. Here it is: A is: 1,2,3 1,2,3 4,5,6 What I want is : 1,2,3 4,5,6 What you did here is DISTINCT'ed by all fields, but what if the input is 1,2,3 1,3,4 4,5,6 and you are trying to DISTINCT by the f

Re: how can I distinct one field of a relation

2012-06-27 Thread Subir S
If those values/fields that differ are not a problem to exclude, then may be you can use a FILTER to exclude Also as @Jonathan said, you may project fields you want and then distinct. He just gave a example of generating a1, you may take more fields in foreach..generate clause On Wed, Jun 27,

Re: how can I distinct one field of a relation

2012-06-27 Thread Haitao Yao
will, not exactly. I want a subset of A with all fields, and field a1 is distinct. for example: A is: 1,2,3 1,2,3 4,5,6 What I want is : 1,2,3 4,5,6 How can I do this with the keyword distinct? Haitao Yao yao.e...@gmail.com weibo: @haitao_yao Skype: haitao.yao.final 在 2012-6-27,下午2:06, Jon

Re: how can I distinct one field of a relation

2012-06-26 Thread Jonathan Coveney
If you JUST want a1, then you would do A = LOAD 'data' AS (a1:int,a2:int,a3:int); B = DISTINCT (foreach A generate a1); basically you project the column you want, and distinct on it. 2012/6/26 Haitao Yao > I want a subset of A with a1 value distinct. > the current distinct will compare all the

Re: how can I distinct one field of a relation

2012-06-26 Thread Haitao Yao
I want a subset of A with a1 value distinct. the current distinct will compare all the fields in A, which is not what I want. Haitao Yao yao.e...@gmail.com weibo: @haitao_yao Skype: haitao.yao.final 在 2012-6-27,上午11:18, Jonathan Coveney 写道: > What is your desired output? Sounds like you want

Re: how can I distinct one field of a relation

2012-06-26 Thread Jonathan Coveney
What is your desired output? Sounds like you want a group. 2012/6/26 Haitao Yao > hi, >How can I distinct only one field of a relation? >here's the demo: > >A = LOAD 'data' AS (a1:int,a2:int,a3:int); >B = distinct A by a1; > > >how can I do this? > > > > H

how can I distinct one field of a relation

2012-06-26 Thread Haitao Yao
hi, How can I distinct only one field of a relation? here's the demo: A = LOAD 'data' AS (a1:int,a2:int,a3:int); B = distinct A by a1; how can I do this? Haitao Yao yao.e...@gmail.com weibo: @haitao_yao Skype: haitao.yao.final