1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
//! Exchange records between workers.
use crate::ExchangeData;
use crate::container::PushPartitioned;
use crate::dataflow::channels::pact::ExchangeCore;
use crate::dataflow::operators::generic::operator::Operator;
use crate::dataflow::{Scope, StreamCore};
/// Exchange records between workers.
pub trait Exchange<C: PushPartitioned> {
/// Exchange records between workers.
///
/// The closure supplied should map a reference to a record to a `u64`,
/// whose value determines to which worker the record will be routed.
///
/// # Examples
/// ```
/// use timely::dataflow::operators::{ToStream, Exchange, Inspect};
///
/// timely::example(|scope| {
/// (0..10).to_stream(scope)
/// .exchange(|x| *x)
/// .inspect(|x| println!("seen: {:?}", x));
/// });
/// ```
fn exchange<F: 'static>(&self, route: F) -> Self
where
for<'a> F: FnMut(&C::Item<'a>) -> u64;
}
impl<G: Scope, C> Exchange<C> for StreamCore<G, C>
where
C: PushPartitioned + ExchangeData,
{
fn exchange<F: 'static>(&self, route: F) -> StreamCore<G, C>
where
for<'a> F: FnMut(&C::Item<'a>) -> u64,
{
self.unary(ExchangeCore::new(route), "Exchange", |_, _| {
move |input, output| {
input.for_each(|time, data| {
output.session(&time).give_container(data);
});
}
})
}
}