6 releases

0.1.5 Sep 14, 2023
0.1.4 Sep 14, 2023

#3 in #task-pool

Download history 132/week @ 2023-12-22 11/week @ 2023-12-29 94/week @ 2024-01-05 100/week @ 2024-01-12 431/week @ 2024-01-19 119/week @ 2024-01-26 26/week @ 2024-02-02 40/week @ 2024-02-09 50/week @ 2024-02-16 68/week @ 2024-02-23 137/week @ 2024-03-01 143/week @ 2024-03-08 84/week @ 2024-03-15 74/week @ 2024-03-22 160/week @ 2024-03-29 71/week @ 2024-04-05

400 downloads per month
Used in 9 crates (via busrt)

MIT license

13KB
300 lines

tokio-task-pool

Task pool for Tokio Runtime

https://crates.io/crates/tokio-task-pool

The problem

A typical pattern

loop {
    let (socket, _) = listener.accept().await.unwrap();
    tokio::spawn(async move {
        process(socket).await;
    });
}

is actually an anti-pattern which may break your production.

Why? Because this pattern behaves equally to an unbounded channel. If the producer has higher rate than consumers, it floods runtime with tasks and sooner or later causes memory overflow.

Solution

  • Use a pool of workers instead

  • Use task spawning but manually limit the number of active tasks with a semaphore

  • Use this crate which does the job out-of-the-box

Features provided

  • Pool objects with safe spawn methods, which automatically limit number of tasks

  • Tasks can be automatically aborted if run timeout is set, global or per task

Code example

Simple spawning is pretty similar to tokio::spawn, but async because the producer must be blocked until there is an empty task slot in the pool:

use std::time::Duration;
use tokio_task_pool::Pool;

#[tokio::main]
async fn main() {
    let pool = Pool::bounded(5)
        .with_spawn_timeout(Duration::from_secs(5))
        .with_run_timeout(Duration::from_secs(10));
    pool.spawn(async move {
        // do some job
    }).await.unwrap();
}

More tricks

Refer to the crate documentation.

Features

  • A "log" feature enables automatic error logging for timed out tasks (via the log crate)

Dependencies

~2.4–9.5MB
~58K SLoC