Skip to main content

Pool executor supporting thread, process and async.

Project description

Build Status

HybridPoolExecutor

HybridPoolExecutor is a parallel executor that supports thead, process and async three operating models at the same time.

Example:

import asyncio
import time
import random

from hybrid_pool_executor import HybridPoolExecutor


def solve(v: int) -> int:
    print(f"You give worker a value {v}")
    time.sleep(random.randint(1, 4))
    print(f"The square of value {v} is {v * v}")
    return v


async def solve_async(v: int) -> int:
    print(f"You give async worker a value {v}")
    await asyncio.sleep(random.randint(1, 4))
    print(f"The square of value {v} is {v * v}")
    return v


async def main():
    pool = HybridPoolExecutor()

    # run in a thread
    future0 = pool.submit(solve, 0)

    # run in a process by setting "_mode" to "process"
    future1 = pool.submit(solve, 1, _mode="process")
    # or you can use a more precise approach: submit_task
    future2 = pool.submit_task(solve, kwargs={"v": 2}, mode="process")

    # run in an async worker
    future3 = pool.submit(solve_async, 3)  # run as a coroutine
    # you can also submit a coroutine
    future4 = pool.submit(solve_async(4))
    # async function/coroutine can be executed in thread/process too
    # run coroutine in a thread
    future5 = pool.submit(solve_async(5), _mode="thread")
    # or in a process
    future6 = pool.submit(solve_async, 6, _mode="process")

    # all futures can be get either synchronously or asynchronously
    await future0  # result from a thread worker
    await future1  # result from a process worker
    future2.result()  # result from a async worker
    # ......


if __name__ == "__main__":
    asyncio.run(main())

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

hybrid-pool-executor-0.0.3.tar.gz (30.1 kB view hashes)

Uploaded Source

Built Distribution

hybrid_pool_executor-0.0.3-py3-none-any.whl (28.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page