#distributed #distributed-systems #cluster #compute #zk #task-execution #map-reduce

paladin-core

A Rust distributed algorithm toolkit. Write distributed algorithms without the complexities of distributed systems programming.

13 unstable releases (3 breaking)

0.4.2 Mar 11, 2024
0.4.1 Dec 3, 2023
0.3.3 Nov 24, 2023
0.2.0 Nov 16, 2023
0.1.3 Oct 29, 2023

#113 in Concurrency

Download history 1/week @ 2024-01-18 75/week @ 2024-02-15 26/week @ 2024-02-22 16/week @ 2024-02-29 191/week @ 2024-03-07 127/week @ 2024-03-14 9/week @ 2024-03-21 32/week @ 2024-03-28 57/week @ 2024-04-04 62/week @ 2024-04-11 115/week @ 2024-04-18

266 downloads per month

MIT/Apache

220KB
3K SLoC

Paladin

Bringing divine order to distributed computation.

Crates.io version docs.rs docs

Paladin in 2 sentences

Paladin is a Rust library that aims to simplify writing distributed programs. It provides a declarative API, allowing developers to articulate their distributed programs clearly and concisely, without thinking about the complexities of distributed systems programming.

Features

  • Declarative API: Express distributed computations with clarity and ease.
  • Automated Distribution: Paladin’s runtime seamlessly handles task distribution and execution across the cluster.
  • Simplified Development: Concentrate on the program logic, leaving the complexities of distributed systems to Paladin.
  • Infrastructure Agnostic: Paladin is generic over its messaging backend and infrastructure provider. Bring your own infra!

Example

Below is a (contrived) example of how a typical Paladin program looks.

#[tokio::main]
async fn main() {
    let stream = IndexedStream::from([1, 2, 3, 4, 5, 6, 7, 8, 9, 10]);
    // Compute the fibonacci number at each element in the stream.
    let fibs = stream.map(&FibAt);
    // Sum the fibonacci numbers.
    let sum = fibs.fold(&Sum);

    // Run the computation.
    let result = sum.run(&runtime).await.unwrap();
    assert_eq!(result, 143);
}

In this example program, we define an algorithm for computing the fibonacci number at each element in a stream, after which we sum the results. Behind the scenes, Paladin will distribute the computations across the cluster and return the result back to the main thread.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~22–36MB
~589K SLoC