Infrastructure components for automated data processing at Diamond Light Source
Project description
Zocalo
Zocalo is an automated data processing system designed at Diamond Light Source. This repository contains infrastructure components for Zocalo.
The idea of Zocalo is a simple one - to build a messaging framework, where text-based messages are sent between parts of the system to coordinate data analysis. In the wider scope of things this also covers things like archiving, but generally it is handling everything that happens after data aquisition.
Zocalo as a wider whole is made up of two repositories (plus some private internal repositories when deployed at Diamond):
DiamondLightSource/python-zocalo - Infrastructure components for automated data processing, developed by Diamond Light Source. The package is available through PyPi and conda-forge.
DiamondLightSource/python-workflows - Zocalo is built on the workflows package. It shouldn’t be necessary to interact too much with this package, as the details are abstracted by Zocalo. workflows controls the logic of how services connect to each other and what a service is, and actually send the messages to a message broker. Currently this is an ActiveMQ broker (via STOMP) but support for a RabbitMQ broker (via pika) is being added. This is also available on PyPi and conda-forge.
As mentioned, Zocalo is currently built on top of ActiveMQ. ActiveMQ is an apache project that provides a message broker server, acting as a central dispatch that allows various services to communicate. Messages are plaintext, but from the Zocalo point of view it’s passing aroung python objects (json dictionaries). Every message sent has a destination to help the message broker route. Messages may either be sent to a specific queue or broadcast to multiple queues. These queues are subscribed to by the services that run in Zocalo. In developing with Zocalo, you may have to interact with ActiveMQ or RabbitMQ, but it is unlikely that you will have to configure it.
Zocalo allows for the monitoring of jobs executing python-workflows services or recipe wrappers. The python-workflows package contains most of the infrastructure required for the jobs themselves and more detailed documentation of its components can be found in the python-workflows GitHub repository and the Zocalo documentation.
History
Unreleased
Add command line tools for handling dead-letter messages
zocalo.dlq_check checks dead-letter queues for messages
zocalo.dlq_purge removes messages from specified DLQs and dumps them to a directory specified in the Zocalo configuration
zocalo.dlq_reinject takes a serialised message produced by zocalo.dlq_purge and places it back on a queue
Use argparse for all command line tools and make use of workflows transport argument injection. Minimum workflows version is now 2.14
0.10.0 (2021-10-04)
New zocalo.shutdown command to shutdown Zocalo services
New zocalo.queue_drain command to drain one queue into another in a controlled manner
New zocalo.util.rabbitmq.http_api_request() utility function to return a urllib.request.Request object to query the RabbitMQ API using the credentials specified via zocalo.configuration.
zocalo.wrap now emits tracebacks on hard crashes and SIGUSR2 signals
0.9.1 (2021-08-18)
Expand ~ in paths in configuration files
0.9.0 (2021-08-18)
Removed –live/–test command line arguments, use -e/–environment instead
zocalo.go, zocalo.service, zocalo.wrap accept -t/–transport command line options, and the default can be set via the site configuration.
0.8.1 (2021-07-08)
Keep wrapper status threads alive through transport disconnection events
0.8.0 (2021-05-18)
Support for Zocalo configuration files
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.