LCOV - code coverage report
Current view: top level - safekeeper/tests/walproposer_sim - safekeeper.rs (source / functions) Coverage Total Hit
Test: 046155f5c3321e806c1c5acca9ccd26414587b38.info Lines: 94.8 % 291 276
Test Date: 2025-03-27 12:42:09 Functions: 94.9 % 39 37

            Line data    Source code
       1              : //! Safekeeper communication endpoint to WAL proposer (compute node).
       2              : //! Gets messages from the network, passes them down to consensus module and
       3              : //! sends replies back.
       4              : 
       5              : use std::collections::HashMap;
       6              : use std::sync::Arc;
       7              : use std::time::Duration;
       8              : 
       9              : use anyhow::{Result, bail};
      10              : use bytes::{Bytes, BytesMut};
      11              : use camino::Utf8PathBuf;
      12              : use desim::executor::{self, PollSome};
      13              : use desim::network::TCP;
      14              : use desim::node_os::NodeOs;
      15              : use desim::proto::{AnyMessage, NetEvent, NodeEvent};
      16              : use http::Uri;
      17              : use safekeeper::SafeKeeperConf;
      18              : use safekeeper::safekeeper::{
      19              :     ProposerAcceptorMessage, SK_PROTO_VERSION_3, SafeKeeper, UNKNOWN_SERVER_VERSION,
      20              : };
      21              : use safekeeper::state::{TimelinePersistentState, TimelineState};
      22              : use safekeeper::timeline::TimelineError;
      23              : use safekeeper::wal_storage::Storage;
      24              : use safekeeper_api::ServerInfo;
      25              : use safekeeper_api::membership::Configuration;
      26              : use tracing::{debug, info_span, warn};
      27              : use utils::id::{NodeId, TenantId, TenantTimelineId, TimelineId};
      28              : use utils::lsn::Lsn;
      29              : 
      30              : use super::safekeeper_disk::{DiskStateStorage, DiskWALStorage, SafekeeperDisk, TimelineDisk};
      31              : 
      32              : struct SharedState {
      33              :     sk: SafeKeeper<DiskStateStorage, DiskWALStorage>,
      34              :     disk: Arc<TimelineDisk>,
      35              : }
      36              : 
      37              : struct GlobalMap {
      38              :     timelines: HashMap<TenantTimelineId, SharedState>,
      39              :     conf: SafeKeeperConf,
      40              :     disk: Arc<SafekeeperDisk>,
      41              : }
      42              : 
      43              : impl GlobalMap {
      44              :     /// Restores global state from disk.
      45         9438 :     fn new(disk: Arc<SafekeeperDisk>, conf: SafeKeeperConf) -> Result<Self> {
      46         9438 :         let mut timelines = HashMap::new();
      47              : 
      48         9438 :         for (&ttid, disk) in disk.timelines.lock().iter() {
      49         7092 :             debug!("loading timeline {}", ttid);
      50         7092 :             let state = disk.state.lock().clone();
      51         7092 : 
      52         7092 :             if state.server.wal_seg_size == 0 {
      53            0 :                 bail!(TimelineError::UninitializedWalSegSize(ttid));
      54         7092 :             }
      55         7092 : 
      56         7092 :             if state.server.pg_version == UNKNOWN_SERVER_VERSION {
      57            0 :                 bail!(TimelineError::UninitialinzedPgVersion(ttid));
      58         7092 :             }
      59         7092 : 
      60         7092 :             if state.commit_lsn < state.local_start_lsn {
      61            0 :                 bail!(
      62            0 :                     "commit_lsn {} is smaller than local_start_lsn {}",
      63            0 :                     state.commit_lsn,
      64            0 :                     state.local_start_lsn
      65            0 :                 );
      66         7092 :             }
      67         7092 : 
      68         7092 :             let control_store = DiskStateStorage::new(disk.clone());
      69         7092 :             let wal_store = DiskWALStorage::new(disk.clone(), &control_store)?;
      70              : 
      71         7092 :             let sk = SafeKeeper::new(TimelineState::new(control_store), wal_store, conf.my_id)?;
      72         7092 :             timelines.insert(
      73         7092 :                 ttid,
      74         7092 :                 SharedState {
      75         7092 :                     sk,
      76         7092 :                     disk: disk.clone(),
      77         7092 :                 },
      78         7092 :             );
      79              :         }
      80              : 
      81         9438 :         Ok(Self {
      82         9438 :             timelines,
      83         9438 :             conf,
      84         9438 :             disk,
      85         9438 :         })
      86         9438 :     }
      87              : 
      88         1434 :     fn create(&mut self, ttid: TenantTimelineId, server_info: ServerInfo) -> Result<()> {
      89         1434 :         if self.timelines.contains_key(&ttid) {
      90            0 :             bail!("timeline {} already exists", ttid);
      91         1434 :         }
      92         1434 : 
      93         1434 :         debug!("creating new timeline {}", ttid);
      94              : 
      95         1434 :         let commit_lsn = Lsn::INVALID;
      96         1434 :         let local_start_lsn = Lsn::INVALID;
      97              : 
      98         1434 :         let state = TimelinePersistentState::new(
      99         1434 :             &ttid,
     100         1434 :             Configuration::empty(),
     101         1434 :             server_info,
     102         1434 :             commit_lsn,
     103         1434 :             local_start_lsn,
     104         1434 :         )?;
     105              : 
     106         1434 :         let disk_timeline = self.disk.put_state(&ttid, state);
     107         1434 :         let control_store = DiskStateStorage::new(disk_timeline.clone());
     108         1434 :         let wal_store = DiskWALStorage::new(disk_timeline.clone(), &control_store)?;
     109              : 
     110         1434 :         let sk = SafeKeeper::new(
     111         1434 :             TimelineState::new(control_store),
     112         1434 :             wal_store,
     113         1434 :             self.conf.my_id,
     114         1434 :         )?;
     115              : 
     116         1434 :         self.timelines.insert(
     117         1434 :             ttid,
     118         1434 :             SharedState {
     119         1434 :                 sk,
     120         1434 :                 disk: disk_timeline,
     121         1434 :             },
     122         1434 :         );
     123         1434 :         Ok(())
     124         1434 :     }
     125              : 
     126        28229 :     fn get(&mut self, ttid: &TenantTimelineId) -> &mut SharedState {
     127        28229 :         self.timelines.get_mut(ttid).expect("timeline must exist")
     128        28229 :     }
     129              : 
     130        18421 :     fn has_tli(&self, ttid: &TenantTimelineId) -> bool {
     131        18421 :         self.timelines.contains_key(ttid)
     132        18421 :     }
     133              : }
     134              : 
     135              : /// State of a single connection to walproposer.
     136              : struct ConnState {
     137              :     tcp: TCP,
     138              : 
     139              :     greeting: bool,
     140              :     ttid: TenantTimelineId,
     141              :     flush_pending: bool,
     142              : 
     143              :     runtime: tokio::runtime::Runtime,
     144              : }
     145              : 
     146         9438 : pub fn run_server(os: NodeOs, disk: Arc<SafekeeperDisk>) -> Result<()> {
     147         9438 :     let _enter = info_span!("safekeeper", id = os.id()).entered();
     148         9438 :     debug!("started server");
     149         9438 :     os.log_event("started;safekeeper".to_owned());
     150         9438 :     let conf = SafeKeeperConf {
     151         9438 :         workdir: Utf8PathBuf::from("."),
     152         9438 :         my_id: NodeId(os.id() as u64),
     153         9438 :         listen_pg_addr: String::new(),
     154         9438 :         listen_http_addr: String::new(),
     155         9438 :         listen_https_addr: None,
     156         9438 :         no_sync: false,
     157         9438 :         broker_endpoint: "/".parse::<Uri>().unwrap(),
     158         9438 :         broker_keepalive_interval: Duration::from_secs(0),
     159         9438 :         heartbeat_timeout: Duration::from_secs(0),
     160         9438 :         remote_storage: None,
     161         9438 :         max_offloader_lag_bytes: 0,
     162         9438 :         wal_backup_enabled: false,
     163         9438 :         listen_pg_addr_tenant_only: None,
     164         9438 :         advertise_pg_addr: None,
     165         9438 :         availability_zone: None,
     166         9438 :         peer_recovery_enabled: false,
     167         9438 :         backup_parallel_jobs: 0,
     168         9438 :         pg_auth: None,
     169         9438 :         pg_tenant_only_auth: None,
     170         9438 :         http_auth: None,
     171         9438 :         sk_auth_token: None,
     172         9438 :         current_thread_runtime: false,
     173         9438 :         walsenders_keep_horizon: false,
     174         9438 :         partial_backup_timeout: Duration::from_secs(0),
     175         9438 :         disable_periodic_broker_push: false,
     176         9438 :         enable_offload: false,
     177         9438 :         delete_offloaded_wal: false,
     178         9438 :         control_file_save_interval: Duration::from_secs(1),
     179         9438 :         partial_backup_concurrency: 1,
     180         9438 :         eviction_min_resident: Duration::ZERO,
     181         9438 :         wal_reader_fanout: false,
     182         9438 :         max_delta_for_fanout: None,
     183         9438 :         ssl_key_file: Utf8PathBuf::from(""),
     184         9438 :         ssl_cert_file: Utf8PathBuf::from(""),
     185         9438 :         ssl_cert_reload_period: Duration::ZERO,
     186         9438 :         ssl_ca_certs: Vec::new(),
     187         9438 :     };
     188              : 
     189         9438 :     let mut global = GlobalMap::new(disk, conf.clone())?;
     190         9438 :     let mut conns: HashMap<usize, ConnState> = HashMap::new();
     191              : 
     192         9438 :     for (&_ttid, shared_state) in global.timelines.iter_mut() {
     193         7092 :         let flush_lsn = shared_state.sk.wal_store.flush_lsn();
     194         7092 :         let commit_lsn = shared_state.sk.state.commit_lsn;
     195         7092 :         os.log_event(format!("tli_loaded;{};{}", flush_lsn.0, commit_lsn.0));
     196         7092 :     }
     197              : 
     198         9438 :     let node_events = os.node_events();
     199         9438 :     let mut epoll_vec: Vec<Box<dyn PollSome>> = vec![];
     200         9438 :     let mut epoll_idx: Vec<usize> = vec![];
     201              : 
     202              :     // TODO: batch events processing (multiple events per tick)
     203              :     loop {
     204        70891 :         epoll_vec.clear();
     205        70891 :         epoll_idx.clear();
     206        70891 : 
     207        70891 :         // node events channel
     208        70891 :         epoll_vec.push(Box::new(node_events.clone()));
     209        70891 :         epoll_idx.push(0);
     210              : 
     211              :         // tcp connections
     212       236576 :         for conn in conns.values() {
     213       236576 :             epoll_vec.push(Box::new(conn.tcp.recv_chan()));
     214       236576 :             epoll_idx.push(conn.tcp.connection_id());
     215       236576 :         }
     216              : 
     217              :         // waiting for the next message
     218        70891 :         let index = executor::epoll_chans(&epoll_vec, -1).unwrap();
     219        70891 : 
     220        70891 :         if index == 0 {
     221              :             // got a new connection
     222        23589 :             match node_events.must_recv() {
     223        23589 :                 NodeEvent::Accept(tcp) => {
     224        23589 :                     conns.insert(
     225        23589 :                         tcp.connection_id(),
     226        23589 :                         ConnState {
     227        23589 :                             tcp,
     228        23589 :                             greeting: false,
     229        23589 :                             ttid: TenantTimelineId::empty(),
     230        23589 :                             flush_pending: false,
     231        23589 :                             runtime: tokio::runtime::Builder::new_current_thread().build()?,
     232              :                         },
     233              :                     );
     234              :                 }
     235            0 :                 NodeEvent::Internal(_) => unreachable!(),
     236              :             }
     237        23589 :             continue;
     238        47302 :         }
     239        47302 : 
     240        47302 :         let connection_id = epoll_idx[index];
     241        47302 :         let conn = conns.get_mut(&connection_id).unwrap();
     242        47302 :         let mut next_event = Some(conn.tcp.recv_chan().must_recv());
     243              : 
     244              :         loop {
     245        85815 :             let event = match next_event {
     246        48179 :                 Some(event) => event,
     247        37636 :                 None => break,
     248              :             };
     249              : 
     250        48179 :             match event {
     251        35146 :                 NetEvent::Message(msg) => {
     252        35146 :                     let res = conn.process_any(msg, &mut global);
     253        35146 :                     if res.is_err() {
     254         9666 :                         let e = res.unwrap_err();
     255         9666 :                         let estr = e.to_string();
     256         9666 :                         if !estr.contains("finished processing START_REPLICATION") {
     257         9438 :                             warn!("conn {:?} error: {:?}", connection_id, e);
     258            0 :                             panic!("unexpected error at safekeeper: {:#}", e);
     259          228 :                         }
     260          228 :                         conns.remove(&connection_id);
     261          228 :                         break;
     262        25480 :                     }
     263              :                 }
     264        13033 :                 NetEvent::Closed => {
     265        13033 :                     // TODO: remove from conns?
     266        13033 :                 }
     267              :             }
     268              : 
     269        38513 :             next_event = conn.tcp.recv_chan().try_recv();
     270              :         }
     271              : 
     272       153525 :         conns.retain(|_, conn| {
     273       153525 :             let res = conn.flush(&mut global);
     274       153525 :             if res.is_err() {
     275            0 :                 debug!("conn {:?} error: {:?}", conn.tcp, res);
     276       153525 :             }
     277       153525 :             res.is_ok()
     278       153525 :         });
     279              :     }
     280            0 : }
     281              : 
     282              : impl ConnState {
     283              :     /// Process a message from the network. It can be START_REPLICATION request or a valid ProposerAcceptorMessage message.
     284        25708 :     fn process_any(&mut self, any: AnyMessage, global: &mut GlobalMap) -> Result<()> {
     285        25708 :         if let AnyMessage::Bytes(copy_data) = any {
     286        25708 :             let repl_prefix = b"START_REPLICATION ";
     287        25708 :             if !self.greeting && copy_data.starts_with(repl_prefix) {
     288          228 :                 self.process_start_replication(copy_data.slice(repl_prefix.len()..), global)?;
     289          228 :                 bail!("finished processing START_REPLICATION")
     290        25480 :             }
     291              : 
     292        25480 :             let msg = ProposerAcceptorMessage::parse(copy_data, SK_PROTO_VERSION_3)?;
     293        25480 :             debug!("got msg: {:?}", msg);
     294        25480 :             self.process(msg, global)
     295              :         } else {
     296            0 :             bail!("unexpected message, expected AnyMessage::Bytes");
     297              :         }
     298        25708 :     }
     299              : 
     300              :     /// Process START_REPLICATION request.
     301          228 :     fn process_start_replication(
     302          228 :         &mut self,
     303          228 :         copy_data: Bytes,
     304          228 :         global: &mut GlobalMap,
     305          228 :     ) -> Result<()> {
     306              :         // format is "<tenant_id> <timeline_id> <start_lsn> <end_lsn>"
     307          228 :         let str = String::from_utf8(copy_data.to_vec())?;
     308              : 
     309          228 :         let mut parts = str.split(' ');
     310          228 :         let tenant_id = parts.next().unwrap().parse::<TenantId>()?;
     311          228 :         let timeline_id = parts.next().unwrap().parse::<TimelineId>()?;
     312          228 :         let start_lsn = parts.next().unwrap().parse::<u64>()?;
     313          228 :         let end_lsn = parts.next().unwrap().parse::<u64>()?;
     314              : 
     315          228 :         let ttid = TenantTimelineId::new(tenant_id, timeline_id);
     316          228 :         let shared_state = global.get(&ttid);
     317          228 : 
     318          228 :         // read bytes from start_lsn to end_lsn
     319          228 :         let mut buf = vec![0; (end_lsn - start_lsn) as usize];
     320          228 :         shared_state.disk.wal.lock().read(start_lsn, &mut buf);
     321          228 : 
     322          228 :         // send bytes to the client
     323          228 :         self.tcp.send(AnyMessage::Bytes(Bytes::from(buf)));
     324          228 :         Ok(())
     325          228 :     }
     326              : 
     327              :     /// Get or create a timeline.
     328        18421 :     fn init_timeline(
     329        18421 :         &mut self,
     330        18421 :         ttid: TenantTimelineId,
     331        18421 :         server_info: ServerInfo,
     332        18421 :         global: &mut GlobalMap,
     333        18421 :     ) -> Result<()> {
     334        18421 :         self.ttid = ttid;
     335        18421 :         if global.has_tli(&ttid) {
     336        16987 :             return Ok(());
     337         1434 :         }
     338         1434 : 
     339         1434 :         global.create(ttid, server_info)
     340        18421 :     }
     341              : 
     342              :     /// Process a ProposerAcceptorMessage.
     343        25480 :     fn process(&mut self, msg: ProposerAcceptorMessage, global: &mut GlobalMap) -> Result<()> {
     344        25480 :         if !self.greeting {
     345        18421 :             self.greeting = true;
     346        18421 : 
     347        18421 :             match msg {
     348        18421 :                 ProposerAcceptorMessage::Greeting(ref greeting) => {
     349        18421 :                     tracing::info!(
     350            0 :                         "start handshake with walproposer {:?} {:?}",
     351              :                         self.tcp,
     352              :                         greeting
     353              :                     );
     354        18421 :                     let server_info = ServerInfo {
     355        18421 :                         pg_version: greeting.pg_version,
     356        18421 :                         system_id: greeting.system_id,
     357        18421 :                         wal_seg_size: greeting.wal_seg_size,
     358        18421 :                     };
     359        18421 :                     let ttid = TenantTimelineId::new(greeting.tenant_id, greeting.timeline_id);
     360        18421 :                     self.init_timeline(ttid, server_info, global)?
     361              :                 }
     362              :                 _ => {
     363            0 :                     bail!("unexpected message {msg:?} instead of greeting");
     364              :                 }
     365              :             }
     366         7059 :         }
     367              : 
     368        25480 :         let tli = global.get(&self.ttid);
     369        25480 : 
     370        25480 :         match msg {
     371         3014 :             ProposerAcceptorMessage::AppendRequest(append_request) => {
     372         3014 :                 self.flush_pending = true;
     373         3014 :                 self.process_sk_msg(
     374         3014 :                     tli,
     375         3014 :                     &ProposerAcceptorMessage::NoFlushAppendRequest(append_request),
     376         3014 :                 )?;
     377              :             }
     378        22466 :             other => {
     379        22466 :                 self.process_sk_msg(tli, &other)?;
     380              :             }
     381              :         }
     382              : 
     383        25480 :         Ok(())
     384        25480 :     }
     385              : 
     386              :     /// Process FlushWAL if needed.
     387       153525 :     fn flush(&mut self, global: &mut GlobalMap) -> Result<()> {
     388       153525 :         // TODO: try to add extra flushes in simulation, to verify that extra flushes don't break anything
     389       153525 :         if !self.flush_pending {
     390       151004 :             return Ok(());
     391         2521 :         }
     392         2521 :         self.flush_pending = false;
     393         2521 :         let shared_state = global.get(&self.ttid);
     394         2521 :         self.process_sk_msg(shared_state, &ProposerAcceptorMessage::FlushWAL)
     395       153525 :     }
     396              : 
     397              :     /// Make safekeeper process a message and send a reply to the TCP
     398        28001 :     fn process_sk_msg(
     399        28001 :         &mut self,
     400        28001 :         shared_state: &mut SharedState,
     401        28001 :         msg: &ProposerAcceptorMessage,
     402        28001 :     ) -> Result<()> {
     403        28001 :         let mut reply = self.runtime.block_on(shared_state.sk.process_msg(msg))?;
     404        28001 :         if let Some(reply) = &mut reply {
     405              :             // TODO: if this is AppendResponse, fill in proper hot standby feedback and disk consistent lsn
     406              : 
     407        24231 :             let mut buf = BytesMut::with_capacity(128);
     408        24231 :             reply.serialize(&mut buf, SK_PROTO_VERSION_3)?;
     409              : 
     410        24231 :             self.tcp.send(AnyMessage::Bytes(buf.into()));
     411         3770 :         }
     412        28001 :         Ok(())
     413        28001 :     }
     414              : }
     415              : 
     416              : impl Drop for ConnState {
     417        23561 :     fn drop(&mut self) {
     418        23561 :         debug!("dropping conn: {:?}", self.tcp);
     419        23561 :         if !std::thread::panicking() {
     420          228 :             self.tcp.close();
     421        23333 :         }
     422              :         // TODO: clean up non-fsynced WAL
     423        23561 :     }
     424              : }
        

Generated by: LCOV version 2.1-beta