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