mrjob 0.3.1
Python MapReduce framework
Downloads ↓ | Package Documentation
Latest Version: 0.3.3.2
mrjob is a Python package that helps you write and run Hadoop Streaming jobs.
mrjob fully supports Amazon's Elastic MapReduce (EMR) service, which allows you to buy time on a Hadoop cluster on an hourly basis. It also works with your own Hadoop cluster.
Some important features:
Run jobs on EMR, your own Hadoop cluster, or locally (for testing).
Write multi-step jobs (one map-reduce step feeds into the next)
- Duplicate your production environment inside Hadoop
- Upload your source tree and put it in your job's $PYTHONPATH
- Run make and other setup scripts
- Set environment variables (e.g. $TZ)
- Easily install python packages from tarballs (EMR only)
- Setup handled transparently by mrjob.conf config file
Automatically interpret error logs from EMR
SSH tunnel to hadoop job tracker on EMR
- Minimal setup
- To run on EMR, set $AWS_ACCESS_KEY_ID and $AWS_SECRET_ACCESS_KEY
- To run on your Hadoop cluster, install simplejson and make sure $HADOOP_HOME is set.
Installation
python setup.py install
Try it out!
# locally python mrjob/examples/mr_word_freq_count.py README.rst > counts # on EMR python mrjob/examples/mr_word_freq_count.py README.rst -r emr > counts # on your Hadoop cluster python mrjob/examples/mr_word_freq_count.py README.rst -r hadoop > counts
Setting up EMR on Amazon
- create an Amazon Web Services account
- sign up for Elastic MapReduce
- Get your access and secret keys (click "Security Credentials" on your account page)
- Set the environment variables $AWS_ACCESS_KEY_ID and $AWS_SECRET_ACCESS_KEY accordingly
Advanced Configuration
To run in other AWS regions, upload your source tree, run make, and use other advanced mrjob features, you'll need to set up mrjob.conf. mrjob looks for its conf file in:
- The contents of $MRJOB_CONF
- ~/.mrjob.conf
- ~/.mrjob (deprecated)
- mrjob.conf anywhere in your $PYTHONPATH (deprecated)
- /etc/mrjob.conf
See mrjob.conf.example for more information.
Links
- source: <http://github.com/Yelp/mrjob>
- documentation: <http://packages.python.org/mrjob/>
- discussion group: <http://groups.google.com/group/mrjob>
- Hadoop MapReduce: <http://hadoop.apache.org/mapreduce/>
- Elastic MapReduce: <http://aws.amazon.com/documentation/elasticmapreduce/>
Thanks to Greg Killion (blind-works.net) for the logo.
| File | Type | Py Version | Uploaded on | Size | # downloads |
|---|---|---|---|---|---|
| mrjob-0.3.1.tar.gz (md5) | Source | 2011-12-20 | 122KB | 858 | |
- Author: David Marin
- Documentation: mrjob package documentation
- Home Page: http://github.com/Yelp/mrjob
- License: Apache
- Provides mrjob
-
Categories
- Development Status :: 4 - Beta
- Intended Audience :: Developers
- License :: OSI Approved :: Apache Software License
- Natural Language :: English
- Operating System :: OS Independent
- Programming Language :: Python
- Programming Language :: Python :: 2.5
- Programming Language :: Python :: 2.6
- Programming Language :: Python :: 2.7
- Topic :: System :: Distributed Computing
- Package Index Owner: davidmarin, sjohnson
- DOAP record: mrjob-0.3.1.xml
