This library allows for the easy construction and management of Dask clusters from a Git repository via a simple context manager.
Project description
Distributed Runner
This library allows for the easy construction and management of Dask clusters from a Git repository via a simple context manager.
Installation
pip install distrunner
Usage
In your scheduler (Airfow etc.) use this:
from distrunner import DistRunner
with DistRunner(
workers=5,
python_version="3.10",
repo="https://gitlab.com/crossref/labs/task-test.git",
entry_module="task",
entry_point="entry_point",
requirements_file="requirements.txt",
local=False,
retries=3,
worker_memory=16384,
worker_cpus=4096,
) as dr:
logging.basicConfig(level=logging.INFO)
dr.run()
The "local" flag will determine whether a remote cluster is created.
The code in the git repository at the module and entry point that you specify will be called, passing the DaskRunner object. You can use this, then, to obtain a Dask client by calling cldr.client.
Features
- Context manager handling of Dask Fargate clusters with scale-to-zero on complete
- Easy ability to switch between local and distributed/remote development
- Simple deployment from a git repository including all requirements
- Bugfixes to Dask AWS 2022.10.0 to suppress errors in weakref finalizers
Credits
Copyright © Crossref 2023
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
distrunner-0.0.1.tar.gz
(10.0 kB
view hashes)
Built Distribution
Close
Hashes for distrunner-0.0.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e298438cb154211d88dbb13758c7535f3b32a541bd8fbb09e7693ee4c23bf1ee |
|
MD5 | eb139529bc3eabbd6086aae94cc80e0a |
|
BLAKE2b-256 | 91f8c34114f6424d1615cb8f589908e1441434b9ce8bb60e7bbdc6a08bdd53d6 |