Skip to main content

tqueue package

This library allows you to do your tasks in multiple threads 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 tqueue

Usage

  1. Import library
from tqueue import ThreadingQueue
  1. 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 threads
def worker(data):
    pass
async def worker2(data):
    pass
  1. Set threading for a producer Apply the threading for a producer:
  • a. Set the number of threads and the worker

  • b. Put data into the queue

  • You can also use ThreadingQueue as a context manager

def producer():
    # Start the queue
    with ThreadingQueue(40, worker) as tq:
        ...
        tq.put(data)
  • You can also use it async
async def producer():
    # Start the queue
    async with ThreadingQueue(40, worker) as tq:
        ...
        await tq.put(data)
  1. Run producer
  • Async producer:
await producer()

or

asyncio.run(producer())

Note

  1. You can add more keyword params for all workers running in threads via worker_params
  2. Apart from the number of threads and the worker, you can set log_dir to store logs to file
  3. and worker_params_builder to generate parameters for each worker.
  4. on_thread_close is an optional param as a function that is helpful when you need to close the database connection when a thread done
  5. 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 ThreadingQueue(num_of_threads, worker) as tq:
    ...
    await tq.put(data)
# From 0.0.15

# Sync
with ThreadingQueue(num_of_threads, worker) as tq:
    ...
    tq.put(data)

# Async
async with ThreadingQueue(num_of_threads, worker) as tq:
    ...
    await tq.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 to time.sleep in the sync version. In most cases, the difference in performance is not much.

Example

import json
import pymysql
import asyncio

from tqueue import ThreadingQueue


NUM_OF_THREADS = 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 thread
# This function is called when init a new thread or retry
def worker_params_builder():
    # Threads 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 thread ends
def on_close_thread(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 ThreadingQueue(
        NUM_OF_THREADS, worker,
        log_dir=f"logs/update-images",
        worker_params_builder=worker_params_builder,
        on_close_thread=on_close_thread,
        params={"uid": 123},
        retry_count=1
    ) as tq:
        with open(source_file, 'r') as f:
            for line in f:
                if not line:
                    continue
                data = json.loads(line)
    
                tq.put(data)


if __name__ == "__main__":
    producer("images.jsonl")

Development

Build project

  1. Update the version number in file src/tqueue/__version__.py
  2. Update the Change log
  3. Build and publish the changes
python3 -m build
python3 -m twine upload dist/*

Release Information

Fixed

  • No exception when log to file anymore

Full changelog

Release files for tqueue 0.0.22

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for tqueue 0.0.22
File Size Uploaded
tqueue-0.0.22.tar.gz 7.5 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for tqueue 0.0.22
File Interpreter ABI Platform
tqueue-0.0.22-py3-none-any.whl Python 3 none any Details

Total release size: 15.1 kB

Release files / tqueue-0.0.22.tar.gz

Download URL tqueue-0.0.22.tar.gz
Size 7.5 kB
Tags Source
SHA-256 checksum
How to use checksums
05897566a417e433b1d479ebe92edf872f3c3e3d5507a0cd2874b808023b05ea
BLAKE2b-256 checksum
How to use checksums
6caf6294b40828e91efbc6690db72f66726ad58a85e161e2834e07045a542327
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / tqueue-0.0.22-py3-none-any.whl

Download URL tqueue-0.0.22-py3-none-any.whl
Size 7.6 kB
Tags Python 3
SHA-256 checksum
How to use checksums
de07b4087fabd8cdabdc6c4b257e6fe07a00c49eabae113610f19e2003f11985
BLAKE2b-256 checksum
How to use checksums
ab5b390570ee45c14ea035410a545f1924a54d5cb1f3d178adf7b6d6b081239c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release history Release notifications | RSS feed

This release

0.0.22 This release

2 release files

0.0.20

2 release files

0.0.19

2 release files

0.0.18

2 release files

0.0.17

2 release files

0.0.16

2 release files

0.0.15

2 release files

0.0.14

2 release files

0.0.13

2 release files

0.0.12

2 release files

0.0.11

2 release files

0.0.10

2 release files

0.0.9

2 release files

0.0.8

2 release files

0.0.7

2 release files

0.0.6

2 release files

0.0.5

2 release files

0.0.4

2 release files

0.0.3

2 release files

0.0.2

2 release files

0.0.1

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page