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

Generated by: LCOV version 2.1-beta