Tagged Questions

Apache Pig is a platform for analyzing large data sets that consists of a high-level language for expressing data analysis programs, coupled with infrastructure for evaluating these programs.

learn more… | top users | synonyms

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 ...
11
votes
3answers
4k views

How to use Cassandra's Map Reduce with or w/o Pig?

Can someone explain how MapReduce works with Cassandra .6? I've read through the word count example, but I don't quite follow what's happening on the Cassandra end vs. the "client" end. ...
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 ...
7
votes
18answers
1k views

What language could I use for fast execution of this database summarization task?

So I wrote a Python program to handle a little data processing task. Here's a very brief specification in a made-up language of the computation I want: parse "%s %lf %s" aa bb cc | group_by aa | ...
5
votes
4answers
470 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> ...
5
votes
5answers
306 views

Is there a canonical problem that provably can't be aided with map/reduce?

I'm trying to understand the boundaries of hadoop and map/reduce and it would help to know a non-trivial problem, or class of problems, that we know map/reduce can't assist in. It certainly would be ...
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
697 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
5answers
215 views

How can I group a large dataset

I have simple text file containing two columns, both integers 1 5 1 12 2 5 2 341 2 12 and so on.. I need to group the dataset by second value, such that the output will be. 5 1 2 12 1 2 341 2 ...
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
726 views

Running Pig query over data stored in Hive

I would like to know how to run Pig queries stored in Hive format. I have configured Hive to store compressed data (using this tutorial http://wiki.apache.org/hadoop/Hive/CompressedStorage). ...
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
518 views

Using PIG with Hadoop, how do I regex match parts of text with an unknown number of groups?

I'm using Amazon's elastic map reduce. I have log files that look something like this random text foo="1" more random text foo="2" more text notamatch="5" noise foo="1" blah blah blah ...
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
786 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 ...
3
votes
1answer
407 views

Using Hive with Pig

My hive query has multiple outer joins and takes very long to execute. I was wondering if it would make sense to break it into multiple smaller queries and use pig to work the transformations. Is ...
3
votes
5answers
1k views

Merging multiple files into one within Hadoop

I get multiple small files into my input directory which I want to merge into a single file without using the local file system or writing mapreds. Is there a way I could do it using hadoof fs ...
3
votes
3answers
754 views

Regexp matching in pig

Using apache pig and the text hahahah. my brother just didnt do anything wrong. He cheated on a test? no way! I'm trying to match "my brother just didnt do anything wrong." Ideally, I'd want to ...
2
votes
4answers
64 views

Improve performance of Java Regex

I'm looking for a way to improve this regular expression: ^(?:([^.]+).?){6}_tid This extracts the 6th field of a point.separated.string.of.arbitrary.lengths up to "_tid" So if it looks like this: ...
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
113 views

How do I make Hadoop find imported Python modules when using Python UDFs in Pig?

I am using Pig (0.9.1) with UDFs written in Python. The Python scripts import modules from the standard Python library. I have been able to run the Pig scrips that call the Python UDFs successfully in ...
2
votes
1answer
178 views

PIG : Filter a string on the basis of a word

I have a pig job where in i need to filter the data by finding a word in it, Here is the snippet A = LOAD '/home/user/filename' USING PigStorage(','); B = FOREACH A GENERATE $27,$38; C = FILTER B BY ...
2
votes
2answers
94 views

Process entire files in Hadoop using Python code (preferably in Dumbo)

It seems a very common use case but so hard to do in Hadoop (it is possible with WholeFileRecordReader class). Is it at all possible in Dumbo or Pig? Does anyone knows a way to process whole files as ...
2
votes
2answers
292 views

Apache Pig permissions issue

I'm attempting to get Apache Pig up and running on my Hadoop cluster, and am encountering a permissions problem. Pig itself is launching and connecting to the cluster just fine- from within 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
2answers
500 views

cant run pig with single node hadoop server

I have setup a VM with ubuntu. It runs hadoop as a single node. Later I installed apache pig on it. apache pig runs great with local mode, but it always prom ERROR 2999: Unexpected internal error. ...
2
votes
3answers
201 views

Using Pig and Python

Apologies if this question is poorly worded: I am embarking on a large scale machine learning project and I don't like programming in Java. I love writing programs in Python. I have heard good things ...
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
204 views

How do you deal with empty or missing input files in Apache Pig?

Our workflow uses an AWS elastic map reduce cluster to run series of Pig jobs to manipulate a large amount of data into aggregated reports. Unfortunately, the input data is potentially inconsistent, ...
2
votes
1answer
185 views

command line with cassandra

how can i pass the value as command line arguments in Cassandra PIG Script. Below line for syntax for execute the PIG Script {apache-cassandra-0.4.0-src path}/contrib/pig/bin/pig_cassandra –param ...
2
votes
0answers
209 views

Hadoop Hypercube

Hey, i am starting a hadoop based hypercube with a flexible number of dimensions. Does anybody know any existing approaches for this? I just found PigOLAPSketch, but there is no code to use it. ...
2
votes
2answers
129 views

How to “update” a column using pig latin

Imagine I have the following table available to me: A: { x: int, y: int, z: int, ...99 other columns... } I now want to transform this, such that z is set to NULL where x > y, with the resulting ...
2
votes
3answers
244 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
0answers
666 views

Hadoop MapReduce - Pig/Cassandra - Unable to create input splits

I'm trying to run a MapReduce Job with Pig and Cassandra and I always get the error: ERROR 2118: Unable to create input splits for: cassandra://constellation/logs [SOLVED] There were some environment ...
2
votes
1answer
245 views

generating bigram combinations from grouped data in pig

given my input data in userid,itemid format: raw: {userid: bytearray,itemid: bytearray} dump raw; (A,1) (A,2) (A,4) (A,5) (B,2) (B,3) (B,5) (C,1) (C,5) grpd = GROUP raw BY userid; dump grpd; ...
2
votes
2answers
755 views

Examples of simple stats calculation with hadoop

I want to extend an existing clustering algorithm to cope with very large data sets and have redesigned it in such a way that it is now computable with partitions of data, which opens the door to ...
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
62 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
28 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

Cassandra and Pig integration - Is hadoop optional?

I'm trying to set up a trial cassandra + pig cluster. The cassandra wiki makes it sound like you need hadoop to integrate with pig. but the readme in cassandra-src/contrib/pig makes it sound like ...
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
14 views

sub query in apache pig

Looking for some help on writing sub query in apache pig. For example I have the below two relations - A sam 12 grad maths sony 13 postgrad english B maths {(4.5,sam),(4,david)} english ...

1 2 3 4