LCOV - code coverage report
Current view: top level - safekeeper/src - lib.rs (source / functions) Coverage Total Hit
Test: 322b88762cba8ea666f63cda880cccab6936bf37.info Lines: 42.2 % 83 35
Test Date: 2024-02-29 11:57:12 Functions: 33.3 % 12 4

            Line data    Source code
       1              : #![deny(clippy::undocumented_unsafe_blocks)]
       2              : use camino::Utf8PathBuf;
       3              : use once_cell::sync::Lazy;
       4              : use remote_storage::RemoteStorageConfig;
       5              : use tokio::runtime::Runtime;
       6              : 
       7              : use std::time::Duration;
       8              : use storage_broker::Uri;
       9              : 
      10              : use utils::{
      11              :     auth::SwappableJwtAuth,
      12              :     id::{NodeId, TenantId, TenantTimelineId},
      13              : };
      14              : 
      15              : mod auth;
      16              : pub mod broker;
      17              : pub mod control_file;
      18              : pub mod control_file_upgrade;
      19              : pub mod copy_timeline;
      20              : pub mod debug_dump;
      21              : pub mod handler;
      22              : pub mod http;
      23              : pub mod json_ctrl;
      24              : pub mod metrics;
      25              : pub mod patch_control_file;
      26              : pub mod pull_timeline;
      27              : pub mod receive_wal;
      28              : pub mod recovery;
      29              : pub mod remove_wal;
      30              : pub mod safekeeper;
      31              : pub mod send_wal;
      32              : pub mod state;
      33              : pub mod timeline;
      34              : pub mod wal_backup;
      35              : pub mod wal_service;
      36              : pub mod wal_storage;
      37              : 
      38              : mod timelines_global_map;
      39              : use std::sync::Arc;
      40              : pub use timelines_global_map::GlobalTimelines;
      41              : use utils::auth::JwtAuth;
      42              : 
      43              : pub mod defaults {
      44              :     pub use safekeeper_api::{
      45              :         DEFAULT_HTTP_LISTEN_ADDR, DEFAULT_HTTP_LISTEN_PORT, DEFAULT_PG_LISTEN_ADDR,
      46              :         DEFAULT_PG_LISTEN_PORT,
      47              :     };
      48              : 
      49              :     pub const DEFAULT_HEARTBEAT_TIMEOUT: &str = "5000ms";
      50              :     pub const DEFAULT_MAX_OFFLOADER_LAG_BYTES: u64 = 128 * (1 << 20);
      51              : }
      52              : 
      53        76413 : #[derive(Debug, Clone)]
      54              : pub struct SafeKeeperConf {
      55              :     // Repository directory, relative to current working directory.
      56              :     // Normally, the safekeeper changes the current working directory
      57              :     // to the repository, and 'workdir' is always '.'. But we don't do
      58              :     // that during unit testing, because the current directory is global
      59              :     // to the process but different unit tests work on different
      60              :     // data directories to avoid clashing with each other.
      61              :     pub workdir: Utf8PathBuf,
      62              :     pub my_id: NodeId,
      63              :     pub listen_pg_addr: String,
      64              :     pub listen_pg_addr_tenant_only: Option<String>,
      65              :     pub listen_http_addr: String,
      66              :     pub advertise_pg_addr: Option<String>,
      67              :     pub availability_zone: Option<String>,
      68              :     pub no_sync: bool,
      69              :     pub broker_endpoint: Uri,
      70              :     pub broker_keepalive_interval: Duration,
      71              :     pub heartbeat_timeout: Duration,
      72              :     pub peer_recovery_enabled: bool,
      73              :     pub remote_storage: Option<RemoteStorageConfig>,
      74              :     pub max_offloader_lag_bytes: u64,
      75              :     pub backup_parallel_jobs: usize,
      76              :     pub wal_backup_enabled: bool,
      77              :     pub pg_auth: Option<Arc<JwtAuth>>,
      78              :     pub pg_tenant_only_auth: Option<Arc<JwtAuth>>,
      79              :     pub http_auth: Option<Arc<SwappableJwtAuth>>,
      80              :     pub current_thread_runtime: bool,
      81              :     pub walsenders_keep_horizon: bool,
      82              : }
      83              : 
      84              : impl SafeKeeperConf {
      85           24 :     pub fn tenant_dir(&self, tenant_id: &TenantId) -> Utf8PathBuf {
      86           24 :         self.workdir.join(tenant_id.to_string())
      87           24 :     }
      88              : 
      89           24 :     pub fn timeline_dir(&self, ttid: &TenantTimelineId) -> Utf8PathBuf {
      90           24 :         self.tenant_dir(&ttid.tenant_id)
      91           24 :             .join(ttid.timeline_id.to_string())
      92           24 :     }
      93              : 
      94            0 :     pub fn is_wal_backup_enabled(&self) -> bool {
      95            0 :         self.remote_storage.is_some() && self.wal_backup_enabled
      96            0 :     }
      97              : }
      98              : 
      99              : impl SafeKeeperConf {
     100              :     #[cfg(test)]
     101            4 :     fn dummy() -> Self {
     102            4 :         SafeKeeperConf {
     103            4 :             workdir: Utf8PathBuf::from("./"),
     104            4 :             no_sync: false,
     105            4 :             listen_pg_addr: defaults::DEFAULT_PG_LISTEN_ADDR.to_string(),
     106            4 :             listen_pg_addr_tenant_only: None,
     107            4 :             listen_http_addr: defaults::DEFAULT_HTTP_LISTEN_ADDR.to_string(),
     108            4 :             advertise_pg_addr: None,
     109            4 :             availability_zone: None,
     110            4 :             remote_storage: None,
     111            4 :             my_id: NodeId(0),
     112            4 :             broker_endpoint: storage_broker::DEFAULT_ENDPOINT
     113            4 :                 .parse()
     114            4 :                 .expect("failed to parse default broker endpoint"),
     115            4 :             broker_keepalive_interval: Duration::from_secs(5),
     116            4 :             peer_recovery_enabled: true,
     117            4 :             wal_backup_enabled: true,
     118            4 :             backup_parallel_jobs: 1,
     119            4 :             pg_auth: None,
     120            4 :             pg_tenant_only_auth: None,
     121            4 :             http_auth: None,
     122            4 :             heartbeat_timeout: Duration::new(5, 0),
     123            4 :             max_offloader_lag_bytes: defaults::DEFAULT_MAX_OFFLOADER_LAG_BYTES,
     124            4 :             current_thread_runtime: false,
     125            4 :             walsenders_keep_horizon: false,
     126            4 :         }
     127            4 :     }
     128              : }
     129              : 
     130              : // Tokio runtimes.
     131            0 : pub static WAL_SERVICE_RUNTIME: Lazy<Runtime> = Lazy::new(|| {
     132            0 :     tokio::runtime::Builder::new_multi_thread()
     133            0 :         .thread_name("WAL service worker")
     134            0 :         .enable_all()
     135            0 :         .build()
     136            0 :         .expect("Failed to create WAL service runtime")
     137            0 : });
     138              : 
     139            0 : pub static HTTP_RUNTIME: Lazy<Runtime> = Lazy::new(|| {
     140            0 :     tokio::runtime::Builder::new_multi_thread()
     141            0 :         .thread_name("HTTP worker")
     142            0 :         .enable_all()
     143            0 :         .build()
     144            0 :         .expect("Failed to create WAL service runtime")
     145            0 : });
     146              : 
     147            0 : pub static BROKER_RUNTIME: Lazy<Runtime> = Lazy::new(|| {
     148            0 :     tokio::runtime::Builder::new_multi_thread()
     149            0 :         .thread_name("broker worker")
     150            0 :         .worker_threads(2) // there are only 2 tasks, having more threads doesn't make sense
     151            0 :         .enable_all()
     152            0 :         .build()
     153            0 :         .expect("Failed to create broker runtime")
     154            0 : });
     155              : 
     156            0 : pub static WAL_REMOVER_RUNTIME: Lazy<Runtime> = Lazy::new(|| {
     157            0 :     tokio::runtime::Builder::new_multi_thread()
     158            0 :         .thread_name("WAL remover")
     159            0 :         .worker_threads(1)
     160            0 :         .enable_all()
     161            0 :         .build()
     162            0 :         .expect("Failed to create broker runtime")
     163            0 : });
     164              : 
     165            0 : pub static WAL_BACKUP_RUNTIME: Lazy<Runtime> = Lazy::new(|| {
     166            0 :     tokio::runtime::Builder::new_multi_thread()
     167            0 :         .thread_name("WAL backup worker")
     168            0 :         .enable_all()
     169            0 :         .build()
     170            0 :         .expect("Failed to create WAL backup runtime")
     171            0 : });
     172              : 
     173            0 : pub static METRICS_SHIFTER_RUNTIME: Lazy<Runtime> = Lazy::new(|| {
     174            0 :     tokio::runtime::Builder::new_multi_thread()
     175            0 :         .thread_name("metric shifter")
     176            0 :         .worker_threads(1)
     177            0 :         .enable_all()
     178            0 :         .build()
     179            0 :         .expect("Failed to create broker runtime")
     180            0 : });
        

Generated by: LCOV version 2.1-beta