This library helps you execute a set of functions in a Directed Acyclic Graph (DAG) dependency structure in parallel in a production environment.
Project description
tawazi
Introduction
Tawazi facilitates parallel execution of functions using a DAG dependency structure.
Explanation
Consider the function f
that depends on the function g
and h
:
def g():
print("g")
return "g"
def h():
print("h")
return "h"
def f(g_var, h_var):
print("received", g_var, h_var)
print("f")
return "f"
def main():
f(g(), h())
main()
The DAG described in main
can be accelerated if g
and h
are executed in parallel. This is what Tawazi does by adding a decorator to the functions g
, h
, f
, and main
:
from tawazi import dag, xn
@xn
def g():
print("g")
return "g"
@xn
def h():
print("h")
return "h"
@xn
def f(g_var, h_var):
print("received", g_var, h_var)
print("f")
return "f"
@dag(max_concurrency=2)
def main():
f(g(), h())
main()
The total execution time of main()
is 1 second instead of 2 which proves that the g
and h
have run in parallel, you can measure the speed up in the previous code:
from time import sleep, time
from tawazi import dag, xn
@xn
def g():
sleep(1)
print("g")
return "g"
@xn
def h():
sleep(1)
print("h")
return "h"
@xn
def f(g_var, h_var):
print("received", g_var, h_var)
print("f")
return "f"
@dag(max_concurrency=2)
def main():
f(g(), h())
start = time()
main()
end = time()
print("time taken", end - start)
# h
# g
# received g h
# f
# time taken 1.004307508468628
Features
This library satisfies the following:
- robust, well tested
- lightweight
- Thread Safe
- Few dependencies
- Legacy Python versions support (in the future)
- MyPy compatible
- Many Python implementations support (in the future)
In Tawazi, a computation sequence is referred to as DAG
. The functions invoked inside the computation sequence are referred to as ExecNode
s.
Current features are:
- Specifying the number of "Threads" that the
DAG
uses - setup
ExecNode
s: These nodes only run once per DAG instance - debug
ExecNode
s: These are nodes that run only ifRUN_DEBUG_NODES
environment variable is set - running a subgraph of the
DAG
instance - Excluding an
ExecNode
from running - caching the results of the execution of a
DAG
for faster subsequent execution - Priority Choice of each
ExecNode
for fine control of execution order - Per
ExecNode
choice of parallelization (i.e. AnExecNode
is allowed to run in parallel with otherExecNode
s or not) - and more!
Documentation
You can find the documentation here: Tawazi.
In this blog we also talk about the purpose of using Tawazi
in more detail.
Note: The library is still at an advanced state of development. Breaking changes might happen on the minor version (v0.Minor.Patch). Please pin Tawazi to the Minor Version. Your contributions are highly welcomed.
Name explanation
The libraries name is inspired from the arabic word تَوَازٍ which means parallel.
Building the doc
Only the latest version's documentation is hosted.
If you want to check the documentation of a previous version please checkout the corresponding release, install the required packages and run: mkdocs serve
Developer mode
pip install --upgrade pip
pip install flit wheel
cd tawazi
flit install -s
Future developments
This library is still in development. Breaking changes are expected.
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 tawazi-0.3.4.tar.gz
.
File metadata
- Download URL: tawazi-0.3.4.tar.gz
- Upload date:
- Size: 163.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.31.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4563462593dc3537436cf7f914e6c5f308ff6fd81f55b183b9c0f888e3aa51ff |
|
MD5 | e4d751949303bad0c2bbbfc179697372 |
|
BLAKE2b-256 | 1dd5e2d0f90e3233c897d3168a17437f0f61b71b72830c60b613c98ff9131475 |
File details
Details for the file tawazi-0.3.4-py3-none-any.whl
.
File metadata
- Download URL: tawazi-0.3.4-py3-none-any.whl
- Upload date:
- Size: 47.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.31.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2bdbae8db921401feed6ba4534d9b5f0c85cd6dc11470e43d612c5de866ecf30 |
|
MD5 | d9aa0dd654d95fe9f1e9244ff85c4195 |
|
BLAKE2b-256 | f270bf18de6b5e429fcceb48d4101c158cb3f9737780f80c40d0d0509b5c77c8 |