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