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