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 ExecNodes.
Current features are:
- Specifying the number of "Threads" that the
DAGuses - setup
ExecNodes: These nodes only run once per DAG instance - debug
ExecNodes: These are nodes that run only ifRUN_DEBUG_NODESenvironment variable is set - running a subgraph of the
DAGinstance - Excluding an
ExecNodefrom running - caching the results of the execution of a
DAGfor faster subsequent execution - Priority Choice of each
ExecNodefor fine control of execution order - Per
ExecNodechoice of parallelization (i.e. AnExecNodeis allowed to run in parallel with otherExecNodes 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 --deps develop
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
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 tawazi-0.6.2.tar.gz.
File metadata
- Download URL: tawazi-0.6.2.tar.gz
- Upload date:
- Size: 169.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.32.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e1bb8e1b818008272b95d35d0f7fb92d9b3d95c155c934143bbc2342d32c664d
|
|
| MD5 |
0d90e2c63e821bdfcb36cff8314abba0
|
|
| BLAKE2b-256 |
e11435a8f31b3e27fbdbaa87ff186d34571de0de03820a063dfe59bb065f739f
|
File details
Details for the file tawazi-0.6.2-py3-none-any.whl.
File metadata
- Download URL: tawazi-0.6.2-py3-none-any.whl
- Upload date:
- Size: 50.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.32.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
01f2a5c861d54333d64ed0f547cf15f424b176dd4a66fddfe7286b1bf8fe0678
|
|
| MD5 |
5e3391afa83787089cd193c6f1063c47
|
|
| BLAKE2b-256 |
98afb87a57362a994ac1baa5c7b3c863f8285c0f4a7470ab48574d816436c6da
|