| clear query|facets|time |
Search criteria: .
Results from 51 to 60 from
60 (0.07s).
|
|
|
Loading phrases to help you refine your search...
|
|
How to run pig batch? - Pig - [mail # user]
|
|
...hi, all I have tens of simple pig scripts to run. While there's no parameter name collision, I merged them into a large pig script which is about 4000 lines. But the merg...
|
|
|
Author: Haitao Yao,
2012-02-20, 06:58
|
|
|
store the result with PigStorage - Pig - [mail # user]
|
|
...hi while using PigStorage , there will have _logs and _SUCCESS , which are useless . How can store the result without _logs and _SUCCESS? thanks....
|
|
|
Author: Haitao Yao,
2012-02-17, 09:00
|
|
|
how can I store the result into local directory under distributed mode? - Pig - [mail # user]
|
|
...Hi, I want to store the result into local directory under distributed hadoop env. How can I achieve this? With PigStorage, the result will be stored into HDFS. Is there any command ...
|
|
|
Author: Haitao Yao,
2012-02-16, 03:15
|
|
|
Re: question about AVG - Pig - [mail # user]
|
|
...I solve this problem by extending the build in AVG function to accept char array bag as input and calculate the result. why the build-in AVG can not accept the char array bag and...
|
|
|
Author: Haitao Yao,
2012-02-15, 08:59
|
|
|
question about AVG - Pig - [mail # user]
|
|
...hi, all here's my pig script: A = load 'input' as (b:bag{t:(x:int, y:int)}); B = foreach A generate AVG(b.x); describe B; it works well. if the b.x is char array, the pro...
|
|
|
Author: Haitao Yao,
2012-02-15, 06:19
|
|
|
Re: Generate Maps - Pig - [mail # user]
|
|
...The code pasted is wrong, sorry for my mistake. here's the updated code: @SuppressWarnings("rawtypes") public class HEDataConverter extends EvalFunc { @Override public Ma...
|
|
|
Author: Haitao Yao,
2012-02-09, 09:01
|
|
|
Re: Generate Maps - Pig - [mail # user]
|
|
...you can write a EvalFuc like this: /** * @author haitao * */ public class HEDataConverter extends EvalFunc { private TupleFactory tupleFactory = TupleFa...
|
|
|
Author: Haitao Yao,
2012-02-09, 07:40
|
|
|
error code 1200 from pig shell - Pig - [mail # user]
|
|
...hi, all here's my pig script: grunt> A = load '/tmp/test_file' using PigStorage(',') as (uid:long, payload:bytearray, ts:long, type:int); grunt> B = foreach A generate COUNT(A);...
|
|
|
Author: Haitao Yao,
2012-02-09, 02:13
|
|
|
Re: How to load customized map data schema - Pig - [mail # user]
|
|
...I've wrote my own loader and here's the error: grunt>data = load '/tmp/titan_mixi_prod.10' using he.HEStorage() as (uid:long, payload:map, ts:long, type:int); ERROR 1200: &nbs...
|
|
|
Author: Haitao Yao,
2012-02-07, 02:50
|
|
|
How to load customized map data schema - Pig - [mail # user]
|
|
...Hi, all out data format for map is Key:Value|Key:Value , how can I load the data into map type? Can pig define the map delimiter like hive? thanks....
|
|
|
Author: Haitao Yao,
2012-02-06, 07:12
|
|
|
|