Pig Latin is a textual language used in Apache Pig's language layer.

learn more… | top users | synonyms

0
votes
0answers
13 views

Pig Latin - Findthe first of a group

I am trying to rank data within a group in Pig Latin. I don't need the rank, I need an flag that says whether a particular tuple is the first of its kind. I'm trying to use a nested foreach operating ...
0
votes
0answers
4 views

pig tagsource doesnt work with multiple files

I have a pigscript that load multiple input files, when I want to get the input filename with each input record from the file 'tagsource' or 'tagfile' only pickups first filename with the data from ...
0
votes
1answer
18 views

how to find similar tuples after grouping using pig latin?

I have a data which has the following structure - 1 John US 2 Mary CN 3 Smith US 4 John US 5 Mary CN I need to find duplicate names within each country. Result should be something like this {US : ...
1
vote
1answer
24 views

Pig - Unhandled internal error NoClassDefFoundException

I had a specific filtering problem (described here: Pig - How to manipulate and compare dates?), so as we told me, I decided to write my own filtering UDF. Here is the code: import ...
2
votes
1answer
15 views

How to extract Asterisk (*) value in pig

I have a file which contains special characters, I am using extract function to extract each field from the file. I use regex pattern in extract function to extract data. My input file has data like ...
0
votes
1answer
22 views

Group by multiple fields and output tuple

I have a feed in the following format: Hour Key ID Value 1 K1 001 3 1 K1 002 2 2 K1 005 4 1 K2 002 1 2 K2 003 5 2 K2 004 6 and I want to ...
0
votes
1answer
25 views

Pig - How to manipulate and compare dates?

I have a file which contains entries like this: 1,1,07 2012,07 2013,11,blablabla The two first fields are ids. The third is the begin date(month year) and the fourth is the end date. The fifth ...
0
votes
2answers
35 views

How do I log Pig Latin grunt shell commands that I write?

I am new to Pig and Pig Latin. I'd like to log the commands that I write in the interactive grunt shell, so that I can piece together working Pig Latin scripts. Is this possible? Is there a file that ...
0
votes
2answers
101 views

loading a subset of a file using Pig

I am playing with hortonworks sandbox to learn hadoop etc. I am trying to load a file on a single machine "cluster": A = LOAD 'googlebooks-eng-all-3gram-20090715-0.csv' using PigStorage('\t') AS ...
1
vote
1answer
21 views

PIG - Defining the delimiter used for a bag after a GROUP function

In Pig, I'm loading and grouping two files. I end up with a something like this: A = LOAD 'File1' Using PigStorage('\t'); B = LOAD 'File2' Using PigStorage('\t'); C = COGROUP A BY $0, B BY $0; STORE ...
0
votes
0answers
23 views

Group by X OR Y in Pig

I am processing a big amount of data with Pig and I need to group records by one field OR another. Be careful that it is not classic GROUP BY X AND Y, I mean, you have to group two records if they ...
0
votes
0answers
21 views

Pig right join relations with multiple relations on different fields

I have 3 relations A,B,C A(Ka1,Ka2,Ka3) B(Kb1,Kb2) C(Kc1,Kc2) I want to join like this joined_data = JOIN B by Kb1 RIGHT, A by Ka2; joined_data = JOIN C by Kb2 RIGHT, joined_data by Ka3; So ...
0
votes
1answer
40 views

algebraic error when running “aggregate” function on dataset

I'm learning hadoop/pig/hive through running through tutorials on hortonworks.com I have indeed tried to find a link to the tutorial, but unfortunately it only ships with the ISA image that they ...
0
votes
0answers
16 views

Piglatin jodatime error with StanfordCoreNLP

I am trying to create a Pig UDF that extracts the locations mentioned in a tweet using the Stanford CoreNLP package interfaced through the sista Scala API. It works fine when run locally with 'sbt ...
0
votes
0answers
23 views

Pig Harness Test on the top of Junit

Hi i am very new to Pig hadoop.So please help me out to how to harness test the PIG scripts in junit enviroment.I searched a lot but only was able to find some code in perl. ...
0
votes
1answer
65 views

Pig: Force one mapper per input line/row

I have a Pig Streaming job where the number of mappers should equal the number of rows/lines in the input file. I know that setting set mapred.min.split.size 16 set mapred.max.split.size 16 set ...
-1
votes
1answer
40 views

Error(s) during simple pig task

I have been trying pig for a few days and I am not getting the hang of it. I am trying to do simple practice tasks but to no avail. The goal is to create a record which shows the max runs for each ID ...
0
votes
1answer
25 views

Nested Groups in apache pig

I'm new at apache pig and wish to implement bottom-up-cubing by writing a pig script. However, this would require me to group in a hierarchial fashion. For example, if my data is in the form of ...
0
votes
1answer
18 views

Implicit Cast Warning

When I run my pig script, I have a lot of Encountered Warning IMPLICIT_CAST_TO_LONG ... time(s). Encountered Warning IMPLICIT_CAST_TO_FLOAT ... time(s). Encountered Warning IMPLICIT_CAST_TO_DOUBLE ...
0
votes
1answer
21 views

deleting same letter from input when writing to output java

I'd like some help with a problem I have in the following code. package piglatin; public class asdg { public static void main(String[] args) { String word = "fifteen"; int vowelSpot = ...
0
votes
1answer
39 views

Replace a value of a field in a tuple in Pig

I have two data sets to join. Here is what they look like: Dataset 1 ---#----#----#------------#----#-----#----- F1 | F2 | F3 | UID | F4 | ... | F32 ...
0
votes
1answer
40 views

Passing value to parameterized constructor in UDF from pig script

I have a parameterized constructor in the UDFS. public WordMapList(String filePath) { filePt=filePath; } with the main method as : package customudfs; public class WordMapList ...
0
votes
1answer
51 views

Java & Pig - Is it possible to get the pig script's output into a Java variable?

I wrote a script in Pig Latin and I executed it through Java. Here is my code: public static void main(String args[]){ PigServer pigServer; try { Properties props = new ...
0
votes
1answer
52 views

Formatting Date in Generate Statement

In Pig, I have a statement which bascially appends the date to my generated values. Data = FOREACH Input GENERATE (CurrentTime()),FLATTEN(group), COUNT(guid)oas Cnt; THe out put gives me the date ...
3
votes
1answer
120 views

Handling tar headers in Pig

If I'm running Pig on a bunch of *.tar.gz files, PigStorage will handle unzipping fine, but the header lines between the files in tar aren't handled. Is there a simple way to handle this? Or do I ...
0
votes
2answers
36 views

Apache Pig - Is it possible to serialize a variable?

Let's take the wordCount example: input_lines = LOAD '/tmp/my-copy-of-all-pages-on-internet' AS (line:chararray); -- Extract words from each line and put them into a pig bag -- datatype, then ...
0
votes
0answers
45 views

Pig's DBStorage is not working with other Storage function

DBStorage is not working with other storage in pig script. means DBStorage is not working with multiple storage statement. What I was trying for: 1) I was trying to Store one output using DBStorage ...
1
vote
1answer
67 views

Pig Filter out NOT Matches

I have a bunch of strings that have various prefixes including "unknown:" I'd really like to filter out all the strings starting with "unknown:" in my Pig script, but it doesn't appear to work. ...
0
votes
1answer
60 views

Error while trying to launch Pig script with JAVA

I'm trying to launch a pig script from JAVA. Here is my code: import java.io.IOException; import java.util.Properties; import org.apache.pig.ExecType; import org.apache.pig.PigServer; import ...
1
vote
0answers
24 views

Apache Pig join error 2087 “Found index:0 in multiple LocalRearrange operators”

So I've got two relations: pageview counts by a GUID and URL pv_counts events by the same GUID and url ev_counts I'm trying to join them with joined_counts = JOIN ev_counts BY ev_site_guid, ...
0
votes
1answer
40 views

Pig Split Line on Regex

I'm attempting to write a PIG script that reads in a large single line file and splits it into a large multiple line file. I'm attempting to split the text when I find the string "alert" or "none"; ...
0
votes
2answers
54 views

Apache Pig - How to get number of matching elements between multiple bags?

I'm a new user of Apache Pig and I have a problem to solve. I'm trying to make a little search engine with apache pig. The idea is simple: I have a file, which is the concatenation of multiple ...
0
votes
1answer
37 views

PigServer.java in local mode tries to use chmod command

Good day! I try to use PigServer.java. Here is my code: PigServer pigServer = new PigServer(ExecType.LOCAL); final Map<String, String> predefinedParams = getPredefinedParams(); ...
1
vote
1answer
58 views

Pig Batch mode: how to set logging level to hide INFO log messages?

Using Apache Pig version 0.10.1.21 (rexported). When I execute a pig script, there are a lots of INFO logging lines which looks like that: 2013-05-18 14:30:12,810 [Thread-28] INFO ...
1
vote
1answer
26 views

Filter by AVG using Apache Pig

I have a file "error_data.txt" as below: 10474 3.0 2013-05-01 7 10474 94.0 2013-05-01 3 10538 72.0 2013-05-01 15 11001 95.0 2013-05-01 248 13113 78.0 2013-05-01 18 13116 ...
0
votes
1answer
68 views

Where can I learn to use Pig without having to set up Hadoop

My goal is to learn Pig in order to enhance my resume for machine learning/statistical analysis jobs. I am not really interested in all of the nitty gritty Hadoop details at the moment (although I ...
0
votes
0answers
12 views

Xtext error suppression with (slightly) broken grammer declaration

I'm using a plug in for 'Pig Latin' from: http://romainr.github.io/PigEditor/ based on XText that is producing an erroneous error --- is there anyway to (permanently) suppress such errors that appear ...
0
votes
2answers
174 views

Pig local mode, group or join = java.lang.OutOfMemoryError: Java heap space

Using Apache Pig version 0.10.1.21 (rexported), CentOS release 6.3 (Final), jdk1.6.0_31 (The Hortonworks Sandbox v1.2 on Virtualbox, with 3.5 GB RAM) $ cat data.txt 11,11,22 33,34,35 47,0,21 33,6,51 ...
0
votes
0answers
55 views

Converting single tuple with multiple bags into multiple tuples in Pig

I have a line like the following: evnt=redeem&lid=1030023&upt=1679&pid=000000000001076056,000000000001072654,000000000001067925&ppt=996,246,366&qty=1,1,1 I am interested in ...
1
vote
2answers
48 views

Pig Load How to mix scalar and map datatypes?

Using Apache Pig version 0.10.1.21 (rexported) Content of data sample file: AtomicNumber,ElementName,Symbol,AtomicMass,PropertyMap 46,Palladium,Pd,106.42,[P#46,N#60,Struc#Cubic] ...
2
votes
2answers
61 views

How do I suppress the bloat of useless information when using the DUMP command while using grunt via 'pig -x local'?

I'm working with PigLatin, using grunt, and every time I 'dump' stuffs, my console gets clobbered with blah blah, blah non-info, is there a way to surpress all that? grunt> A = LOAD 'testingData' ...
2
votes
2answers
64 views

In Pig, Flattening a bag into a single line

In my Pig script (0.9.2), my final output looks like this: final: {email: chararray,{(name: chararray,percent: double)}} where for every email address I have up to 3 names and scores. So, the ...
0
votes
2answers
64 views

Error 1045 on sum function in pig latin with an int

The following pig latin script: data = load 'access_log_Jul95' using PigStorage(' ') as (ip:chararray, dash1:chararray, dash2:chararray, date:chararray, date1:chararray, getRequset:chararray, ...
0
votes
0answers
76 views

Loading Hbase Binary data into Pig

If I need to load a Hbase table with Hex values into Pig, does that require a specific UDF? IS there any inbuilt function in Pig? My current statement: data = load 'hbase://data' using ...
1
vote
1answer
30 views

Pig Unique Counts on Multiple Subsets of a Large Input

I have a huge input on an HDFS and I would like to use Pig to calculate several unique metrics. To help explain the problem more easily, I assume the input file has the following schema: ...
-2
votes
1answer
53 views

TestFirst Teaching Pig Latin 'rspec_config failed' [closed]

I'm in the course of completing the Pig Latin exercise from TestFirst Teaching, but after I made the Ruby file and attempted to run rake, I got the following error: ...
1
vote
1answer
57 views

Implementation of Apache Pig and Hadoop

I have learnt that Pig is built on top of Apache Hadoop. But I am not able to find the extra features that a bare hadoop implementation lacks that Pig has. What caused the need for a language like Pig ...
0
votes
1answer
47 views

Piglatin to find if a column contains the contents of another column

I have a seemingly very simple problem but I just can't seem to figure it out. I have data that looks like this : A (B, C, A) B (X, Y, Z) C (F, C, D) I am using Pig latin to check if the text in ...
1
vote
1answer
141 views

Pig Join in Cloudera VM

I try to perform a simple join in apache pig. The datasets that I use are from http://www.dtic.upf.edu/~ocelma/MusicRecommendationDataset/lastfm-1K.html This is what I do in the pig shell: profiles ...
2
votes
2answers
84 views

Pig map reduce job to place values within proper range

I have a list of values as one data source and a second dataset which contains ranges tied to a value. Dataset 1: 3 4 6 20 25 38 Dataset 2: 1|3|A 4|10|B 11|20|C 21|30|D 31|31|E 32|38|F 39|40|G ...

1 2 3 4 5 8