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