| clear query|facets|time |
Search criteria: .
Results from 31 to 40 from
731 (0.174s).
|
|
|
Loading phrases to help you refine your search...
|
|
Re: String Representation of DataBag and its Schema - Pig - [mail # user]
|
|
...how was string_databag generated? 2013/3/19 Dan DeCapria, CivicScience ...
|
|
|
Author: Jonathan Coveney,
2013-03-19, 15:27
|
|
|
Re: Can we commit PIG-3015 (Rewrite of AvroStorage) to trunk? - Pig - [mail # dev]
|
|
...I'll take a look. I think it should be part of the core of Pig. I will comment in the JIRA. Thanks, Cheolsoo 2013/3/19 Cheolsoo Park ...
|
|
|
Author: Jonathan Coveney,
2013-03-19, 10:35
|
|
|
Re: String Representation of DataBag and its Schema - Pig - [mail # user]
|
|
...Why not just use PigStorage? This is essentially what it does. It saves a bag as text, and then loads it again. I suppose the question becomes: why do you need to do this? 2013/...
|
|
|
Author: Jonathan Coveney,
2013-03-18, 22:31
|
|
|
Re: UDF that takes bag as input and returns another bag - Pig - [mail # user]
|
|
...Ah, I suppose I was just proving it oculd be done. To make a new one, you'd do: public class MyUdf extends EvalFunc { private static final BagFactory mBagFactory = BagFact...
|
|
|
Author: Jonathan Coveney,
2013-03-18, 15:01
|
|
|
Re: UDF that takes bag as input and returns another bag - Pig - [mail # user]
|
|
...Absolutely. public class MyUdf extends EvalFunc { public DataBag exec(Tuple input) throws IOException { return (DataBag)input.get(0); } } A dummy exa...
|
|
|
Author: Jonathan Coveney,
2013-03-18, 10:19
|
|
|
[PIG-2630] Issue with setting "b = a;" - Pig - [issue]
|
|
...The following gives an error:a = load 'thing' as (x:int);b = a; c = join a by x, b by x;Error:2012-04-03 14:02:47,434 [main] ERROR org.apache.pig.tools.grunt.Grunt - ERROR 1200: Pig script f...
|
|
|
http://issues.apache.org/jira/browse/PIG-2630
Author: Jonathan Coveney,
2013-03-15, 18:47
|
|
|
Re: Loader partitioning on field - Pig - [mail # user]
|
|
...If it is being passed in anyway, you could make it a $PARAM that is set by the launch script, and then it would be a constant in the script. 2013/3/14 Jeff Yuan ...
|
|
|
Author: Jonathan Coveney,
2013-03-15, 10:17
|
|
|
Re: How to control a number of reducers in Apache Pig - Pig - [mail # user]
|
|
...The script you posted wouldn't have any reducers, so it wouldn't matter. It's a map only job. 2013/3/15 ...
|
|
|
Author: Jonathan Coveney,
2013-03-15, 10:15
|
|
|
Re: Loader partitioning on field - Pig - [mail # user]
|
|
...No, it is not. But if it knew that, how would that filter be meaningful? What do you have in mind? 2013/3/14 Jeff Yuan ...
|
|
|
Author: Jonathan Coveney,
2013-03-14, 22:15
|
|
|
Re: EvalFunc finish() closing connections prematurely - Pig - [mail # user]
|
|
...Can you perhaps share more of your implementation? I can imagine a couple of things which would cause errors like this. Are you making sure that each instance of EvalFunc is dealing with a d...
|
|
|
Author: Jonathan Coveney,
2013-03-14, 21:24
|
|
|
|