Line data Source code
1 : use std::{cell::Cell, str::FromStr, sync::Arc};
2 :
3 : use crate::walproposer_sim::{safekeeper::run_server, walproposer_api::SimulationApi};
4 : use desim::{
5 : executor::{self, ExternalHandle},
6 : node_os::NodeOs,
7 : options::{Delay, NetworkOptions},
8 : proto::{AnyMessage, NodeEvent},
9 : world::Node,
10 : world::World,
11 : };
12 : use rand::{Rng, SeedableRng};
13 : use tracing::{debug, info_span, warn};
14 : use utils::{id::TenantTimelineId, lsn::Lsn};
15 : use walproposer::walproposer::{Config, Wrapper};
16 :
17 : use super::{
18 : log::SimClock, safekeeper_disk::SafekeeperDisk, walproposer_api,
19 : walproposer_disk::DiskWalProposer,
20 : };
21 :
22 : /// Simulated safekeeper node.
23 : pub struct SafekeeperNode {
24 : pub node: Arc<Node>,
25 : pub id: u32,
26 : pub disk: Arc<SafekeeperDisk>,
27 : pub thread: Cell<ExternalHandle>,
28 : }
29 :
30 : impl SafekeeperNode {
31 : /// Create and start a safekeeper at the specified Node.
32 6024 : pub fn new(node: Arc<Node>) -> Self {
33 6024 : let disk = Arc::new(SafekeeperDisk::new());
34 6024 : let thread = Cell::new(SafekeeperNode::launch(disk.clone(), node.clone()));
35 6024 :
36 6024 : Self {
37 6024 : id: node.id,
38 6024 : node,
39 6024 : disk,
40 6024 : thread,
41 6024 : }
42 6024 : }
43 :
44 38909 : fn launch(disk: Arc<SafekeeperDisk>, node: Arc<Node>) -> ExternalHandle {
45 38909 : // start the server thread
46 38909 : node.launch(move |os| {
47 38225 : run_server(os, disk).expect("server should finish without errors");
48 38909 : })
49 38909 : }
50 :
51 : /// Restart the safekeeper.
52 32885 : pub fn restart(&self) {
53 32885 : let new_thread = SafekeeperNode::launch(self.disk.clone(), self.node.clone());
54 32885 : let old_thread = self.thread.replace(new_thread);
55 32885 : old_thread.crash_stop();
56 32885 : }
57 : }
58 :
59 : /// Simulated walproposer node.
60 : pub struct WalProposer {
61 : thread: ExternalHandle,
62 : node: Arc<Node>,
63 : disk: Arc<DiskWalProposer>,
64 : sync_safekeepers: bool,
65 : }
66 :
67 : impl WalProposer {
68 : /// Generic start function for both modes.
69 36207 : fn start(
70 36207 : os: NodeOs,
71 36207 : disk: Arc<DiskWalProposer>,
72 36207 : ttid: TenantTimelineId,
73 36207 : addrs: Vec<String>,
74 36207 : lsn: Option<Lsn>,
75 36207 : ) {
76 36207 : let sync_safekeepers = lsn.is_none();
77 :
78 36207 : let _enter = if sync_safekeepers {
79 34859 : info_span!("sync", started = executor::now()).entered()
80 : } else {
81 1348 : info_span!("walproposer", started = executor::now()).entered()
82 : };
83 :
84 36207 : os.log_event(format!("started;walproposer;{}", sync_safekeepers as i32));
85 36207 :
86 36207 : let config = Config {
87 36207 : ttid,
88 36207 : safekeepers_list: addrs,
89 36207 : safekeeper_reconnect_timeout: 1000,
90 36207 : safekeeper_connection_timeout: 5000,
91 36207 : sync_safekeepers,
92 36207 : };
93 36207 : let args = walproposer_api::Args {
94 36207 : os,
95 36207 : config: config.clone(),
96 36207 : disk,
97 36207 : redo_start_lsn: lsn,
98 36207 : };
99 36207 : let api = SimulationApi::new(args);
100 36207 : let wp = Wrapper::new(Box::new(api), config);
101 36207 : wp.start();
102 36207 : }
103 :
104 : /// Start walproposer in a sync_safekeepers mode.
105 35553 : pub fn launch_sync(ttid: TenantTimelineId, addrs: Vec<String>, node: Arc<Node>) -> Self {
106 35553 : debug!("sync_safekeepers started at node {}", node.id);
107 35553 : let disk = DiskWalProposer::new();
108 35553 : let disk_wp = disk.clone();
109 35553 :
110 35553 : // start the client thread
111 35553 : let handle = node.launch(move |os| {
112 34859 : WalProposer::start(os, disk_wp, ttid, addrs, None);
113 35553 : });
114 35553 :
115 35553 : Self {
116 35553 : thread: handle,
117 35553 : node,
118 35553 : disk,
119 35553 : sync_safekeepers: true,
120 35553 : }
121 35553 : }
122 :
123 : /// Start walproposer in a normal mode.
124 1348 : pub fn launch_walproposer(
125 1348 : ttid: TenantTimelineId,
126 1348 : addrs: Vec<String>,
127 1348 : node: Arc<Node>,
128 1348 : lsn: Lsn,
129 1348 : ) -> Self {
130 1348 : debug!("walproposer started at node {}", node.id);
131 1348 : let disk = DiskWalProposer::new();
132 1348 : disk.lock().reset_to(lsn);
133 1348 : let disk_wp = disk.clone();
134 1348 :
135 1348 : // start the client thread
136 1348 : let handle = node.launch(move |os| {
137 1348 : WalProposer::start(os, disk_wp, ttid, addrs, Some(lsn));
138 1348 : });
139 1348 :
140 1348 : Self {
141 1348 : thread: handle,
142 1348 : node,
143 1348 : disk,
144 1348 : sync_safekeepers: false,
145 1348 : }
146 1348 : }
147 :
148 1490 : pub fn write_tx(&mut self, cnt: usize) {
149 1490 : let start_lsn = self.disk.lock().flush_rec_ptr();
150 1490 :
151 16238 : for _ in 0..cnt {
152 16238 : self.disk
153 16238 : .lock()
154 16238 : .insert_logical_message("prefix", b"message")
155 16238 : .expect("failed to generate logical message");
156 16238 : }
157 :
158 1490 : let end_lsn = self.disk.lock().flush_rec_ptr();
159 1490 :
160 1490 : // log event
161 1490 : self.node
162 1490 : .log_event(format!("write_wal;{};{};{}", start_lsn.0, end_lsn.0, cnt));
163 1490 :
164 1490 : // now we need to set "Latch" in walproposer
165 1490 : self.node
166 1490 : .node_events()
167 1490 : .send(NodeEvent::Internal(AnyMessage::Just32(0)));
168 1490 : }
169 :
170 33300 : pub fn stop(&self) {
171 33300 : self.thread.crash_stop();
172 33300 : }
173 : }
174 :
175 : /// Holds basic simulation settings, such as network options.
176 : pub struct TestConfig {
177 : pub network: NetworkOptions,
178 : pub timeout: u64,
179 : pub clock: Option<SimClock>,
180 : }
181 :
182 : impl TestConfig {
183 : /// Create a new TestConfig with default settings.
184 9 : pub fn new(clock: Option<SimClock>) -> Self {
185 9 : Self {
186 9 : network: NetworkOptions {
187 9 : keepalive_timeout: Some(2000),
188 9 : connect_delay: Delay {
189 9 : min: 1,
190 9 : max: 5,
191 9 : fail_prob: 0.0,
192 9 : },
193 9 : send_delay: Delay {
194 9 : min: 1,
195 9 : max: 5,
196 9 : fail_prob: 0.0,
197 9 : },
198 9 : },
199 9 : timeout: 1_000 * 10,
200 9 : clock,
201 9 : }
202 9 : }
203 :
204 : /// Start a new simulation with the specified seed.
205 2008 : pub fn start(&self, seed: u64) -> Test {
206 2008 : let world = Arc::new(World::new(seed, Arc::new(self.network.clone())));
207 :
208 2008 : if let Some(clock) = &self.clock {
209 2008 : clock.set_clock(world.clock());
210 2008 : }
211 :
212 2008 : let servers = [
213 2008 : SafekeeperNode::new(world.new_node()),
214 2008 : SafekeeperNode::new(world.new_node()),
215 2008 : SafekeeperNode::new(world.new_node()),
216 2008 : ];
217 2008 :
218 2008 : let server_ids = [servers[0].id, servers[1].id, servers[2].id];
219 6024 : let safekeepers_addrs = server_ids.map(|id| format!("node:{}", id)).to_vec();
220 2008 :
221 2008 : let ttid = TenantTimelineId::generate();
222 2008 :
223 2008 : Test {
224 2008 : world,
225 2008 : servers,
226 2008 : sk_list: safekeepers_addrs,
227 2008 : ttid,
228 2008 : timeout: self.timeout,
229 2008 : }
230 2008 : }
231 : }
232 :
233 : /// Holds simulation state.
234 : pub struct Test {
235 : pub world: Arc<World>,
236 : pub servers: [SafekeeperNode; 3],
237 : pub sk_list: Vec<String>,
238 : pub ttid: TenantTimelineId,
239 : pub timeout: u64,
240 : }
241 :
242 : impl Test {
243 : /// Start a sync_safekeepers thread and wait for it to finish.
244 6 : pub fn sync_safekeepers(&self) -> anyhow::Result<Lsn> {
245 6 : let wp = self.launch_sync_safekeepers();
246 6 :
247 6 : // poll until exit or timeout
248 6 : let time_limit = self.timeout;
249 230 : while self.world.step() && self.world.now() < time_limit && !wp.thread.is_finished() {}
250 :
251 6 : if !wp.thread.is_finished() {
252 0 : anyhow::bail!("timeout or idle stuck");
253 6 : }
254 6 :
255 6 : let res = wp.thread.result();
256 6 : if res.0 != 0 {
257 0 : anyhow::bail!("non-zero exitcode: {:?}", res);
258 6 : }
259 6 : let lsn = Lsn::from_str(&res.1)?;
260 6 : Ok(lsn)
261 6 : }
262 :
263 : /// Spawn a new sync_safekeepers thread.
264 35553 : pub fn launch_sync_safekeepers(&self) -> WalProposer {
265 35553 : WalProposer::launch_sync(self.ttid, self.sk_list.clone(), self.world.new_node())
266 35553 : }
267 :
268 : /// Spawn a new walproposer thread.
269 1348 : pub fn launch_walproposer(&self, lsn: Lsn) -> WalProposer {
270 1348 : let lsn = if lsn.0 == 0 {
271 : // usual LSN after basebackup
272 776 : Lsn(21623024)
273 : } else {
274 572 : lsn
275 : };
276 :
277 1348 : WalProposer::launch_walproposer(self.ttid, self.sk_list.clone(), self.world.new_node(), lsn)
278 1348 : }
279 :
280 : /// Execute the simulation for the specified duration.
281 105 : pub fn poll_for_duration(&self, duration: u64) {
282 105 : let time_limit = std::cmp::min(self.world.now() + duration, self.timeout);
283 1762 : while self.world.step() && self.world.now() < time_limit {}
284 105 : }
285 :
286 : /// Execute the simulation together with events defined in some schedule.
287 2004 : pub fn run_schedule(&self, schedule: &Schedule) -> anyhow::Result<()> {
288 2004 : // scheduling empty events so that world will stop in those points
289 2004 : {
290 2004 : let clock = self.world.clock();
291 2004 :
292 2004 : let now = self.world.now();
293 101425 : for (time, _) in schedule {
294 99421 : if *time < now {
295 0 : continue;
296 99421 : }
297 99421 : clock.schedule_fake(*time - now);
298 : }
299 : }
300 :
301 2004 : let mut wp = self.launch_sync_safekeepers();
302 2004 :
303 2004 : let mut skipped_tx = 0;
304 2004 : let mut started_tx = 0;
305 2004 :
306 2004 : let mut schedule_ptr = 0;
307 :
308 : loop {
309 103068 : if wp.sync_safekeepers && wp.thread.is_finished() {
310 1589 : let res = wp.thread.result();
311 1589 : if res.0 != 0 {
312 244 : warn!("sync non-zero exitcode: {:?}", res);
313 244 : debug!("restarting sync_safekeepers");
314 : // restart the sync_safekeepers
315 244 : wp = self.launch_sync_safekeepers();
316 244 : continue;
317 1345 : }
318 1345 : let lsn = Lsn::from_str(&res.1)?;
319 1345 : debug!("sync_safekeepers finished at LSN {}", lsn);
320 1345 : wp = self.launch_walproposer(lsn);
321 1345 : debug!("walproposer started at thread {}", wp.thread.id());
322 101479 : }
323 :
324 102824 : let now = self.world.now();
325 202245 : while schedule_ptr < schedule.len() && schedule[schedule_ptr].0 <= now {
326 99421 : if now != schedule[schedule_ptr].0 {
327 0 : warn!("skipped event {:?} at {}", schedule[schedule_ptr], now);
328 99421 : }
329 :
330 99421 : let action = &schedule[schedule_ptr].1;
331 99421 : match action {
332 33238 : TestAction::WriteTx(size) => {
333 33238 : if !wp.sync_safekeepers && !wp.thread.is_finished() {
334 1388 : started_tx += *size;
335 1388 : wp.write_tx(*size);
336 1388 : debug!("written {} transactions", size);
337 : } else {
338 31850 : skipped_tx += size;
339 31850 : debug!("skipped {} transactions", size);
340 : }
341 : }
342 32884 : TestAction::RestartSafekeeper(id) => {
343 32884 : debug!("restarting safekeeper {}", id);
344 32884 : self.servers[*id].restart();
345 : }
346 : TestAction::RestartWalProposer => {
347 33299 : debug!("restarting sync_safekeepers");
348 33299 : wp.stop();
349 33299 : wp = self.launch_sync_safekeepers();
350 : }
351 : }
352 99421 : schedule_ptr += 1;
353 : }
354 :
355 102824 : if schedule_ptr == schedule.len() {
356 2004 : break;
357 100820 : }
358 100820 : let next_event_time = schedule[schedule_ptr].0;
359 100820 :
360 100820 : // poll until the next event
361 100820 : if wp.thread.is_finished() {
362 1350 : while self.world.step() && self.world.now() < next_event_time {}
363 : } else {
364 1557902 : while self.world.step()
365 1557902 : && self.world.now() < next_event_time
366 1458838 : && !wp.thread.is_finished()
367 1457207 : {}
368 : }
369 : }
370 :
371 2004 : debug!(
372 0 : "finished schedule, total steps: {}",
373 0 : self.world.get_thread_step_count()
374 : );
375 2004 : debug!("skipped_tx: {}", skipped_tx);
376 2004 : debug!("started_tx: {}", started_tx);
377 :
378 2004 : Ok(())
379 2004 : }
380 : }
381 :
382 : #[derive(Debug, Clone)]
383 : pub enum TestAction {
384 : WriteTx(usize),
385 : RestartSafekeeper(usize),
386 : RestartWalProposer,
387 : }
388 :
389 : pub type Schedule = Vec<(u64, TestAction)>;
390 :
391 2002 : pub fn generate_schedule(seed: u64) -> Schedule {
392 2002 : let mut rng = rand::rngs::StdRng::seed_from_u64(seed);
393 2002 : let mut schedule = Vec::new();
394 2002 : let mut time = 0;
395 2002 :
396 2002 : let cnt = rng.gen_range(1..100);
397 2002 :
398 2002 : for _ in 0..cnt {
399 99306 : time += rng.gen_range(0..500);
400 99306 : let action = match rng.gen_range(0..3) {
401 33131 : 0 => TestAction::WriteTx(rng.gen_range(1..10)),
402 32878 : 1 => TestAction::RestartSafekeeper(rng.gen_range(0..3)),
403 33297 : 2 => TestAction::RestartWalProposer,
404 0 : _ => unreachable!(),
405 : };
406 99306 : schedule.push((time, action));
407 : }
408 :
409 2002 : schedule
410 2002 : }
411 :
412 2002 : pub fn generate_network_opts(seed: u64) -> NetworkOptions {
413 2002 : let mut rng = rand::rngs::StdRng::seed_from_u64(seed);
414 2002 :
415 2002 : let timeout = rng.gen_range(100..2000);
416 2002 : let max_delay = rng.gen_range(1..2 * timeout);
417 2002 : let min_delay = rng.gen_range(1..=max_delay);
418 2002 :
419 2002 : let max_fail_prob = rng.gen_range(0.0..0.9);
420 2002 : let connect_fail_prob = rng.gen_range(0.0..max_fail_prob);
421 2002 : let send_fail_prob = rng.gen_range(0.0..connect_fail_prob);
422 2002 :
423 2002 : NetworkOptions {
424 2002 : keepalive_timeout: Some(timeout),
425 2002 : connect_delay: Delay {
426 2002 : min: min_delay,
427 2002 : max: max_delay,
428 2002 : fail_prob: connect_fail_prob,
429 2002 : },
430 2002 : send_delay: Delay {
431 2002 : min: min_delay,
432 2002 : max: max_delay,
433 2002 : fail_prob: send_fail_prob,
434 2002 : },
435 2002 : }
436 2002 : }
|