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