Skip to main content

Restful service for managing MongoDB servers

Project description

See the wiki for documentation.

Mongo Orchestration is an HTTP server that provides a REST API for creating and managing MongoDB configurations on a single host.

THIS PROJECT IS FOR TESTING OF MONGODB DRIVERS.

Features

  • Start and stop mongod servers, replica sets, and sharded clusters on the host running mongo-orchestration.

  • Add and remove replica set members.

  • Add and remove shards and mongos routers.

  • Reset replica sets and clusters to restart all members that were stopped.

  • Freeze secondary members of replica sets.

  • Retrieve information about MongoDB resources.

  • Interaction all through REST interface.

Requires

Installation

The easiest way to install Mongo Orchestration is with pip:

pip install mongo-orchestration

You can also install the development version of Mongo Orchestration manually:

git clone https://github.com/10gen/mongo-orchestration.git
cd mongo-orchestration
pip install .

Cloning the repository this way will also give you access to the tests for Mongo Orchestration as well as the mo script. Note that you may have to run the above commands with sudo, depending on where you’re installing Mongo Orchestration and what privileges you have. Installation will place a mongo-orchestration script on your path.

Usage

mongo-orchestration [-h] [-f CONFIG] [-e ENV] [--no-fork] [-b BIND IP="localhost"] [-p PORT]
                    [-s {cherrypy,wsgiref}] [--socket-timeout-ms MILLIS]
                    [--pidfile PIDFILE] [--enable-majority-read-concern] {start,stop,restart}

Arguments:

  • -h - show help

  • -f, –config - path to config file

  • -e, –env - default release to use, as specified in the config file

  • –no-fork - run server in foreground

  • -b, –bind - host on which Mongo Orchestration and subordinate mongo processes should listen for requests. Defaults to “localhost”.

  • -s, –server - HTTP backend to use: one of cherrypy or wsgiref

  • -p - port number (8889 by default)

  • –socket-timeout-ms - socket timeout when connecting to MongoDB servers

  • –pidfile - location where mongo-orchestration should place its pid file

  • –enable-majority-read-concern - enable “majority” read concern on server versions that support it.

  • start/stop/restart: start, stop, or restart the server, respectively

In addition, Mongo Orchestration can be influenced by the MONGO_ORCHESTRATION_HOME environment variable, which informs the server where to find the “configurations” directory for presets as well as where to put the log and pid files.

Examples

mongo-orchestration start

Starts Mongo Orchestration as service on port 8889.

mongo-orchestration stop

Stop the server.

mongo-orchestration -f mongo-orchestration.config -e 30-release -p 8888 --no-fork start

Starts Mongo Orchestration on port 8888 using 30-release defined in mongo-orchestration.config. Stops with Ctrl+C.

If you have installed mongo-orchestration but you’re still getting command not found: mongo-orchestration this means that the script was installed to a directory that is not on your PATH. As an alternative use:

python -m mongo_orchestration.server start

Configuration File

Mongo Orchestration may be given a JSON configuration file with the --config option specifying where to find MongoDB binaries. See mongo-orchestration.config for an example. When no configuration file is provided, Mongo Orchestration uses whatever binaries are on the user’s PATH.

Predefined Configurations

Mongo Orchestration has a set of predefined configurations that can be used to start, restart, or stop MongoDB processes. You can use a tool like curl to send these files directly to the Mongo Orchestration server, or use the mo script in the scripts directory (in the repository only). Some examples:

  • Start a single node without SSL or auth:

    mo configurations/servers/clean.json start
  • Get the status of a single node without SSL or auth:

    mo configurations/servers/clean.json status
  • Stop a single node without SSL or auth:

    mo configurations/servers/clean.json stop
  • Start a replica set with ssl and auth:

    mo configurations/replica_sets/ssl_auth.json start
  • Use curl to create a basic sharded cluster with the id “myCluster”:

    curl -XPUT http://localhost:8889/v1/sharded_clusters/myCluster \
               -d@configurations/sharded_clusters/basic.json

Note that in order to run the mo script, you need to be in the same directory as “configurations”.

Helpful hint: You can prettify JSON responses from the server by piping the response into python -m json.tool, e.g.:

$ curl http://localhost:8889/v1/servers/myServer | python -m json.tool

{
    "id": "myServer",
    "mongodb_uri": "mongodb://localhost:1025",
    "orchestration": "servers",
    "procInfo": {
        "alive": true,
        "name": "mongod",
        "optfile": "/var/folders/v9/spc2j6cx3db71l/T/mongo-KHUACD",
        "params": {
            "dbpath": "/var/folders/v9/spc2j6cx3db71l/T/mongo-vAgYaQ",
            "ipv6": true,
            "journal": true,
            "logappend": true,
            "oplogSize": 100,
            "port": 1025
        },
        "pid": 51320
    },
    // etc.
}

Tests

In order to run the tests, you should first clone the repository. Running the tests has the following additional dependency:

Run all tests

python setup.py test

Run a test module

python -m unittest tests.test_servers

Run a single test case

python -m unittest tests.test_servers.ServerSSLTestCase

Run a single test method

python -m unittest tests.test_servers.ServerSSLTestCase.test_ssl_auth

Run a single test example for debugging with verbose and immediate stdout output

python -m unittest -v tests.test_servers.ServerSSLTestCase

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mongo-orchestration-0.6.12.tar.gz (43.6 kB view details)

Uploaded Source

Built Distribution

mongo_orchestration-0.6.12-py2.py3-none-any.whl (65.3 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file mongo-orchestration-0.6.12.tar.gz.

File metadata

  • Download URL: mongo-orchestration-0.6.12.tar.gz
  • Upload date:
  • Size: 43.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.18.3 setuptools/18.5 requests-toolbelt/0.8.0 tqdm/4.15.0 CPython/2.7.10

File hashes

Hashes for mongo-orchestration-0.6.12.tar.gz
Algorithm Hash digest
SHA256 d73f7666424ee6e4b2143c1e2f72025b15236dacd07c80a374a44bb056d53a6b
MD5 aba286b957b260d2cff34a3072e0bc3c
BLAKE2b-256 72349f010c4ac8569314569ea69a93a234d1dedf211666ab0b01b919d7843dba

See more details on using hashes here.

Provenance

File details

Details for the file mongo_orchestration-0.6.12-py2.py3-none-any.whl.

File metadata

  • Download URL: mongo_orchestration-0.6.12-py2.py3-none-any.whl
  • Upload date:
  • Size: 65.3 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.18.3 setuptools/18.5 requests-toolbelt/0.8.0 tqdm/4.15.0 CPython/2.7.10

File hashes

Hashes for mongo_orchestration-0.6.12-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 56cf995e6c413cdeabd839b703695dc16c6de453ee9b06b3797111ef638dad13
MD5 de684f8fa7bcae5833b3be8409ff8589
BLAKE2b-256 a767cba9d06dfd8d01404000707c88924c1d802d40c628b9a355184c5be1234d

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page