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