OpenStack Messaging (Zaqar)
Go to file
Alejandro Cabrera 52b5dad078 feat: add shard management resource
This patchset adds a new resource that exposes shard registry through
the administrative API. Since there is no storage backend available
that implements this functionality yet, the shards resource is not
connected to the queues routes just yet.

Preliminary support is added for unit testing this soon.

Change-Id: I49793990327643fc2bc5091615fb0bebcef04bc0
Partially-implements: blueprint storage-sharding
2013-10-23 15:53:53 -04:00
etc feat: split queues API into public/admin 2013-10-21 14:32:52 -04:00
marconi feat: add shard management resource 2013-10-23 15:53:53 -04:00
tests feat: add shard management resource 2013-10-23 15:53:53 -04:00
.coveragerc Suppress some Coverage report output 2013-03-29 16:07:20 -04:00
.gitignore Ignore *.egg dirs 2013-08-14 16:10:08 -05:00
.gitreview Update .gitreview for incubation org move 2013-09-14 17:44:26 +00:00
AUTHORS.rst refactor: Rename AUTHORS so that it doesn't keep getting overwritten 2013-03-19 16:33:43 -04:00
HACKING.rst Update HACKING file with the new structure 2013-09-18 13:53:27 +02:00
MANIFEST.in Initial import. 2012-11-01 09:52:20 +01:00
openstack-common.conf chore: Update openstack.common, add lockutils 2013-08-29 14:49:36 -05:00
README.rst Merge "doc: Recommend installing marconi via pip" 2013-10-18 14:45:26 +00:00
requirements.txt feat (proxy/admin): allow partition modifications 2013-10-02 10:54:30 -04:00
setup.cfg feat: split queues API into public/admin 2013-10-21 14:32:52 -04:00
setup.py Update pbr and requirements to be current 2013-09-18 07:55:39 -07:00
test-requirements.txt feat: split proxy API into admin and public apps 2013-10-01 17:31:40 -04:00
tox.ini Update pbr and requirements to be current 2013-09-18 07:55:39 -07:00

Marconi

Message queuing service for OpenStack

Running a local Marconi server with MongoDB

  1. Install MongoDB

  2. Start a MongoDB instance:

    mongod
  3. Clone the Marconi repo:

    git clone https://github.com/openstack/marconi.git
  4. cd to your local copy of the repo

  5. Copy the Marconi config files to the directory ~/.marconi:

    cp -r marconi/etc/*.conf-sample ~/.marconi/marconi.conf
  6. Find the [drivers:storage:mongodb] section in ~/.marconi/marconi-queues.conf and modify the URI to point to your local mongod instance:

    uri = mongodb://localhost
  7. Run the following so you can see the results of any changes you make to the code, without having to reinstall the package each time:

    pip install -e .
  8. Start the marconi server:

    marconi-server