Paraffin, derived from the Latin phrase parum affinis
meaning
little related
, is a Python package designed to run DVC
stages in parallel. While DVC does not currently support this directly, Paraffin
provides an effective workaround. For more details, refer to the DVC
documentation on
parallel stage execution.
Warning
paraffin
is still very experimental.
Do not use it for production workflows.
Install Paraffin via pip:
pip install paraffin
Screen.Recording.2025-02-12.at.07.53.14.mov
You can submit your current DVC workflow to a database file paraffin.db
for later execution.
Tip
The paraffin submit command supports globing patterns.
paraffin submit # submit all stages
paraffin submit C_AddNodeNumbers "A*" # select which stages to submit
paraffin submit --help # more information
A submitted job will be executed by paraffin workers.
To start a worker you can run paraffin worker
.
The worker will pick up all the jobs in the workeres queue and close once finished.
You can specify the number of stages a worker should process in parallel by using paraffin worker --jobs <n>
.
Alternatively, you can start more workers by running the command multiple times.
paraffin worker
paraffin worker --help # more information
Paraffin ships with a web application for visualizing the progress. You can start it using
paraffin ui
paraffin ui --help # more information
The UI allows you to visualize the progress in real-time, restart jobs and manage workers.
Screen.Recording.2025-02-12.at.08.04.47.mov
To fine-tune execution, you can assign stages to specific Celery queues, allowing you to manage execution across different environments or hardware setups.
Define queues in a paraffin.yaml
file:
queue:
"B_X*": BQueue
"A_X_AddNodeNumbers": AQueue
Then, start a worker with specified queues, such as celery (default) and AQueue:
paraffin worker -q AQueue,default
All stages
not assigned to a queue in paraffin.yaml
will default to the default
queue.
Tip
If you are building Python-based workflows with DVC, consider trying our other project ZnTrack for a more Pythonic way to define workflows.