Mrjob is a Python 2.5+ package that assists the creation and running of Hadoop Streaming jobs

learn more… | top users | synonyms

0
votes
1answer
16 views

How can I use s3 object names as inputs to an MRJob mapper, but not the s3 objects themselves?

I'm missing something obvious about Yelp's mrjob job library. Setting up an MRJob class is almost trivially easy. Running it over a file or stdin also so. But how can I change the input to the job ...
0
votes
1answer
36 views

How do I write the output of an EMR streaming job to HDFS?

I see examples of people writing EMR output to HDFS, but I haven't been able to find examples of how it's done. On top of that, this documentation seems to say that the --output parameter for an EMR ...
0
votes
0answers
26 views

mrjob: suppress key (or value) in reducer output

By default, mrJob stores the key and the value from output in key[tab]output format. This happens even if the key (or the value) is empty, null, or otherwise not interesting. Suppose my key, value ...
0
votes
1answer
15 views

How do I cancel mrJob once it's running? ^C doesn't work

Is there a simple way to make mrJob scripts interruptable? Pretty simple question, but it makes a big difference for debugging. I'm mainly interested in canceling python-only test jobs, because this ...
0
votes
1answer
22 views

MRJob - Python - How to return null when division is 0/value

How can I modify this code so when senti_avg is not divisible (0/value), reducer() outputs NULL or NONE instead of crashing? def reducer(self, bs_id, value): avg_data = list(value) senti_sum ...
0
votes
2answers
35 views

MRJOB open JSON file - Python

I am trying to load a json file as part of the mapper function but it returns "No such file in directory" although the file is existent. I am already opening a file and parsing through its lines. But ...
0
votes
1answer
32 views

Access distributed cache from MrJob

I am writing hadoop app using MrJob. I need to use distributed cache to access to some files. I know that there is an option -files in hadoop streaming but don't know how to access it in the ...
0
votes
1answer
97 views

How to optimize this MapReduce function, Python, mrjob

I'm very new to Map/Reduce principles and python mrjob framework, I wrote this sample code, and it works fine, but I would like to know what can I change in it to make it "perfect" / more efficient. ...
0
votes
0answers
25 views

Is there a way to specify the title of a job from mrjob in the Hadoop Administration web interface?

I have several different jobs started from the Python library mrjob, including jobs with multiple steps. How can I replace streamjob with a custom name? For example, wordcount_step_1, ...
1
vote
1answer
89 views

How to run a final 'print' statement once in a multi-step map-reduce program?

I am basically trying to implement a recommender system by scaling it up on Hadoop. In the first step, I am trying to calculate the similarity between every pair of items in the input file.If I store ...
1
vote
1answer
65 views

MRjob: Can a reducer perform 2 operations?

I am trying to yield the probability each key,value pair generated from mapper has. So, lets say mapper yields: a, (r, 5) a, (e, 6) a, (w, 7) I need to add 5+6+7 = 18 and then find probabilities ...
0
votes
0answers
45 views

jsondecoder error on mac

Am new to MRJob, and i have the sample code below, when i execute it JsonDecoder error (included below) from mrjob.job import MRJob from mrjob.protocol import JSONValueProtocol import re WORD_RE = ...
1
vote
2answers
124 views

How to calculate correlation between two variables in python using MapReduce

I am trying to use the Million Song Dataset available on AWS to find the correlation between the loudness of a track and its popularity. I followed a basic tutorial ...
1
vote
1answer
64 views

How to change environment variables in mrjob for AWS accesskey and secretaccesskey

How do I change the $AWS_ACCESS_KEY_ID and $AWS_SECRET_ACCESS_KEY in mrjob to enter my own credentials for AWS? I am using the Terminal on Mac OS X. https://github.com/Yelp/mrjob Thanks!
1
vote
1answer
62 views

MapReduce: Mrjob Saving Results Persistently

I am trying to implement a mapreduce job with three steps and after each step I need the data from all of the steps so far. Does anyone have an example/idea about how I can save results of mapper or ...
2
votes
1answer
96 views

MRJob :- Display intermediate values in map reduce

How can I display intermediate values (i.e print a variable or a list ) on the terminal while running the mapreduce program using python MRJob library?
0
votes
0answers
98 views

random java.io.FileNotFoundException jobcache error on EMR with MrJob

I am using MrJob and trying to run a Hadoop job on Elastic Map Reduce which keeps crashing at random. The data looks like this (tab separated): 279391888 261151291 107.303163 ...
0
votes
0answers
46 views

EMR No output for a long time

I have a MapReduce job written in python using MRJob library. The job takes around 30 mins to complete on my local machine. While running the same job on the EMR, I am seeing no output for a long time ...
0
votes
1answer
195 views

Python: Increasing timeout value in EMR using yelps MRJOB

I am using the yelp MRjob for writing some of the mapreduce programs. I am running it on EMR. My program has reducer code which takes a long time to execute. I am noticing that because of the default ...
1
vote
4answers
624 views

How does mapreduce sort and shuffle work?

I am using yelps MRJob library for achieving map-reduce functionality. I know that map reduce has an internal sort and shuffle algorithm which sorts the values on the basis of their keys. So if I have ...
1
vote
1answer
161 views

How to bundle custom hadoop-streaming.jar

I'm trying to use the CombineFileInputFormat class using Yelp's MrJob tool for EMR. The jobflow is created using hadoop streaming, and MrJob's documentation indicates the CombineFileInputFormat class ...
0
votes
1answer
57 views

using sqlite3dbm with mrjob for map reduce

I have a sqlite3dbm which store data in key-value pair. I need to process it using mrjob. When I run my code xyz.py my_db.db, mapper fn doesn't work properly. def mapper(k,val): for word in val: ...
2
votes
1answer
143 views

MRJob and mapreduce task partitioning over Hadoop

I am trying to perform a mapreduce job using the Python MRJob lib and am having some issues getting it to properly distribute across my Hadoop cluster. I believe I am simply missing a basic principle ...
0
votes
2answers
146 views

Is there a good library that helps chain MapReduce jobs using Hadoop Streaming and Python?

This question answers part of my question but not completely. How do I run a script that manages this, is it from my local filesystem? Where exactly do things like MrJob or Dumbo come into picture? ...
0
votes
0answers
246 views

Python Hadoop Streaming [closed]

There are a few Python modules for Hadoop streaming, e.g., Dumbo (http://projects.dumbotics.com/dumbo/), mrjob (http://packages.python.org/mrjob/), Hadoopy (http://www.hadoopy.com/en/latest/). On the ...
0
votes
1answer
39 views

“The location specified by MRJOB_CONF” in mrjob documentaion

Which path is "The location specified by MRJOB_CONF" in mrjob documentation? Link to mrjob doc : http://mrjob.readthedocs.org/en/latest/guides/configs-basics.html
0
votes
1answer
106 views

Some elementary doubts about running Mapreduce programs using mrjob on Amazon EMR

I am new to mrjob and I am having problems to get the job running on Amazon EMR. I will write them in sequential order. I can run a mrjob on my local machine. However when I have mrjob.conf in ...
1
vote
2answers
131 views

How to debug python MapReduce programs written in mrjob from eclipse

I am trying to debug mapreduce jobs written in python's mrjob library using eclipse under Ubuntu. Does anyone have an idea how this could be done?
2
votes
2answers
112 views

How can I iterately process all files under one directory using mrjob

I am using mrjob to process a batch of files and get some statistics. I know I can run mapreduce job on a single file, like python count.py < some_input_file > output But how can I feed a ...
2
votes
1answer
96 views

Unicode files with mrjob

I'm attempting to run a basic character count using mrjob. The file is a unicode UTF-8 text document that contains, among other symbols, Chinese characters. When I run the character count, I only get ...
0
votes
1answer
80 views

MRJob MR assign to Dictionary instead of Yield?

I'm new to MRJob and MR and I was wondering in the traditional word count python example for MRJob MR: from mrjob.job import MRJob class MRWordCounter(MRJob): def mapper(self, key, line): ...
2
votes
1answer
90 views

How does one specify the input file for a runner from Python?

I am writing an external script to run a mapreduce job via the Python mrjob module on my laptop (not on Amazon Elastic Compute Cloud or any large cluster). I read from the mrjob documentation that I ...
0
votes
0answers
26 views

How can I tell mrjob to change how to disperse pairs to reducers?

By default, it seems that mrjob divides up pairs with the same keys to the same reducers. Can I somehow specify that all keys that begin with 'a' should go to the same reducer?
2
votes
1answer
98 views

Can mrjob tasks output sets?

I tried outputting a python set from a mapper in mrjob. I changed the function signatures of my combiners and reducers accordingly. However, I get this error: Counters From Step 1 Unencodable ...
0
votes
1answer
273 views

How can I cannot index into the values list of reduce?

I am using in-mapper combining in a Map Reduce job via the Python mrjob module. Because I wrote a mapper_final function that emits a single pair, I am sure that only a single key-value pair is emitted ...
0
votes
1answer
83 views

How do all the reducers come up with a single answer?

I am beginning to learn MapReduce with the mrjob python package. mrjob documentation lists the following snippet as an example MapReduce script. """The classic MapReduce job: count the frequency of ...
1
vote
1answer
127 views

mrjob: Is it possible to run a job flow in a VPC?

I'm using mrjob to run some MapReduce tasks on EMR, and I want to run a job flow in a VPC. I looked at the documentation of mrjob and boto, and none of them seems to support this. Does anyone know if ...
0
votes
0answers
170 views

SignatureDoesNotMatch at the end of a mrjob hadoop job running on Elastic MapReduce

At the end of a mrjob hadoop job running on Elastic MapReduce, the result is normally copied on a S3 bucket. However, I'm having trouble that sometimes it dumps the following stacktrace : Status ...
0
votes
1answer
207 views

Import module in MRJob on EMR

Simple question: I have a module headers.py which defines a couple variables I need in my main MRJob script. I should be able to run the job with python MRMyJob -r emr --file=headers.py ...
3
votes
1answer
524 views

How to get the name of input file in MRjob

I'm writing a map function using mrjob. My input will come from files in a directory on HDFS. Names of the files contain a small but crucial piece information that is not present in the files. Is ...