| clear query|facets|time |
Search criteria: .
Results from 1 to 6 from
6 (0.057s).
|
|
|
Loading phrases to help you refine your search...
|
|
Re: how to filter empty string - Pig - [mail # user]
|
|
...try it on the console. load a small set of data, then dump it right away. seems like you also need to handle "", if you are using the default loader On Feb 26, 2013, at 5:16 PM,...
|
|
|
Author: Young Ng,
2013-02-27, 01:21
|
|
|
Re: how to filter empty string - Pig - [mail # user]
|
|
...C = FILTER B BY itemid is null; you cant use == or != for null value On Feb 26, 2013, at 3:41 PM, Dan Yi wrote: ...
|
|
|
Author: Young Ng,
2013-02-27, 01:12
|
|
|
Re: Using UDF to process whole record - Pig - [mail # user]
|
|
...try something like: raw_data = load ....... as record; ...... com.udf.SomeUDF(record) or you can describe raw_data to check the schema. On Jan ...
|
|
|
Author: Young Ng,
2013-01-22, 07:34
|
|
|
Re: pig support for in operator - Pig - [mail # user]
|
|
...I think you can accomplish this task by writing a UDF which takes two arguments, one for the check list, the other for the value to check, and return a boolean to indicate if it'...
|
|
|
Author: Young Ng,
2012-12-14, 02:26
|
|
|
Re: How can I load external files within jython UDF? - Pig - [mail # user]
|
|
...Thank you John, I have checked the SHIP function, but It's a bit confusing to me. all the examples I found were related to streaming-through. And I have figured out a solution by...
|
|
|
Author: Young Ng,
2012-12-09, 23:18
|
|
|
How can I load external files within jython UDF? - Pig - [mail # user]
|
|
...Hi, I am trying to load some external resources within my jython udf functions, e.g: @outputSchema(....) def test(): f = open('test.txt.') text = f.re...
|
|
|
Author: Young Ng,
2012-12-09, 20:52
|
|
|
|