Files
neon/control_plane/src/lib.rs
Arseny Sher 32662ff1c4 Replace etcd with storage_broker.
This is the replacement itself, the binary landed earlier. See
docs/storage_broker.md.

ref
https://github.com/neondatabase/neon/pull/2466
https://github.com/neondatabase/neon/issues/2394
2022-12-12 13:30:16 +03:00

17 lines
349 B
Rust

//
// Local control plane.
//
// Can start, configure and stop postgres instances running as a local processes.
//
// Intended to be used in integration tests and in CLI tools for
// local installations.
//
mod background_process;
pub mod broker;
pub mod compute;
pub mod local_env;
pub mod pageserver;
pub mod postgresql_conf;
pub mod safekeeper;