orca-control 0.2.8

Control plane: API server, reconciler, and cluster state management
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Raft consensus layer for multi-node cluster coordination.

pub mod api;
pub mod log_store;
pub mod network;
pub mod state_machine;
pub mod type_config;

use openraft::Raft;

use self::type_config::OrcaTypeConfig;

/// The concrete Raft node type used throughout the Orca control plane.
pub type OrcaRaft = Raft<OrcaTypeConfig>;