From 9b68fdf0b0f98c442e50ce8947340954eadf9d68 Mon Sep 17 00:00:00 2001 From: John Chilton <jmchilton@gmail.com> Date: Fri, 10 Apr 2015 22:16:40 -0500 Subject: [PATCH] WIP: Documentation overhaul... Start process of describing PyPI based installs and newer scripts such as pulsar-config and pulsar-check. --- README.rst | 13 +++-- docs/install.rst | 147 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 155 insertions(+), 5 deletions(-) create mode 100644 docs/install.rst diff --git a/README.rst b/README.rst index 6d6bba54..7d985b49 100644 --- a/README.rst +++ b/README.rst @@ -6,8 +6,8 @@ This project is a Python server application that allows a `Galaxy <http://galaxyproject.org>`_ server to run jobs on remote systems (including Windows) without requiring a shared mounted file systems. Unlike traditional Galaxy job runners - input files, scripts, and config files may be transferred -to the remote system, the job is executed, and the result downloaded back to -the Galaxy server. +to the remote system, the job is executed, and the results are transfered back +to the Galaxy server - eliminating the need for a shared file system. Full documentation for the project can be found on `Read The Docs <https://pulsar.readthedocs.org/>`_. @@ -16,9 +16,12 @@ Full documentation for the project can be found on `Read The Docs Configuring Galaxy ------------------ -Galaxy job runners are configured in Galaxy's ``job_conf.xml`` file. Some small examples of how to configure this can be found `here <https://pulsar.readthedocs.org/en/latest/#galaxy-configuration>`__, but be sure to checkout ``job_conf.xml.sample_advanced`` -in your Galaxy code base or on -`Bitbucket <https://bitbucket.org/galaxy/galaxy-dist/src/tip/job_conf.xml.sample_advanced?at=default>`_ +Galaxy job runners are configured in Galaxy's ``job_conf.xml`` file. Some small +examples of how to configure this can be found `here +<https://pulsar.readthedocs.org/en/latest/#galaxy-configuration>`__, but be sure +to checkout ``job_conf.xml.sample_advanced`` in your Galaxy code base or on +`Github +<https://github.com/galaxyproject/galaxy/blob/master/config/job_conf.xml.sample_advanced>`_ for complete information. ------------------ diff --git a/docs/install.rst b/docs/install.rst new file mode 100644 index 00000000..539b0597 --- /dev/null +++ b/docs/install.rst @@ -0,0 +1,147 @@ +.. _install: + +-------------------- +Installing Pulsar +-------------------- + +There are two primary ways to deploy Pulsar. The newer and preferred +method is to install Pulsar from `PyPI <pypi.python.org/pypi/pulsar-app>`__ +using the standard Python tools of pip_ and virtualenv_. + +The older method also requires these tools to install Pulsar's dependencies +but Pulsar itself is served directly from a clone of the Pulsar source tree - +this mirrors how `Galaxy`_ is most typically deployed. This may be beneficial +during Pulsar development and is required for certain experimental features such +as Mesos support. + +Both methods presented here require a pip_ installation availabe for Windows, +Linux, and Mac OS X in addition to a Python 2 runtime (`Windows +<http://docs.python-guide.org/en/latest/starting/install/win/>`__, +`Linux <http://docs.python-guide.org/en/latest/starting/install/linux/>`__, +`Mac OS X +<http://docs.python-guide.org/en/latest/starting/install/osx>`__). + +These instructions also require virtualenv_. Open a console on your machine and +type ``virtualenv`` - if the command is missing you will need to install it. It +can be installed using ``[sudo] pip install virtualenv``. + +From PyPI +---------------------- + +Start by creating a directory for the pulsar configuration files and setting +up a virtualenv to install Pulsar into using the following three commands.:: + + mkdir pulsar + cd pulsar + virtualenv venv + +Next, activate this newly created virtualenv. From a Linux or MacOS X terminal +this can be done with the command ``. venv/bin/activate`` and in Windows you can +type ``venv\Scripts\activate``. + +Next install pulsar using ``pip``.:: + + pip install pulsar-app + +Next setup required this directory for use with Pulsar by running the following +command.:: + + pulsar-config + +The ``pulsar-config`` script can bootstrap various Pulsar deployment options, +run ``pulsar-config --help`` for full details. For instance, Pulsar can be +configured to monitor a message queue and skip the web server configuration - +enable this by passing ``--mq`` to ``pulsar-config``. Another particularly +useful option is ``--supervisor`` which will generate a Supervisord_ +configuration for this directory and install Supervisord_. + +.. TODO a full page of documentation on supervisor - perhaps auto-generated + from --help. + +.. TODO a page on operating pulsar via supervisord + +``pulsar-config`` installs a few files into this directory. ``app.yml`` +contains Pulsar configuration options and ``server.ini`` contains web server +related information (it will not exist if configured ``--mq``).:: + + pulsar [start] + +Under Linux and Mac OS X the ``start`` argument can be supplied to run Pulsar as +a daemon and ``pulsar stop``. If ``start`` is not supplied, Pulsar will just run +in the foreground (the only option for Windows). + +The Pulsar deployment can be tested by running the following command, which will +submit an example job and wait for its completion. + + pulsar-check + +If Pulsar is not running on the default port ``8913``, ``pulsar-check`` should +be called with an explicit URL using the argument +``--url=http://localhost:8913``. Likewise if a private token has been configured +it can be supplied using ``--private_token=<token>``. + +From Source +---------------------- + +Pulsar can be obtained from GitHub_ using the following command:: + + git clone https://github.com/galaxyproject/pulsar + +------------------- +Pulsar Dependencies +------------------- + +Several Python packages must be installed to run the Pulsar server. These can +either be installed into a Python ``virtualenv`` or into your system wide +Python environment using ``easy_install``. Instructions for both are outlined +below. Additionally, if DRMAA is going to be used to communicate with a +cluster, this dependency must be installed as well - again see note below. + +virtualenv +---------- + +Installation suitable for \*nix are as follows. These instructions can work for +Windows as well but generally the ``easy_install`` instructions below are more +robust for Window's environments. + +1. Install `virtualenv <http://www.virtualenv.org/en/latest/#installation>`_ (if not available):: + + pip install virtualenv + +2. Create a new Python environment:: + + virtualenv .venv + +3. Activate environment (varies by OS). + +From a Linux or MacOS terminal:: + + . .venv/bin/activate + +From a Windows terminal:: + + .venv\Scripts\activate + +4. Install required dependencies into this virtual environment:: + + pip install -r requirements.txt + +easy_install +------------ + +Install python setuptools for your platform, more details on how to do +this can be found `here <http://pypi.python.org/pypi/setuptools>`__. + +The ``easy_install`` command line application will be installed as +part of setuptools. Use the following command to install the needed +packages via ``easy_install``:: + + easy_install paste wsgiutils PasteScript PasteDeploy webob six psutil + + + +.. _Galaxy: http://galaxyproject.org/ +.. _GitHub: https://github.com/ +.. _virtualenv: https://virtualenv.pypa.io/ +.. _pip: https://pip.pypa.io/ +.. _Supervisord: http://supervisord.org/ -- GitLab