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

Generated by: LCOV version 2.1-beta