| clear query|facets|time |
Search criteria: .
Results from 11 to 20 from
26 (0.157s).
|
|
|
Loading phrases to help you refine your search...
|
|
dryrun versus grunt - Pig - [mail # user]
|
|
...I have a script something like DEFINE udf .. DEFINE udf2 .. IMPORT 'macros.pig' rel = calltomacro('string',$keyparam); rel2 = calltomacro('string2',$keyparam); .... ...
|
|
|
Author: Lauren Blau,
2012-10-09, 00:53
|
|
|
Re: Class Cast Exception - Pig - [mail # user]
|
|
...or what about casting it when you create it like: (double) SUBSTRING(f1,4,10) as d1:double; On Fri, Sep 28, 2012 at 11:31 AM, Bill Graham wrote: ws t...
|
|
|
Author: Lauren Blau,
2012-09-29, 02:19
|
|
|
Re: wrong sort order (lexical vs numeric) in a nested foreach - Pig - [mail # user]
|
|
...I think I finally found the culprit. There is a load like this: a = load '/foobar' using CustomJsonLoader('baz') as (m:map[]); -- loading an untyped map then there is a fla...
|
|
|
Author: Lauren Blau,
2012-09-04, 20:27
|
|
|
Re: wrong sort order (lexical vs numeric) in a nested foreach - Pig - [mail # user]
|
|
...unfortunately, I can't put together an example without sharing the custom jsonloader and data. But I've worked around this by explicitly storing and reloading the data. But it sounds like yo...
|
|
|
Author: Lauren Blau,
2012-09-04, 18:05
|
|
|
Re: wrong sort order (lexical vs numeric) in a nested foreach - Pig - [mail # user]
|
|
...Could this be a problem with the original read of the data. It is stored in Json format and read with a custom Json loader. If I save the results of the loader to a file using PigStorage and...
|
|
|
Author: Lauren Blau,
2012-08-31, 09:42
|
|
|
Re: wrong sort order (lexical vs numeric) in a nested foreach - Pig - [mail # user]
|
|
...sorry, premature email :-). relation = key1 ,key2,orderkey1,val; //schema is (chararray,int,int,chararray); groupbykey = group relation by (key1,key2); foreach groupbykey {  ...
|
|
|
Author: Lauren Blau,
2012-08-30, 22:10
|
|
|
wrong sort order (lexical vs numeric) in a nested foreach - Pig - [mail # user]
|
|
...I have the following foreach: foo := foreach bar {...
|
|
|
Author: Lauren Blau,
2012-08-30, 21:59
|
|
|
Re: group schema getting wrong fields? - Pig - [mail # user]
|
|
...actually, if I replace the filters that create the original 2 relations with a split, the problem goes away. (i just saw split used in another message and realized I could use it) On F...
|
|
|
Author: Lauren Blau,
2012-08-24, 20:16
|
|
|
Re: group schema getting wrong fields? - Pig - [mail # user]
|
|
...fcels and fnot are both filtered from the same original relation. On Fri, Aug 24, 2012 at 4:11 PM, Lauren Blau wrote: ...
|
|
|
Author: Lauren Blau,
2012-08-24, 20:11
|
|
|
Re: group schema getting wrong fields? - Pig - [mail # user]
|
|
...how much more. Here's the cxels: bigcross = join fcels by (chararray)messageId, fnot by (chararray) messageId; filt1 = filter bigcross by (int)fcels::astart = (int)fnot::aend; cx...
|
|
|
Author: Lauren Blau,
2012-08-24, 20:11
|
|
|
|