nodedb 0.4.0

Local-first, real-time, edge-to-cloud hybrid database for multi-modal workloads
Documentation
// SPDX-License-Identifier: BUSL-1.1

//! Protocol-neutral cluster DDL family: SHOW CLUSTER / SHOW NODES / SHOW
//! NODE / REMOVE NODE, SHOW RAFT GROUPS / SHOW RAFT GROUP / ALTER RAFT
//! GROUP, SHOW MIGRATIONS, REBALANCE, SHOW PEER HEALTH, SHOW RANGES, SHOW
//! ROUTING, SHOW SCHEMA VERSION.

mod health;
mod migration;
mod raft;
mod ranges;
mod rebalance_cmd;
mod routing_hint;
mod schema_version;
mod support;
mod topology;

pub use health::show_peer_health;
pub use migration::show_migrations;
pub use raft::{alter_raft_group, show_raft_group, show_raft_groups};
pub use ranges::show_ranges;
pub use rebalance_cmd::rebalance;
pub use routing_hint::show_routing;
pub use schema_version::show_schema_version;
pub use topology::{remove_node, show_cluster, show_node, show_nodes};