12 releases

0.4.2 Jan 7, 2022
0.4.1 Feb 1, 2021
0.4.0 Sep 24, 2020
0.3.5 Jul 21, 2020
0.3.0 Nov 13, 2019

#974 in Concurrency

Download history 36/week @ 2024-07-19 49/week @ 2024-07-26 106/week @ 2024-08-02 93/week @ 2024-08-09 51/week @ 2024-08-16 64/week @ 2024-08-23 80/week @ 2024-08-30 95/week @ 2024-09-06 49/week @ 2024-09-13 128/week @ 2024-09-20 151/week @ 2024-09-27 44/week @ 2024-10-04 66/week @ 2024-10-11 40/week @ 2024-10-18 28/week @ 2024-10-25 82/week @ 2024-11-01

218 downloads per month
Used in 10 crates (3 directly)

Apache-2.0/MIT

200KB
3.5K SLoC

Bastion Executor

Latest Release Crates.io
License Crates.io
Build Status Build Status
Downloads Crates.io
Discord

Bastion Executor is NUMA-aware SMP based Fault-tolerant Executor

Bastion Executor is a highly-available, fault-tolerant, async communication oriented executor. Bastion's main idea is supplying a fully async runtime with fault-tolerance to work on heavy loads.

Main differences between other executors are:

  • Uses SMP based execution scheme to exploit cache affinity on multiple cores and execution is equally distributed over the system resources, which means utilizing the all system.
  • Uses NUMA-aware allocation for scheduler's queues and exploit locality on server workloads.
  • Tailored for creating middleware and working with actor model like concurrency and distributed communication.

NOTE: Bastion Executor is independent of it's framework implementation. It uses lightproc to encapsulate and provide fault-tolerance to your future based workloads. You can use your futures with lightproc to run your workloads on Bastion Executor without the need to have framework.

Example Usage

use bastion_executor::prelude::*;
use lightproc::proc_stack::ProcStack;

fn main() {
    let pid = 1;
    let stack = ProcStack::default()
        .with_pid(pid)
        .with_after_panic(move || println!("after panic {}", pid.clone()));

    let handle = spawn(
        async {
            panic!("test");
        },
        stack,
    );

    let pid = 2;
    let stack = ProcStack::default().with_pid(pid);

    run(
        async {
            handle.await;
        },
        stack.clone(),
    );
}

Dependencies

~2.5–9MB
~85K SLoC