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