Skip to main content

A new protocol for SDSS actors.

Project description

Python Versions Build Status Documentation Status

CLU implements a new protocol for SDSS actor while providing support for legacy-style actor.

Features

  • Asynchronous API based on asyncio.

  • New-style actor with message passing based on AMQP and RabbitMQ.

  • Legacy-style actor for TCP socket communication through Tron.

  • Tools for device handling.

  • Messages are validated JSON strings.

  • click-enabled command parser.

Installation

CLU can be installed using pip as

pip install sdss-clu

or from source

git clone https://github.org/sdss/clu
cd clu
pip install .

If you want to install it using modules you can use sdss_install

sdss_install clu

Quick start

Creating a new actor with CLU is easy. To instantiate and run an actor you can simply do

import asyncio
from clu import AMQPActor

async def main(loop):
    actor = Actor('guest', 'localhost', loop=loop).run()

loop = asyncio.get_event_loop()
loop.create_task(main(loop))
loop.run_forever()

Next, head to the Getting started section for more information about using actors.

Why a new messaging protocol for SDSS?

Say whatever you want about it, the current SDSS message passing protocol based on Tron, opscore, and actorcore is stable and robust. So, why should we replace it? Here is a list of reasons:

  • It reinvents the wheel. Ok, in all honesty Tron and opscore were written when wheel were still not completely circular, but the truth is that nowadays there are more robust, standard, and better documented technologies out there for message passing.

  • We can remove the need for a central hub product by relying in open-source message brokers such as RabbitMQ.

  • Tron and opscore are Python 2 and it’s unclear the amount of effort that would be needed to convert them to Python 3.

  • While there is some documentation for Tron and opscore, and the code is well written, it’s also cumbersome and difficult to modify by people that didn’t write it. It’s ultimately non-maintainable.

  • The opsctore/actorkeys datamodel is custom-built and extremely difficult to maintain. Standard solutions such as JSON with a JSON schema validator should be preferred.

  • asyncio provides an asynchronous API that is cleaner and easier to code than using threads. It is also more readable and less convoluted than twisted and it’s a Python core library with very active development.

  • CLU uses click for parsing commands, providing a well-defined, easy to use parser.

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

sdss-clu-0.2.0.tar.gz (107.7 kB view hashes)

Uploaded Source

Built Distribution

sdss_clu-0.2.0-py3-none-any.whl (118.8 kB view hashes)

Uploaded Python 3

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