Cadasta Worker Toolbox
Project description
A collection of helpers to assist in quickly building asynchronous workers for the Cadasta system.
Architecture
The Cadasta asynchronous system is designed so that both the scheduled tasks and the task results can be tracked by the central Cadasta Platform. To ensure that this takes place, all Celery workers must be correctly configured to support these features.
Tracking Scheduled Tasks
To keep our system aware of all tasks being scheduled, the Cadasta Platform has a process running to consume task messages off of a task-monitor queue and insert those messages into our database. To support this design, all task producers (including worker nodes) must publish their task messages to both the normal destination queues and the task-monitor queue. This is acheived by registering all queues with a Topic Exchange, setting the task-monitor queue to subscribe to all messages sent to the exchange, and setting standard work queues to subscribe to messages with a matching routing_key. Being that the Cadasta Platform is designed to work with Amazon SQS and the SQS backend only keeps exchange/queue declarations in memory, each message producer must have this set up within their configuration.
Tracking Task Results
TODO
Library
cadasta.workertoolbox.conf.Config
The Config class was built to simplify configuring Celery settings, helping to ensure that all workers adhere to the architecture requirements of the Cadasta asynchronous system. An instance of the Config should come configured with all Celery settings that are required by our system. It is the aim of the class to not require much customization on the part of the developer. However, some customization may be needed when altering configuration between environments (e.g. if dev settings vary greatly from prod settings).
Required Arguments
queues
The only required argument is the queues array. This should contain an array of names for queues that are to be used by the given worker. This includes queues from which the node processes tasks and queues into which the node will schedule tasks. It is not necessary to include the 'celery' or 'platform.fifo' queues, as these will be added automatically. The input of the queues variable will be stored as QUEUES on the Config instance.
Optional Arguments
Any Celery setting may be submitted. It is internal convention that we use the lowercase Celery settings rather than their older upper-case counterparts. This will ensure that they are displayed when calling repr on the Conf instance.
result_backend
TODO
task_queues
TODO
Note: It is recommended that developers not alter this setting.
task_routes
TODO
Note: It is recommended that developers not alter this setting.
Internal Variables
By convention, all variables pertinent to only the Config class (i.e. not used by Celery) should be written entirely uppercase.
RESULT_DB_USER
Variable used to populate the default result_backend template.
RESULT_DB_PASS
Variable used to populate the default result_backend template.
RESULT_DB_HOST
Variable used to populate the default result_backend template.
RESULT_DB_NAME
Variable used to populate the default result_backend template.
PLATFORM_QUEUE_NAME
Defaults to 'platform.fifo'.
Note: It is recommended that developers not alter this setting.
cadasta.workertoolbox.tests.build_functional_tests
When provided with a Celery app instance, this function generates a suite of functional tests to ensure that the provided application’s configuration and functionality conforms with the architecture of the Cadasta asynchronous system.
An example, where an instanciated and configured Celery() app instance exists in a parallel celery module:
from cadasta.workertoolbox.tests import build_functional_tests
from .celery import app
FunctionalTests = build_functional_tests(app)
To run these tests, use your standard test runner (e.g. pytest) or call manually from the command-line:
python -m unittest path/to/tests.py
Development
Testing
pip install -r requirements-test.txt
./runtests
Deploying
pip install -r requirements-deploy.txt
python setup.py clean dist publish tag
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
Built Distribution
File details
Details for the file cadasta-workertoolbox-0.1.1.tar.gz
.
File metadata
- Download URL: cadasta-workertoolbox-0.1.1.tar.gz
- Upload date:
- Size: 6.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0274d04844ec4413dccc571f78e1a8e657e6d8b409169164c245484224e92fee |
|
MD5 | ca1aefbfdd04bb4defb6f7ca42efe8ba |
|
BLAKE2b-256 | 7a08d05db0102ec237198f0788802e06cc7e7b75b421c0a9f40d0d09e94309ce |
Provenance
File details
Details for the file cadasta_workertoolbox-0.1.1-py2.py3-none-any.whl
.
File metadata
- Download URL: cadasta_workertoolbox-0.1.1-py2.py3-none-any.whl
- Upload date:
- Size: 11.0 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8afa55b85fdccf13e90efd3e333ee129a1e3d4e6d476a139c30cbb5fdef50516 |
|
MD5 | 5c6d3b2853f120a2486a16a4e259a7c8 |
|
BLAKE2b-256 | a763ba06ec47b2c9c07fe0bf1fc1738143abbeefb4d1e17c07daf08bb21a3e19 |