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