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