RETIRED, Sahara provides a scalable data processing stack and associated management interfaces.
Go to file
Sergey Lukjanov a878cfdec5 README has been updated 2013-02-24 14:41:37 +04:00
bin args has been updated 2013-02-22 15:07:43 +04:00
doc/source Initial commit 2013-02-04 16:41:24 +04:00
eho test_api has been updated 2013-02-22 15:46:43 +04:00
etc default conf has been cleaned 2013-02-21 12:29:45 +04:00
tools background execution support has been added 2013-02-21 12:32:29 +04:00
.gitignore nosetests.xml added to .gitignore 2013-02-19 12:57:25 +04:00
README.rst README has been updated 2013-02-24 14:41:37 +04:00

README.rst

Elastic Hadoop on OpenStack

QuickStart (Ubuntu) ----------1. Install Python with headers and virtualenv: :: apt-get install python-dev python-virtualenv

2. Prepare virtual environment: :: tools/install_venv

3. To run Python fro created environment just call: :: tools/with_venv python

4. Run PEP8 checks: :: tools/run_pep8

5. Build docs: :: tools/build_docs

6. Run all tests: :: tools/run_tests

Pip speedup

Add the following lines to ~/.pip/pip.conf :: # [global] # download-cache = /home/<username>/.pip/cache # index-url = <mirror url>

Note! The ~/.pip/cache folder should be created. For Saratov location the http://mirrors.sgu.ru/pypi/simple is preferred.

Git hook for pep8 check

Just add the following lines to .git/hooks/pre-commit and do chmod +x for it. :: #!/bin/sh # Auto-check for pep8 tools/run_pep8

You can added the same check for pre-push, for example, run all tests.