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