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