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