20 releases

0.12.0 Mar 10, 2021
0.11.1 Nov 18, 2019
0.10.0 Jul 9, 2019
0.9.0 Mar 31, 2019
0.1.2 Nov 2, 2015

#219 in Memory management

Download history 653/week @ 2023-12-05 1334/week @ 2023-12-12 1985/week @ 2023-12-19 693/week @ 2023-12-26 1882/week @ 2024-01-02 879/week @ 2024-01-09 906/week @ 2024-01-16 993/week @ 2024-01-23 1057/week @ 2024-01-30 617/week @ 2024-02-06 617/week @ 2024-02-13 521/week @ 2024-02-20 368/week @ 2024-02-27 319/week @ 2024-03-05 400/week @ 2024-03-12 307/week @ 2024-03-19

1,442 downloads per month
Used in 13 crates (via timely)

MIT license

125KB
2K SLoC

A simple communication infrastructure providing typed exchange channels.

This crate is part of the timely dataflow system, used primarily for its inter-worker communication. It may be independently useful, but it is separated out mostly to make clear boundaries in the project.

Threads are spawned with an allocator::Generic, whose allocate method returns a pair of several send endpoints and one receive endpoint. Messages sent into a send endpoint will eventually be received by the corresponding worker, if it receives often enough. The point-to-point channels are each FIFO, but with no fairness guarantees.

To be communicated, a type must implement the Serialize trait when using the bincode feature or the Abomonation trait when not.

Channel endpoints also implement a lower-level push and pull interface (through the Push and Pull traits), which is used for more precise control of resources.

Examples

use timely_communication::Allocate;

// configure for two threads, just one process.
let config = timely_communication::Config::Process(2);

// initializes communication, spawns workers
let guards = timely_communication::initialize(config, |mut allocator| {
    println!("worker {} started", allocator.index());

    // allocates a pair of senders list and one receiver.
    let (mut senders, mut receiver) = allocator.allocate(0);

    // send typed data along each channel
    use timely_communication::Message;
    senders[0].send(Message::from_typed(format!("hello, {}", 0)));
    senders[1].send(Message::from_typed(format!("hello, {}", 1)));

    // no support for termination notification,
    // we have to count down ourselves.
    let mut expecting = 2;
    while expecting > 0 {

        allocator.receive();
        if let Some(message) = receiver.recv() {
            use std::ops::Deref;
            println!("worker {}: received: <{}>", allocator.index(), message.deref());
            expecting -= 1;
        }
        allocator.release();
    }

    // optionally, return something
    allocator.index()
});

// computation runs until guards are joined or dropped.
if let Ok(guards) = guards {
    for guard in guards.join() {
        println!("result: {:?}", guard);
    }
}
else { println!("error in computation"); }

The should produce output like:

worker 0 started
worker 1 started
worker 0: received: <hello, 0>
worker 1: received: <hello, 1>
worker 0: received: <hello, 0>
worker 1: received: <hello, 1>
result: Ok(0)
result: Ok(1)

Dependencies

~1–1.8MB
~36K SLoC