Line data Source code
1 : use std::cell::{RefCell, RefMut, UnsafeCell};
2 : use std::ffi::CStr;
3 : use std::sync::Arc;
4 :
5 : use bytes::Bytes;
6 : use desim::executor::{self, PollSome};
7 : use desim::network::TCP;
8 : use desim::node_os::NodeOs;
9 : use desim::proto::{AnyMessage, NetEvent, NodeEvent};
10 : use desim::world::NodeId;
11 : use tracing::debug;
12 : use utils::lsn::Lsn;
13 : use walproposer::api_bindings::Level;
14 : use walproposer::bindings::{
15 : NeonWALReadResult, SafekeeperStateDesiredEvents, WL_SOCKET_READABLE, WL_SOCKET_WRITEABLE,
16 : };
17 : use walproposer::walproposer::{ApiImpl, Config};
18 :
19 : use super::walproposer_disk::DiskWalProposer;
20 :
21 : /// Special state for each wp->sk connection.
22 : struct SafekeeperConn {
23 : host: String,
24 : port: String,
25 : node_id: NodeId,
26 : // socket is Some(..) equals to connection is established
27 : socket: Option<TCP>,
28 : // connection is in progress
29 : is_connecting: bool,
30 : // START_WAL_PUSH is in progress
31 : is_start_wal_push: bool,
32 : // pointer to Safekeeper in walproposer for callbacks
33 : raw_ptr: *mut walproposer::bindings::Safekeeper,
34 : }
35 :
36 : impl SafekeeperConn {
37 27738 : pub fn new(host: String, port: String) -> Self {
38 : // port number is the same as NodeId
39 27738 : let port_num = port.parse::<u32>().unwrap();
40 27738 : Self {
41 27738 : host,
42 27738 : port,
43 27738 : node_id: port_num,
44 27738 : socket: None,
45 27738 : is_connecting: false,
46 27738 : is_start_wal_push: false,
47 27738 : raw_ptr: std::ptr::null_mut(),
48 27738 : }
49 27738 : }
50 : }
51 :
52 : /// Simulation version of a postgres WaitEventSet. At pos 0 there is always
53 : /// a special NodeEvents channel, which is used as a latch.
54 : struct EventSet {
55 : os: NodeOs,
56 : // all pollable channels, 0 is always NodeEvent channel
57 : chans: Vec<Box<dyn PollSome>>,
58 : // 0 is always nullptr
59 : sk_ptrs: Vec<*mut walproposer::bindings::Safekeeper>,
60 : // event mask for each channel
61 : masks: Vec<u32>,
62 : }
63 :
64 : impl EventSet {
65 9246 : pub fn new(os: NodeOs) -> Self {
66 9246 : let node_events = os.node_events();
67 9246 : Self {
68 9246 : os,
69 9246 : chans: vec![Box::new(node_events)],
70 9246 : sk_ptrs: vec![std::ptr::null_mut()],
71 9246 : masks: vec![WL_SOCKET_READABLE],
72 9246 : }
73 9246 : }
74 :
75 : /// Leaves all readable channels at the beginning of the array.
76 29755 : fn sort_readable(&mut self) -> usize {
77 29755 : let mut cnt = 1;
78 71335 : for i in 1..self.chans.len() {
79 71335 : if self.masks[i] & WL_SOCKET_READABLE != 0 {
80 71335 : self.chans.swap(i, cnt);
81 71335 : self.sk_ptrs.swap(i, cnt);
82 71335 : self.masks.swap(i, cnt);
83 71335 : cnt += 1;
84 71335 : }
85 : }
86 29755 : cnt
87 29755 : }
88 :
89 67553 : fn update_event_set(&mut self, conn: &SafekeeperConn, event_mask: u32) {
90 67553 : let index = self
91 67553 : .sk_ptrs
92 67553 : .iter()
93 255513 : .position(|&ptr| ptr == conn.raw_ptr)
94 67553 : .expect("safekeeper should exist in event set");
95 67553 : self.masks[index] = event_mask;
96 67553 : }
97 :
98 61806 : fn add_safekeeper(&mut self, sk: &SafekeeperConn, event_mask: u32) {
99 149510 : for ptr in self.sk_ptrs.iter() {
100 149510 : assert!(*ptr != sk.raw_ptr);
101 : }
102 :
103 61806 : self.chans.push(Box::new(
104 61806 : sk.socket
105 61806 : .as_ref()
106 61806 : .expect("socket should not be closed")
107 61806 : .recv_chan(),
108 61806 : ));
109 61806 : self.sk_ptrs.push(sk.raw_ptr);
110 61806 : self.masks.push(event_mask);
111 61806 : }
112 :
113 39072 : fn remove_safekeeper(&mut self, sk: &SafekeeperConn) {
114 83091 : let index = self.sk_ptrs.iter().position(|&ptr| ptr == sk.raw_ptr);
115 39072 : if index.is_none() {
116 6 : debug!("remove_safekeeper: sk={:?} not found", sk.raw_ptr);
117 6 : return;
118 39066 : }
119 39066 : let index = index.unwrap();
120 :
121 39066 : self.chans.remove(index);
122 39066 : self.sk_ptrs.remove(index);
123 39066 : self.masks.remove(index);
124 :
125 : // to simulate the actual behaviour
126 39066 : self.refresh_event_set();
127 39072 : }
128 :
129 : /// Updates all masks to match the result of a SafekeeperStateDesiredEvents.
130 46992 : fn refresh_event_set(&mut self) {
131 135985 : for (i, mask) in self.masks.iter_mut().enumerate() {
132 135985 : if i == 0 {
133 46992 : continue;
134 88993 : }
135 :
136 88993 : let mut mask_sk: u32 = 0;
137 88993 : let mut mask_nwr: u32 = 0;
138 88993 : unsafe { SafekeeperStateDesiredEvents(self.sk_ptrs[i], &mut mask_sk, &mut mask_nwr) };
139 :
140 88993 : if mask_sk != *mask {
141 0 : debug!(
142 0 : "refresh_event_set: sk={:?}, old_mask={:#b}, new_mask={:#b}",
143 0 : self.sk_ptrs[i], *mask, mask_sk
144 : );
145 0 : *mask = mask_sk;
146 88993 : }
147 : }
148 46992 : }
149 :
150 : /// Wait for events on all channels.
151 29755 : fn wait(&mut self, timeout_millis: i64) -> walproposer::walproposer::WaitResult {
152 : // all channels are always writeable
153 101090 : for (i, mask) in self.masks.iter().enumerate() {
154 101090 : if *mask & WL_SOCKET_WRITEABLE != 0 {
155 0 : return walproposer::walproposer::WaitResult::Network(
156 0 : self.sk_ptrs[i],
157 0 : WL_SOCKET_WRITEABLE,
158 0 : );
159 101090 : }
160 : }
161 :
162 29755 : let cnt = self.sort_readable();
163 :
164 29755 : let slice = &self.chans[0..cnt];
165 29755 : match executor::epoll_chans(slice, timeout_millis) {
166 11514 : None => walproposer::walproposer::WaitResult::Timeout,
167 : Some(0) => {
168 578 : let msg = self.os.node_events().must_recv();
169 578 : match msg {
170 578 : NodeEvent::Internal(AnyMessage::Just32(0)) => {
171 578 : // got a notification about new WAL available
172 578 : }
173 0 : NodeEvent::Internal(_) => unreachable!(),
174 0 : NodeEvent::Accept(_) => unreachable!(),
175 : }
176 578 : walproposer::walproposer::WaitResult::Latch
177 : }
178 17663 : Some(index) => walproposer::walproposer::WaitResult::Network(
179 17663 : self.sk_ptrs[index],
180 17663 : WL_SOCKET_READABLE,
181 17663 : ),
182 : }
183 29755 : }
184 : }
185 :
186 : /// This struct handles all calls from walproposer into walproposer_api.
187 : pub struct SimulationApi {
188 : os: NodeOs,
189 : safekeepers: RefCell<Vec<SafekeeperConn>>,
190 : disk: Arc<DiskWalProposer>,
191 : redo_start_lsn: Option<Lsn>,
192 : last_logged_commit_lsn: u64,
193 : shmem: UnsafeCell<walproposer::bindings::WalproposerShmemState>,
194 : config: Config,
195 : event_set: RefCell<Option<EventSet>>,
196 : }
197 :
198 : pub struct Args {
199 : pub os: NodeOs,
200 : pub config: Config,
201 : pub disk: Arc<DiskWalProposer>,
202 : pub redo_start_lsn: Option<Lsn>,
203 : }
204 :
205 : impl SimulationApi {
206 9246 : pub fn new(args: Args) -> Self {
207 : // initialize connection state for each safekeeper
208 9246 : let sk_conns = args
209 9246 : .config
210 9246 : .safekeepers_list
211 9246 : .iter()
212 27738 : .map(|s| {
213 27738 : SafekeeperConn::new(
214 27738 : s.split(':').next().unwrap().to_string(),
215 27738 : s.split(':').nth(1).unwrap().to_string(),
216 : )
217 27738 : })
218 9246 : .collect::<Vec<_>>();
219 :
220 9246 : Self {
221 9246 : os: args.os,
222 9246 : safekeepers: RefCell::new(sk_conns),
223 9246 : disk: args.disk,
224 9246 : redo_start_lsn: args.redo_start_lsn,
225 9246 : last_logged_commit_lsn: 0,
226 9246 : shmem: UnsafeCell::new(walproposer::api_bindings::empty_shmem()),
227 9246 : config: args.config,
228 9246 : event_set: RefCell::new(None),
229 9246 : }
230 9246 : }
231 :
232 : /// Get SafekeeperConn for the given Safekeeper.
233 306967 : fn get_conn(&self, sk: &mut walproposer::bindings::Safekeeper) -> RefMut<'_, SafekeeperConn> {
234 306967 : let sk_port = unsafe { CStr::from_ptr(sk.port).to_str().unwrap() };
235 306967 : let state = self.safekeepers.borrow_mut();
236 306967 : RefMut::map(state, |v| {
237 306967 : v.iter_mut()
238 613875 : .find(|conn| conn.port == sk_port)
239 306967 : .expect("safekeeper conn not found by port")
240 306967 : })
241 306967 : }
242 : }
243 :
244 : impl ApiImpl for SimulationApi {
245 328800 : fn get_current_timestamp(&self) -> i64 {
246 328800 : debug!("get_current_timestamp");
247 : // PG TimestampTZ is microseconds, but simulation unit is assumed to be
248 : // milliseconds, so add 10^3
249 328800 : self.os.now() as i64 * 1000
250 328800 : }
251 :
252 1157 : fn update_donor(&self, donor: &mut walproposer::bindings::Safekeeper, donor_lsn: u64) {
253 1157 : let mut shmem = unsafe { *self.get_shmem_state() };
254 1157 : shmem.propEpochStartLsn.value = donor_lsn;
255 1157 : shmem.donor_conninfo = donor.conninfo;
256 1157 : }
257 :
258 34358 : fn conn_status(
259 34358 : &self,
260 34358 : _: &mut walproposer::bindings::Safekeeper,
261 34358 : ) -> walproposer::bindings::WalProposerConnStatusType {
262 34358 : debug!("conn_status");
263 : // break the connection with a 10% chance
264 34358 : if self.os.random(100) < 10 {
265 3455 : walproposer::bindings::WalProposerConnStatusType_WP_CONNECTION_BAD
266 : } else {
267 30903 : walproposer::bindings::WalProposerConnStatusType_WP_CONNECTION_OK
268 : }
269 34358 : }
270 :
271 34358 : fn conn_connect_start(&self, sk: &mut walproposer::bindings::Safekeeper) {
272 34358 : debug!("conn_connect_start");
273 34358 : let mut conn = self.get_conn(sk);
274 :
275 34358 : assert!(conn.socket.is_none());
276 34358 : let socket = self.os.open_tcp(conn.node_id);
277 34358 : conn.socket = Some(socket);
278 34358 : conn.raw_ptr = sk;
279 34358 : conn.is_connecting = true;
280 34358 : }
281 :
282 30903 : fn conn_connect_poll(
283 30903 : &self,
284 30903 : _: &mut walproposer::bindings::Safekeeper,
285 30903 : ) -> walproposer::bindings::WalProposerConnectPollStatusType {
286 30903 : debug!("conn_connect_poll");
287 : // TODO: break the connection here
288 30903 : walproposer::bindings::WalProposerConnectPollStatusType_WP_CONN_POLLING_OK
289 30903 : }
290 :
291 30903 : fn conn_send_query(&self, sk: &mut walproposer::bindings::Safekeeper, query: &str) -> bool {
292 30903 : debug!("conn_send_query: {}", query);
293 30903 : self.get_conn(sk).is_start_wal_push = true;
294 30903 : true
295 30903 : }
296 :
297 30903 : fn conn_get_query_result(
298 30903 : &self,
299 30903 : _: &mut walproposer::bindings::Safekeeper,
300 30903 : ) -> walproposer::bindings::WalProposerExecStatusType {
301 30903 : debug!("conn_get_query_result");
302 : // TODO: break the connection here
303 30903 : walproposer::bindings::WalProposerExecStatusType_WP_EXEC_SUCCESS_COPYBOTH
304 30903 : }
305 :
306 20314 : fn conn_async_read(
307 20314 : &self,
308 20314 : sk: &mut walproposer::bindings::Safekeeper,
309 20314 : vec: &mut Vec<u8>,
310 20314 : ) -> walproposer::bindings::PGAsyncReadResult {
311 20314 : debug!("conn_async_read");
312 20314 : let mut conn = self.get_conn(sk);
313 :
314 20314 : let socket = if let Some(socket) = conn.socket.as_mut() {
315 20314 : socket
316 : } else {
317 : // socket is already closed
318 0 : return walproposer::bindings::PGAsyncReadResult_PG_ASYNC_READ_FAIL;
319 : };
320 :
321 20314 : let msg = socket.recv_chan().try_recv();
322 :
323 17524 : match msg {
324 : None => {
325 : // no message is ready
326 2790 : walproposer::bindings::PGAsyncReadResult_PG_ASYNC_READ_TRY_AGAIN
327 : }
328 : Some(NetEvent::Closed) => {
329 : // connection is closed
330 7878 : debug!("conn_async_read: connection is closed");
331 7878 : conn.socket = None;
332 7878 : walproposer::bindings::PGAsyncReadResult_PG_ASYNC_READ_FAIL
333 : }
334 9646 : Some(NetEvent::Message(msg)) => {
335 : // got a message
336 9646 : let b = match msg {
337 9646 : desim::proto::AnyMessage::Bytes(b) => b,
338 0 : _ => unreachable!(),
339 : };
340 9646 : vec.extend_from_slice(&b);
341 9646 : walproposer::bindings::PGAsyncReadResult_PG_ASYNC_READ_SUCCESS
342 : }
343 : }
344 20314 : }
345 :
346 34696 : fn conn_blocking_write(&self, sk: &mut walproposer::bindings::Safekeeper, buf: &[u8]) -> bool {
347 34696 : let mut conn = self.get_conn(sk);
348 34696 : debug!("conn_blocking_write to {}: {:?}", conn.node_id, buf);
349 34696 : let socket = conn.socket.as_mut().unwrap();
350 34696 : socket.send(desim::proto::AnyMessage::Bytes(Bytes::copy_from_slice(buf)));
351 34696 : true
352 34696 : }
353 :
354 6313 : fn conn_async_write(
355 6313 : &self,
356 6313 : sk: &mut walproposer::bindings::Safekeeper,
357 6313 : buf: &[u8],
358 6313 : ) -> walproposer::bindings::PGAsyncWriteResult {
359 6313 : let mut conn = self.get_conn(sk);
360 6313 : debug!("conn_async_write to {}: {:?}", conn.node_id, buf);
361 6313 : if let Some(socket) = conn.socket.as_mut() {
362 6313 : socket.send(desim::proto::AnyMessage::Bytes(Bytes::copy_from_slice(buf)));
363 6313 : } else {
364 : // connection is already closed
365 0 : debug!("conn_async_write: writing to a closed socket!");
366 : // TODO: maybe we should return error here?
367 : }
368 6313 : walproposer::bindings::PGAsyncWriteResult_PG_ASYNC_WRITE_SUCCESS
369 6313 : }
370 :
371 1177 : fn wal_reader_allocate(&self, _: &mut walproposer::bindings::Safekeeper) -> NeonWALReadResult {
372 1177 : debug!("wal_reader_allocate");
373 1177 : walproposer::bindings::NeonWALReadResult_NEON_WALREAD_SUCCESS
374 1177 : }
375 :
376 1270 : fn wal_read(
377 1270 : &self,
378 1270 : _sk: &mut walproposer::bindings::Safekeeper,
379 1270 : buf: &mut [u8],
380 1270 : startpos: u64,
381 1270 : ) -> NeonWALReadResult {
382 1270 : self.disk.lock().read(startpos, buf);
383 1270 : walproposer::bindings::NeonWALReadResult_NEON_WALREAD_SUCCESS
384 1270 : }
385 :
386 9246 : fn init_event_set(&self, _: &mut walproposer::bindings::WalProposer) {
387 9246 : debug!("init_event_set");
388 9246 : let new_event_set = EventSet::new(self.os.clone());
389 9246 : let old_event_set = self.event_set.replace(Some(new_event_set));
390 9246 : assert!(old_event_set.is_none());
391 9246 : }
392 :
393 67553 : fn update_event_set(&self, sk: &mut walproposer::bindings::Safekeeper, event_mask: u32) {
394 67553 : debug!(
395 0 : "update_event_set, sk={:?}, events_mask={:#b}",
396 0 : sk as *mut walproposer::bindings::Safekeeper, event_mask
397 : );
398 67553 : let conn = self.get_conn(sk);
399 :
400 67553 : self.event_set
401 67553 : .borrow_mut()
402 67553 : .as_mut()
403 67553 : .unwrap()
404 67553 : .update_event_set(&conn, event_mask);
405 67553 : }
406 :
407 61806 : fn add_safekeeper_event_set(
408 61806 : &self,
409 61806 : sk: &mut walproposer::bindings::Safekeeper,
410 61806 : event_mask: u32,
411 61806 : ) {
412 61806 : debug!(
413 0 : "add_safekeeper_event_set, sk={:?}, events_mask={:#b}",
414 0 : sk as *mut walproposer::bindings::Safekeeper, event_mask
415 : );
416 :
417 61806 : self.event_set
418 61806 : .borrow_mut()
419 61806 : .as_mut()
420 61806 : .unwrap()
421 61806 : .add_safekeeper(&self.get_conn(sk), event_mask);
422 61806 : }
423 :
424 39072 : fn rm_safekeeper_event_set(&self, sk: &mut walproposer::bindings::Safekeeper) {
425 39072 : debug!(
426 0 : "rm_safekeeper_event_set, sk={:?}",
427 0 : sk as *mut walproposer::bindings::Safekeeper,
428 : );
429 :
430 39072 : self.event_set
431 39072 : .borrow_mut()
432 39072 : .as_mut()
433 39072 : .unwrap()
434 39072 : .remove_safekeeper(&self.get_conn(sk));
435 39072 : }
436 :
437 7926 : fn active_state_update_event_set(&self, sk: &mut walproposer::bindings::Safekeeper) {
438 7926 : debug!("active_state_update_event_set");
439 :
440 7926 : assert!(sk.state == walproposer::bindings::SafekeeperState_SS_ACTIVE);
441 7926 : self.event_set
442 7926 : .borrow_mut()
443 7926 : .as_mut()
444 7926 : .unwrap()
445 7926 : .refresh_event_set();
446 7926 : }
447 :
448 23834 : fn wal_reader_events(&self, _sk: &mut walproposer::bindings::Safekeeper) -> u32 {
449 23834 : 0
450 23834 : }
451 :
452 91561 : fn wait_event_set(
453 91561 : &self,
454 91561 : _: &mut walproposer::bindings::WalProposer,
455 91561 : timeout_millis: i64,
456 91561 : ) -> walproposer::walproposer::WaitResult {
457 : // TODO: handle multiple stages as part of the simulation (e.g. connect, start_wal_push, etc)
458 91561 : let mut conns = self.safekeepers.borrow_mut();
459 212895 : for conn in conns.iter_mut() {
460 212895 : if conn.socket.is_some() && conn.is_connecting {
461 30903 : conn.is_connecting = false;
462 30903 : debug!("wait_event_set, connecting to {}:{}", conn.host, conn.port);
463 30903 : return walproposer::walproposer::WaitResult::Network(
464 30903 : conn.raw_ptr,
465 30903 : WL_SOCKET_READABLE | WL_SOCKET_WRITEABLE,
466 30903 : );
467 181992 : }
468 181992 : if conn.socket.is_some() && conn.is_start_wal_push {
469 30903 : conn.is_start_wal_push = false;
470 30903 : debug!(
471 0 : "wait_event_set, start wal push to {}:{}",
472 : conn.host, conn.port
473 : );
474 30903 : return walproposer::walproposer::WaitResult::Network(
475 30903 : conn.raw_ptr,
476 30903 : WL_SOCKET_READABLE,
477 30903 : );
478 151089 : }
479 : }
480 29755 : drop(conns);
481 :
482 29755 : let res = self
483 29755 : .event_set
484 29755 : .borrow_mut()
485 29755 : .as_mut()
486 29755 : .unwrap()
487 29755 : .wait(timeout_millis);
488 :
489 29755 : debug!(
490 0 : "wait_event_set, timeout_millis={}, res={:?}",
491 : timeout_millis, res,
492 : );
493 29755 : res
494 91561 : }
495 :
496 0 : fn strong_random(&self, buf: &mut [u8]) -> bool {
497 0 : debug!("strong_random");
498 0 : buf.fill(0);
499 0 : true
500 0 : }
501 :
502 377 : fn finish_sync_safekeepers(&self, lsn: u64) -> ! {
503 377 : debug!("finish_sync_safekeepers, lsn={}", lsn);
504 377 : executor::exit(0, Lsn(lsn).to_string());
505 : }
506 :
507 156637 : fn log_internal(&self, _wp: &mut walproposer::bindings::WalProposer, level: Level, msg: &str) {
508 156637 : debug!("wp_log[{}] {}", level, msg);
509 156637 : if level == Level::Fatal || level == Level::Panic {
510 64 : if msg.contains("rejects our connection request with term") {
511 : // collected quorum with lower term, then got rejected by next connected safekeeper
512 44 : executor::exit(1, msg.to_owned());
513 20 : }
514 20 : if msg.contains("collected propTermStartLsn") && msg.contains(", but basebackup LSN ") {
515 : // sync-safekeepers collected wrong quorum, walproposer collected another quorum
516 0 : executor::exit(1, msg.to_owned());
517 20 : }
518 20 : if msg.contains("failed to download WAL for logical replicaiton") {
519 : // Recovery connection broken and recovery was failed
520 20 : executor::exit(1, msg.to_owned());
521 0 : }
522 0 : if msg.contains("missing majority of votes, collected") {
523 : // Voting bug when safekeeper disconnects after voting
524 0 : executor::exit(1, msg.to_owned());
525 0 : }
526 0 : panic!("unknown FATAL error from walproposer: {msg}");
527 156573 : }
528 156573 : }
529 :
530 622 : fn after_election(&self, wp: &mut walproposer::bindings::WalProposer) {
531 622 : let prop_lsn = wp.propTermStartLsn;
532 622 : let prop_term = wp.propTerm;
533 :
534 622 : let mut prev_lsn: u64 = 0;
535 622 : let mut prev_term: u64 = 0;
536 :
537 : unsafe {
538 622 : let history = wp.propTermHistory.entries;
539 622 : let len = wp.propTermHistory.n_entries as usize;
540 622 : if len > 1 {
541 560 : let entry = *history.wrapping_add(len - 2);
542 560 : prev_lsn = entry.lsn;
543 560 : prev_term = entry.term;
544 560 : }
545 : }
546 :
547 622 : let msg = format!("prop_elected;{prop_lsn};{prop_term};{prev_lsn};{prev_term}");
548 :
549 622 : debug!(msg);
550 622 : self.os.log_event(msg);
551 622 : }
552 :
553 257 : fn get_redo_start_lsn(&self) -> u64 {
554 257 : debug!("get_redo_start_lsn -> {:?}", self.redo_start_lsn);
555 257 : self.redo_start_lsn.expect("redo_start_lsn is not set").0
556 257 : }
557 :
558 2401 : fn get_shmem_state(&self) -> *mut walproposer::bindings::WalproposerShmemState {
559 2401 : self.shmem.get()
560 2401 : }
561 :
562 193 : fn start_streaming(
563 193 : &self,
564 193 : startpos: u64,
565 193 : callback: &walproposer::walproposer::StreamingCallback,
566 193 : ) {
567 193 : let disk = &self.disk;
568 193 : let disk_lsn = disk.lock().flush_rec_ptr().0;
569 193 : debug!("start_streaming at {} (disk_lsn={})", startpos, disk_lsn);
570 193 : if startpos < disk_lsn {
571 53 : debug!(
572 0 : "startpos < disk_lsn, it means we wrote some transaction even before streaming started"
573 : );
574 140 : }
575 193 : assert!(startpos <= disk_lsn);
576 193 : let mut broadcasted = Lsn(startpos);
577 :
578 : loop {
579 596 : let available = disk.lock().flush_rec_ptr();
580 596 : assert!(available >= broadcasted);
581 403 : callback.broadcast(broadcasted, available);
582 403 : broadcasted = available;
583 403 : callback.poll();
584 : }
585 : }
586 :
587 3020 : fn process_safekeeper_feedback(
588 3020 : &mut self,
589 3020 : wp: &mut walproposer::bindings::WalProposer,
590 3020 : _sk: &mut walproposer::bindings::Safekeeper,
591 3020 : ) {
592 3020 : debug!("process_safekeeper_feedback, commit_lsn={}", wp.commitLsn);
593 3020 : if wp.commitLsn > self.last_logged_commit_lsn {
594 607 : self.os.log_event(format!("commit_lsn;{}", wp.commitLsn));
595 607 : self.last_logged_commit_lsn = wp.commitLsn;
596 2413 : }
597 3020 : }
598 :
599 112 : fn get_flush_rec_ptr(&self) -> u64 {
600 112 : let lsn = self.disk.lock().flush_rec_ptr();
601 112 : debug!("get_flush_rec_ptr: {}", lsn);
602 112 : lsn.0
603 112 : }
604 :
605 622 : fn recovery_download(
606 622 : &self,
607 622 : wp: &mut walproposer::bindings::WalProposer,
608 622 : sk: &mut walproposer::bindings::Safekeeper,
609 622 : ) -> bool {
610 622 : let mut startpos = wp.truncateLsn;
611 622 : let endpos = wp.propTermStartLsn;
612 :
613 622 : if startpos == endpos {
614 294 : debug!("recovery_download: nothing to download");
615 294 : return true;
616 328 : }
617 :
618 328 : debug!("recovery_download from {} to {}", startpos, endpos,);
619 :
620 328 : let replication_prompt = format!(
621 328 : "START_REPLICATION {} {} {} {}",
622 : self.config.ttid.tenant_id, self.config.ttid.timeline_id, startpos, endpos,
623 : );
624 328 : let async_conn = self.get_conn(sk);
625 :
626 328 : let conn = self.os.open_tcp(async_conn.node_id);
627 328 : conn.send(desim::proto::AnyMessage::Bytes(replication_prompt.into()));
628 :
629 328 : let chan = conn.recv_chan();
630 568 : while startpos < endpos {
631 328 : let event = chan.recv();
632 308 : match event {
633 : NetEvent::Closed => {
634 20 : debug!("connection closed in recovery");
635 20 : break;
636 : }
637 240 : NetEvent::Message(AnyMessage::Bytes(b)) => {
638 240 : debug!("got recovery bytes from safekeeper");
639 240 : self.disk.lock().write(startpos, &b);
640 240 : startpos += b.len() as u64;
641 : }
642 68 : NetEvent::Message(_) => unreachable!(),
643 : }
644 : }
645 :
646 260 : debug!("recovery finished at {}", startpos);
647 :
648 260 : startpos == endpos
649 554 : }
650 :
651 11624 : fn conn_finish(&self, sk: &mut walproposer::bindings::Safekeeper) {
652 11624 : let mut conn = self.get_conn(sk);
653 11624 : debug!("conn_finish to {}", conn.node_id);
654 11624 : if let Some(socket) = conn.socket.as_mut() {
655 3740 : socket.close();
656 7884 : } else {
657 7884 : // connection is already closed
658 7884 : }
659 11624 : conn.socket = None;
660 11624 : }
661 :
662 11333 : fn conn_error_message(&self, _sk: &mut walproposer::bindings::Safekeeper) -> String {
663 11333 : "connection is closed, probably".into()
664 11333 : }
665 : }
|