mirror of
https://github.com/neondatabase/neon.git
synced 2026-05-21 15:10:44 +00:00
pageserver and wal keeper. Also updated PageServerNode definition in control plane to account for that. resolves #303
22 lines
445 B
Rust
22 lines
445 B
Rust
//
|
|
use std::path::PathBuf;
|
|
use std::time::Duration;
|
|
|
|
pub mod receive_wal;
|
|
pub mod replication;
|
|
pub mod s3_offload;
|
|
pub mod send_wal;
|
|
pub mod timeline;
|
|
pub mod wal_service;
|
|
|
|
#[derive(Debug, Clone)]
|
|
pub struct WalAcceptorConf {
|
|
pub data_dir: PathBuf,
|
|
pub daemonize: bool,
|
|
pub no_sync: bool,
|
|
pub listen_addr: String,
|
|
pub pageserver_addr: Option<String>,
|
|
pub ttl: Option<Duration>,
|
|
pub recall_period: Option<Duration>,
|
|
}
|