Process Queue
Project description
processq package
This library allows you to do your tasks in multiple processes easily.
This is helpful when you have a lot of data to process.
Assume that you have a large list of items to process. You need to write a producer to put items in the queue one by one.
Workers will get data from the queue and then process it. Putting data into a queue should be quicker than processing it (worker).
Installation
pip install processq
Usage
- Import library
from processq import ProcessQueue
- Create a worker
- Create a worker function that gets the data as the first parameter
- Worker can be a normal function or a coroutine function
- Worker will be called in child processes
def worker(data):
pass
async def worker2(data):
pass
- Set process for a producer Apply the process for a producer:
-
a. Set the number of processes and the worker
-
b. Put data into the queue
-
You can also use ProcessQueue as a context manager
def producer():
# Start the queue
with ProcessQueue(40, worker) as pq:
...
pq.put(data)
- You can also use it async
async def producer():
# Start the queue
async with ProcessQueue(40, worker) as pq:
...
await pq.put(data)
- Run producer
- Async producer:
await producer()
or
asyncio.run(producer())
Note
- You can add more keyword params for all workers running in processes via
worker_params
- Apart from the number of processes and the worker, you can set
log_dir
to store logs to file - and
worker_params_builder
to generate parameters for each worker. on_process_close
is an optional param as a function that is helpful when you need to close the database connection when a process done- Apart from all the above params, the rest of the keyword params will be passed to the worker.
- If you change the lib from the 0.0.14 version to the newer, please update the code to fix the bug:
# 0.0.14
with ProcessQueue(num_of_processes, worker) as pq:
...
await pq.put(data)
# From 0.0.15
# Sync
with ProcessQueue(num_of_processes, worker) as pq:
...
pq.put(data)
# Async
async with ProcessQueue(num_of_processes, worker) as pq:
...
await pq.put(data)
- In both sync and async cases, you can provide a worker as an async function.
- The async version is a little bit better in performance because it uses
asyncio.sleep
to wait when the queue is full compared totime.sleep
in the sync version. In most cases, the difference in performance is not much.
Example
import json
import pymysql
import asyncio
from processq import ProcessQueue
NUM_OF_PROCESSES = 40
def get_db_connection():
return pymysql.connect(host='localhost',
user='root',
password='123456',
database='example',
cursorclass=pymysql.cursors.DictCursor)
# Build params for the worker, the params will be persistent with the process
# This function is called when init a new process or retry
def worker_params_builder():
# Processes use db connection separately
conn = get_db_connection()
conn.autocommit(1)
cursor = conn.cursor()
return {"cursor": cursor, "connection": conn}
# To clear resources: close database connection, ...
# This function is called when the process ends
def on_close_process(cursor, connection):
cursor.close()
connection.close()
def worker(image_info, cursor, uid: int, **kwargs):
# Update image info into database
sql = "UPDATE images SET width = %s, height = %s, uid = %s WHERE id = %s"
cursor.execute(sql, (image_info["width"], image_info["height"], uid, image_info["id"]))
def producer(source_file: str):
with ProcessQueue(
NUM_OF_PROCESSES, worker,
log_dir=f"logs/update-images",
worker_params_builder=worker_params_builder,
on_close_process=on_close_process,
params={"uid": 123},
retry_count=1
) as pq:
with open(source_file, 'r') as f:
for line in f:
if not line:
continue
data = json.loads(line)
pq.put(data)
if __name__ == "__main__":
producer("images.jsonl")
Development
Build project
- Update the version number in file
src/processq/__version__.py
- Update the Change log
- Build and publish the changes
python3 -m build
python3 -m twine upload dist/*
Release Information
Added
- Todo
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
processq-0.0.1.tar.gz
(7.0 kB
view details)
Built Distribution
File details
Details for the file processq-0.0.1.tar.gz
.
File metadata
- Download URL: processq-0.0.1.tar.gz
- Upload date:
- Size: 7.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9692d0ab17e2d608a6cbcdfad075a672e196e2982ebb450244180da1b3d08fba |
|
MD5 | 6ee09577b5a861d662c6aca3dfe2abdc |
|
BLAKE2b-256 | 3df7b51203c0c21718b99231b820d6d33b236828de220d5ff613a54c3a7698d5 |
File details
Details for the file processq-0.0.1-py3-none-any.whl
.
File metadata
- Download URL: processq-0.0.1-py3-none-any.whl
- Upload date:
- Size: 7.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 480994bbe86e769fc12bed15ed52d8c58ac9dd8b978903840b7cbc65ea5125a1 |
|
MD5 | 316393fa0d47a83179302c8ebf3d33d5 |
|
BLAKE2b-256 | 9bc8c8fbf61d4c3afa9ee2bbbec851e90cd597629d4c6d28fdbfca6adde1701b |