| clear query|facets|time |
Search criteria: .
Results from 111 to 120 from
142 (0.253s).
|
|
|
Loading phrases to help you refine your search...
|
|
RE: date treatment & date level aggregations - Pig - [mail # user]
|
|
...Hi Avram, A few things to note: 1. The builtin functions in Pig are Java UDFs, making them case sensitive. You should use TOKENIZE instead of tokenize 2. It looks like the builti...
|
|
|
Author: Santhosh Srinivasan,
2009-02-19, 19:00
|
|
|
RE: Error while loading UTF-8 strings into bags - Pig - [mail # user]
|
|
...You are probably right, TextDataParser does not handle UTF-8. I have filed a JIRA for this issue - PIG-681 (https://issues.apache.org/jira/browse/PIG-681) Santhosh From: [EMAIL P...
|
|
|
Author: Santhosh Srinivasan,
2009-02-17, 18:33
|
|
|
RE: Error while loading UTF-8 strings into bags - Pig - [mail # user]
|
|
...This could be a bug in TextDataParser due to the presence of empty strings in the data. Santhosh From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of [EMAIL PROTECTED...
|
|
|
Author: Santhosh Srinivasan,
2009-02-17, 05:16
|
|
|
RE: Determining the group-by column - Pig - [mail # dev]
|
|
...Cogroup has inner plans that compute the group by attributes. Instead of looking at the predecessor(s), you should navigate the inner plan of cogroup. Check out the code in src/org/apache/pi...
|
|
|
Author: Santhosh Srinivasan,
2009-02-17, 05:03
|
|
|
RE: Filtering for a numeric value - Pig - [mail # user]
|
|
...You should probably build the pig.jar from trunk for using types. The released version of Pig does not support types. Look out for a release soon with types. Santhosh From: Grego...
|
|
|
Author: Santhosh Srinivasan,
2009-02-08, 00:30
|
|
|
RE: ClassCastException - Pig - [mail # user]
|
|
...If you want to count the number of records per group then replace COUNT(*) with COUNT(B). Santhosh From: Shirley Cohen [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 03...
|
|
|
Author: Santhosh Srinivasan,
2009-02-03, 23:36
|
|
|
RE: Data types for Map key value pairs - Pig - [mail # dev]
|
|
...You can specify map types as colname: map[] in your load statement. E.g.: a = load 'mydata' as (x: int, m: map[]); Note that Pig does not enforce types for the keys and values in...
|
|
|
Author: Santhosh Srinivasan,
2009-01-15, 18:32
|
|
|
RE: Bag items are casted to unexpected types? - Pig - [mail # user]
|
|
...This is a bug. I have created a JIRA - Pig-616 (https://issues.apache.org/jira/browse/PIG-616) to track this issue. Summary: The data parser identifies the stream as a bag of integer/l...
|
|
|
Author: Santhosh Srinivasan,
2009-01-12, 19:42
|
|
|
RE: Got NumberFormatException while reading a bag of strings - Pig - [mail # user]
|
|
...The text data parser treats a sequence of numerals as an integer. It looks like the number you have is too large to fit into an integer. Append an L to the number to make it a long integer a...
|
|
|
Author: Santhosh Srinivasan,
2008-12-16, 19:14
|
|
|
RE: What is a relation? - Pig - [mail # dev]
|
|
...In the existing implementation, Pig has the following dilemma. 1. A subset of the relational operators are allowed inside a foreach E.g: filter, distinct, order by 2. Non relatio...
|
|
|
Author: Santhosh Srinivasan,
2008-12-11, 20:15
|
|
|
|