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