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