Background Workflows for task processing
Reason this release was yanked:
minor bug
Project description
Background Workflows
A pluggable framework for managing background tasks in Python. Supports both local task execution with threading and distributed task execution using Celery.
Features
- Task orchestration with support for Azure Table Storage or SQLite for task persistence.
- Queue management for local in-memory queues or Celery for distributed task processing.
- Dynamic task creation and registration for extensible workflow management.
Additional Documentation
For more detailed documentation, please refer to the following sections:
- Summary: summary.md – A brief summary of the framework and its key components.
- Controller Documentation: controller.md – Detailed information about the controller components and how they work.
- Storage Documentation: storage.md – Information on task storage options, including Azure and SQLite.
- Task Documentation: tasks.md – Overview of task management, including how to define and run tasks.
- Utils Documentation: utils.md – A guide to the utility functions and classes used in the framework.
- Overall Framework Diagram: overal_diagram.md – A high-level diagram illustrating the components and their relationships.
Installation
You can install the background_workflows library via pip:
pip install background_workflows
Usage
1. Initialize Task Store and Queue Backend
from background_workflows.storage.tables.task_store_factory import TaskStoreFactory
from background_workflows.storage.queue.local_queue_backend import LocalQueueBackend
# Initialize task store and queue backend
factory = TaskStoreFactory(store_mode="sqlite")
task_store = factory.get_task_store()
queue_backend = LocalQueueBackend()
2. Start a Background Activity
from background_workflows.utils.workflow_client import WorkflowClient
workflow_client = WorkflowClient(task_store, queue_backend)
workflow_client.start_activity("MY_CUSTOM_TASK", resource_id="1234", payload={"data": "value"})
3. Monitor Task Status
status = workflow_client.get_status(row_key="unique-row-id", resource_id="1234")
print(f"Task Status: {status}")
Configuration
Environment Variables
To configure the library, set the following environment variables:
STORE_MODE: Choose between"azure"or"sqlite"for task storage.AZURE_STORAGE_CONNECTION_STRING: Required for Azure storage mode.SQLITE_DB_PATH: Path to the SQLite database (default islocal_tasks.db).CELERY_BROKER_URL: The URL for the Celery message broker (e.g., Redis).CELERY_BACKEND_URL: The URL for the Celery result backend (e.g., Redis).
Example:
export STORE_MODE=azure
export AZURE_STORAGE_CONNECTION_STRING="your_connection_string_here"
Controllers
The framework provides two key controllers for managing task execution:
1. MainController
- Purpose: Polls queues and executes tasks in a local thread pool.
- Configuration: Can be configured to use a specific number of threads and CPU usage threshold.
- Usage:
from background_workflows.controller.main.main_controller import MainController
controller = MainController(task_store, queue_backend)
controller.run() # Starts the continuous polling and task execution loop
1. CeleryController
- Purpose: Delegates task processing to Celery workers, removing the need for local polling.
- Configuration: Requires a Celery setup and message broker.
- Usage:
from background_workflows.controller.celery.celery_controller import CeleryController
controller = CeleryController(task_store, celery_queue_backend)
controller.run_once() # Executes a single pass of task handling
Contributing
We welcome contributions to the background_workflows library! To contribute:
- Fork the repository.
- Create a new branch for your feature or bug fix.
- Make your changes.
- Run tests to ensure everything works.
- Submit a pull request with a description of the changes you’ve made.
Running Tests
To run the tests, you can use pytest:
pytest tests/
License
This project is licensed under the MIT License - see the LICENSE file for details.
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file background_workflows-0.2.0.tar.gz.
File metadata
- Download URL: background_workflows-0.2.0.tar.gz
- Upload date:
- Size: 44.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0d9b702750b11924722346e0c5bcab29af7dd8ba9cec426cb36c48a610b2f846
|
|
| MD5 |
bfc1efe4382f9e4ca94576b9d133e576
|
|
| BLAKE2b-256 |
8a1e88a2d44dda152fcc4b7c19331427e5547f6082adf5c55d213c3d5497a6ca
|
File details
Details for the file background_workflows-0.2.0-py3-none-any.whl.
File metadata
- Download URL: background_workflows-0.2.0-py3-none-any.whl
- Upload date:
- Size: 71.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f321b52e1f456dbdcc83ddc67281e736f2d615240e2362fc1cadd3a2065c8ff6
|
|
| MD5 |
aa7a022f60feb7db1730eae982a2e6a8
|
|
| BLAKE2b-256 |
047a58020d6c609bd59f1df5408a2fa5636c5ceb62ff257d5ff95b1f827cb8aa
|