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