Tagged Questions
Pig Latin is a textual language used in Apache [Pig]'s language layer.
20
votes
6answers
6k views
Difference between Pig and Hive? Why have both?
My background - 4 weeks old in the Hadoop world. Dabbled a bit in Hive, Pig and Hadoop using Cloudera's Hadoop VM. Have read Google's paper on Map-Reduce and GFS.
I understand that-
Pig's language ...
8
votes
6answers
754 views
Reference manual for Apache Pig Latin
Pig is a dataflow programming environment for processing very large files. Pig's language is called Pig Latin.
Does anyone know of a good reference manual for PigLatin? I'm looking for something that ...
5
votes
4answers
472 views
A way to export the results from Pig to a database
Is there a way to export the results from Pig directly to a database like mysql?
5
votes
7answers
3k views
Pig Latin: Load multiple files from a date range (part of the directory structure)
I have the following scenario-
Pig version used 0.70
Sample HDFS directory structure:
/user/training/test/20100810/<data files>
/user/training/test/20100811/<data files>
...
4
votes
3answers
1k views
How do I parse JSON in Pig?
I have a lot of gzip'd log files in s3 that has 3 types of log lines: b,c,i. i and c are both single level json:
{"this":"that","test":"4"}
Type b is deeply nested json. I came across this gist ...
4
votes
1answer
698 views
Bundling jars when submitting map/reduce jobs via Pig?
I'm trying to combine Hadoop, Pig and Cassandra to be able to work on data stored in Cassandra by means of simple Pig queries. Problem is I can't get Pig to create Map/Reduce jobs that actually work ...
4
votes
1answer
1k views
Storing data to SequenceFile from Apache Pig
Apache Pig can load data from Hadoop sequence files using the PiggyBank SequenceFileLoader:
REGISTER /home/hadoop/pig/contrib/piggybank/java/piggybank.jar;
DEFINE SequenceFileLoader ...
3
votes
1answer
73 views
pig - how to reference columns in a FOREACH after a JOIN?
A = load 'a.txt' as (id, a1);
B = load 'b.txt as (id, b1);
C = join A by id, B by id;
D = foreach C generate id,a1,b1;
dump D;
4th line fails on:
Invalid field projection. Projected field [id] does ...
3
votes
1answer
160 views
Loading protobuf format file into pig script using loadfunc pig UDF
I have very little knowledge of pig. I have protobuf format data file. I need to load this file into a pig script. I need to write a LoadFunc UDF to load it. say function is Protobufloader().
my PIG ...
3
votes
2answers
247 views
Hadoop pig latin unable to stream through a python script
I have a simple python script (moo.py) that i am trying to stream though
import sys, os
for line in sys.stdin:
print 1;
and i try to run this pig script
DEFINE CMD `python moo.py` ...
3
votes
2answers
218 views
Can I split a command over multiple lines in Apache Pig Latin?
I have some very long lines as Apache Pig (Latin) expressions. Is there a way of splitting these over multiple lines?
I've tried a trailing backslash to no avail, as soon as I press enter the ...
3
votes
1answer
219 views
Fine tuning PIG for local execution
I'm using PIG latin for log processing because its expressiveness in a problem where the data is not big enough to worry about setting up a whole hadoop cluster. I'm running PIG in local mode but I ...
3
votes
1answer
1k views
Hadoop Pig: Passing Command Line Arguments
Is there a way to do this? eg, pass the name of the file to be processed, etc?
3
votes
2answers
788 views
How can I use the map datatype in Apache Pig?
I'd like to use Apache Pig to build a large key -> value mapping, look things up in the map, and iterate over the keys. However, there does not even seem to be syntax for doing these things; I've ...
2
votes
2answers
69 views
How can we use Apache Pig for unformatted data?
I want to use Apache pig , but till now i have just parsed formatted data like csv or comma separated etc.
But if i have some data separated by ';' & '@&@' etc , how can i work with it?
Like ...
2
votes
1answer
86 views
How to do outer join on two columns in Pig Latin
I do outer joins on single columns in Pig like this
result = JOIN A by id LEFT OUTER, B by id;
How do I join on two columns, something like -
WHERE A.id=B.id AND A.name=B.name
What is the pig ...
2
votes
1answer
79 views
Expand delimited chararray into multiple tuples
One of the columns in my relation contains delimited values (such as csv), and I want to break them out these values so that I have an entry in the relation for every value (combined with the other ...
2
votes
1answer
350 views
How does Pig use Hadoop Globs in a 'load' statement?
As I've noted previously, Pig doesn't cope well with empty (0-byte) files. Unfortunately, there are lots of ways that these files can be created (even within Hadoop utilitities).
I thought that I ...
2
votes
1answer
546 views
How do I store gzipped files using PigStorage in Apache Pig?
Apache Pig v0.7 can read gzipped files with no extra effort on my part, e.g.:
MyData = LOAD '/tmp/data.csv.gz' USING PigStorage(',') AS (timestamp, user, url);
I can process that data and output it ...
2
votes
3answers
245 views
Convert “3” to 3 with PigLatin
I read in a csv-file that contains fields with numbers like that: "3".
Can I convert this fields from "3" to 3 with PigLatin? I need it to use the SUM() - Function.
Thanks for your help!
2
votes
1answer
441 views
Does throwing an exception in an EvalFunc pig UDF skip just that line, or stop completely?
I have a User Defined Function (UDF) written in Java to parse lines in a log file and return information back to pig, so it can do all the processing.
It looks something like this:
public abstract ...
2
votes
3answers
3k views
Splitting input into substrings in PIG (Hadoop)
Assume I have the following input in Pig:
some
And I would like to convert that into:
s
so
som
some
I've not (yet) found a way to iterate over a chararray in pig latin. I have found the TOKENIZE ...
1
vote
1answer
67 views
Binding to Pig STORE or DUMP output in Python
I am looking for the "right" way to write python code that can do work on outputs of Pig jobs.
Here is my situation. I wrote a Pig script to crunch a large amount of data and output a small set of ...
1
vote
0answers
17 views
How to load Hadoop Pig temporary output from job that stopped due to network drop?
I had a Pig job running, but forgot to screen the command, and when the bulk of the job finished (4 hours of mapping), the reduce phase never started, probably because Pig was no longer running. I ...
1
vote
1answer
21 views
Opposite of a GROUP in apache pig latin?
Let's say I have the following input in apache pig:
(123, ( (1, 2), (3, 4) ) )
(666, ( (8, 9), (10, 11), (3, 4) ) )
and I want to convert these 2 rows into the following 7 rows:
(123, (1, 2) )
...
1
vote
1answer
31 views
Apache Pig not parsing a tuple fully
I have a file called data that looks like this: (note there are tabs after the 'personA')
personA (1, 2, 3)
personB (2, 1, 34)
And I have an Apache pig script like this:
A = LOAD 'data' AS (name: ...
1
vote
2answers
41 views
Cannot extract values from a map in apache pig
I have a simple relation, v, in Apache Pig:
dump v;
(151364,[ 'ref'#'R813','highway'#'secondary', 'name:ga'#'Lána Chairdif', 'name'#'Cardiff Lane'],(31015271, 31053762))
(151368,[ 'ref'#'N1', ...
1
vote
1answer
48 views
Hadoop Pig ISO Date to Unix Timestamp
I have a list of items in Pig consisting of ISO 8601 (YYYY-MM-DD) formatted date strings:
(2011-12-01)
(2011-12-01)
(2011-12-02)
Is there any way to transform these items into UNIX timestamps apart ...
1
vote
0answers
44 views
Pig non-aggregated warnings output location?
Pig: 0.8.1-cdh3u2
Hadoop: 0.20.2-cdh3u0
Debugging FIELD_DISCARDED_TYPE_CONVERSION_FAILED warnings, but I can't seem to make individual warnings printed anywhere. Disabling aggregation via -w or ...
1
vote
0answers
55 views
Hadoop Pig correlation usage
I have a list of vectors that I want to run correlation against via an input vector (of numbers). How should I store my list of vectors, and how do I pass in my input vector and pass it to Pig's ...
1
vote
1answer
75 views
using PIG to load a file
I am very new to PIG and I am having what feels like a very basic problem.
I have a line of code that reads:
A = load 'Sites/trial_clustering/shortdocs/*'
AS (word1:chararray, ...
1
vote
1answer
57 views
How can I write a subquery in Pig Latin?
I have two data files:
range.txt
Min Max Name
1 10 a
11 20 b
21 30 c
31 100 d
101 200 e
and data.txt
1
3
40
150
The result I want is:
1 a ( because 1 <= 1 ...
1
vote
1answer
63 views
How do I “re-group” a pig relation?
Assume I have an input file input.dat that looks like this:
apples 10
oranges 30
apples 6
pears 5
Now, when I load, group, and project the data:
sources = LOAD 'input.dat' as { a:chararray, b:int ...
1
vote
0answers
40 views
How to Run an Exclusive SPLIT in PIG?
I'm wondering: since the default behavior of the SPLIT relational operator in PIG is to split relations non-exclusively (i.e. if a row fits conditions for 2 or more relations, it will be put into all ...
1
vote
1answer
55 views
Is it possible to cross-join a row in a relation with a tuple in that row in Pig?
I have a set of data that shows users, collections of fruit they like, and home city:
Alice\tApple:Orange\tSacramento
Bob\tApple\tSan Diego
Charlie\tApple:Pineapple\tSacramento
I would like to ...
1
vote
1answer
27 views
Is it possible to detect and handle string collisions among grouped values when grouping in Hadoop Pig?
Assuming I have lines of data like the following that show user names and their favorite fruits:
Alice\tApple
Bob\tApple
Charlie\tGuava
Alice\tOrange
I'd like to create a pig query that shows the ...
1
vote
1answer
136 views
How Can I Load Every File In a Folder Using PIG?
I have a folder of files created daily that all store the same type of information. I'd like to make a script that loads the newest 10 of them, UNIONs them, and then runs some other code on them. ...
1
vote
1answer
73 views
Transpose data in Apache Pig Latin
I need to "transpose" data that looks like this:
id City
111 Chicago
111 New York
111 LA
222 Paris
222 London
222 Tokyo
to:
111 Chicago New York LA
...
1
vote
1answer
137 views
Conditional sum over data using Apache Pig Latin
I'm trying to do some log processing using Apache Pig Latin, and I was wondering if there was an easier way to do this:
filtered_logs = FOREACH logs GENERATE numDay, reqSize, optimizedSize, origSize, ...
1
vote
1answer
91 views
Loading from mysqldump with PIG
I have a mysqldump of the format:
INSERT INTO `MY_TABLE` VALUES (893024968,'342903068923468','o03gj8ip234qgj9u23q59u','testing123','HTTP','1','4213883b49b74d3eb9bd57b7','blahblash','2011-04-19 ...
1
vote
3answers
230 views
POST Hadoop Pig output to a URL as JSON data?
I have a Pig job which analyzes log files and write summary output to S3. Instead of writing the output to S3, I want to convert it to a JSON payload and POST it to a URL.
Some notes:
This job is ...
1
vote
2answers
479 views
Pig problem with split string(STRSPLIT)
i have following tuple H1, want to strsplit its $0 into tuple, but always got error message:
DUMP H1:
(item32;item31;,1)
m = FOREACH H1 GENERATE STRSPLIT($0, ";", 50);
ERROR 1000: Error during ...
1
vote
1answer
275 views
Unable to build piggybank -> /home/build/ivy/lib does not exist
hey all I followed the steps here: http://wiki.apache.org/pig/PiggyBank
to build the piggybank jar but I keep getting the output below. I also built the pig project from source and reference that in ...
1
vote
2answers
197 views
extract Similar users from logs using hadoop/pig
We need as part of our start-up product to compute "similar user feature". And we've decided to go with pig for it.
I've been learning pig for a few days now and understand how it work.
So to start ...
1
vote
1answer
216 views
How do I trim a header row from files processed by Hadoop's Pig?
I am trying to parse tab separated data files generated by our services using Amazon's Elastic Map Reduce via a Pig program. Things are going well except that all of our data files contain a header ...
1
vote
2answers
164 views
Importing multi-level directories of logs in hadoop/pig
We store our logs in S3, and one of our (Pig) queries would grab three different log types. Each log type is in sets of subdirectories based upon type/date. For instance:
...
1
vote
1answer
324 views
Max/Min for whole sets of records in PIG
I have a set set of records that I am loading from a file and the first thing I need to do is get the max and min of a column.
In SQL I would do this with a subquery like this:
select c.state, ...
1
vote
1answer
594 views
How to read data from data bag within a PIG script
I have a databag which is the following format
{([ChannelName#{ (bigXML,[])} ])}
DataBag consists of only one item which is a Tuple.
Tuple consists of only item that is Map.
Map is of type which ...
1
vote
1answer
679 views
Can I generate nested bags using nested FOREACH statements in Pig Latin?
Let's say I have a data set of restaurant reviews:
User,City,Restaurant,Rating
Jim,New York,Mecurials,3
Jim,New York,Whapme,4.5
Jim,London,Pint Size,2
Lisa,London,Pint Size,4
Lisa,London,Rabbit ...
1
vote
2answers
243 views
Get names of field schema from Pig
I'm working on a JsonStorage for Pig. Everything works fine, but at least I need to get the names of the fields (i.e. crdate, name, positions) from the pig schema.
| A | crdate: bytearray | name: ...