chunked-wal 0.2.0

Chunked write-ahead log implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
pub mod callback;
pub mod file_persisted;
pub mod wal_record;

pub(crate) mod atomic_flush_metrics;
pub(crate) mod batch_metrics;
mod closed_chunk_reader;
pub(crate) mod file_entry;
pub(crate) mod flush_request;
pub(crate) mod flush_worker;
pub(crate) mod queued_write;
pub(crate) mod write_batch;

use std::collections::BTreeMap;
use std::fmt;
use std::io;
use std::sync::Arc;
use std::sync::mpsc::SyncSender;
use std::time::Instant;

pub use closed_chunk_reader::ClosedChunkReader;
use codeq::OffsetSize;
pub use flush_request::FlushStat;
pub(crate) use flush_request::WorkerRequest;
use log::info;

use crate::Chunk;
use crate::ChunkId;
use crate::Config;
use crate::WALRecord;
use crate::WalLock;
use crate::WalTypes;
use crate::api::state_machine::StateMachine;
use crate::api::wal::WAL;
use crate::chunk::closed_chunk::ClosedChunk;
use crate::chunk::open_chunk::OpenChunk;
use crate::num::format_pad_u64;
use crate::stat::ChunkStat;
use crate::stat::FlushMetrics;
use crate::types::Segment;
use crate::wal::atomic_flush_metrics::AtomicFlushMetrics;
use crate::wal::file_entry::FileEntry;
use crate::wal::file_persisted::ChunkPersisted;
use crate::wal::file_persisted::ChunkPersistedCallback;
pub use crate::wal::file_persisted::ChunkPersistedFn;
use crate::wal::flush_request::SeqRequest;
use crate::wal::flush_request::WriteRequest;
use crate::wal::flush_worker::FlushWorker;
use crate::wal::flush_worker::WorkerState;

/// Chunked write-ahead log implementation.
///
/// This WAL implementation manages both open and closed chunks of data.
/// An open chunk is actively being written to, while closed chunks are
/// immutable and may be used for reading historical data.
pub struct ChunkedWal<W>
where W: WalTypes
{
    config: Arc<Config>,
    open: OpenChunk<WALRecord<W>>,
    closed: BTreeMap<ChunkId, ClosedChunk<W>>,

    /// Sends user write operations to the flush worker.
    ///
    /// Each write operation may carry its own callback, defined by
    /// `W::Callback`.
    flush_tx: SyncSender<SeqRequest<W>>,

    /// File-level callback invoked after fsync.
    ///
    /// This callback is called once for each synced chunk file.
    on_chunk_persisted: ChunkPersistedFn<W>,

    /// The next sequence number to assign. Incremented on each `send_request`.
    /// Only accessed by the main thread, so a plain `u64` suffices.
    sent_seq: u64,

    /// Shared with `FlushWorker`; stores completion and failure state.
    worker_state: Arc<WorkerState>,

    /// Shared with `FlushWorker`; stores aggregated flush metrics.
    flush_metrics: Arc<AtomicFlushMetrics>,

    /// Holds the exclusive lock on the WAL directory for this WAL instance.
    _dir_lock: WalLock,
}

impl<W> fmt::Debug for ChunkedWal<W>
where W: WalTypes
{
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.debug_struct("ChunkedWal")
            .field("config", &self.config)
            .field("open", &self.open)
            .field("closed", &self.closed)
            .field("sent_seq", &self.sent_seq)
            .field("done_seq", &self.worker_state.done_seq())
            .field("flush_metrics", &self.flush_metrics)
            .finish_non_exhaustive()
    }
}

impl<W> ChunkedWal<W>
where W: WalTypes
{
    /// Opens a ChunkedWal instance and replays existing records into a state
    /// machine.
    pub fn open<SM>(
        config: Arc<Config>,
        state_machine: &mut SM,
        on_chunk_persisted: ChunkPersistedFn<W>,
    ) -> Result<Self, io::Error>
    where
        SM: StateMachine<W>,
    {
        let dir_lock = Self::acquire_lock(&config)?;
        Self::open_locked(config, state_machine, on_chunk_persisted, dir_lock)
    }

    /// Acquires the exclusive WAL directory lock.
    pub fn acquire_lock(config: &Config) -> Result<WalLock, io::Error> {
        WalLock::new(config)
    }

    /// Opens a ChunkedWal instance with an already-held WAL directory lock.
    pub fn open_locked<SM>(
        config: Arc<Config>,
        state_machine: &mut SM,
        on_chunk_persisted: ChunkPersistedFn<W>,
        dir_lock: WalLock,
    ) -> Result<Self, io::Error>
    where
        SM: StateMachine<W>,
    {
        let chunk_ids = Self::load_chunk_ids(&config, &dir_lock)?;

        let mut closed = BTreeMap::new();
        let mut prev_end_offset = None;
        let mut prev_checkpoint = None;
        let tail_chunk_id = chunk_ids.last().copied();

        for chunk_id in chunk_ids.iter().copied() {
            Self::ensure_consecutive_chunks(prev_end_offset, chunk_id)?;

            let (chunk, records) = Chunk::<WALRecord<W>>::open_with_truncate(
                config.clone(),
                chunk_id,
                Some(chunk_id) == tail_chunk_id,
            )?;

            on_chunk_persisted(
                ChunkPersisted {
                    file: chunk.f.clone(),
                    starting_offset: chunk.global_start(),
                    synced_offset: chunk.global_end(),
                },
                prev_checkpoint.clone(),
            );

            for (i, record) in records.iter().enumerate() {
                let seg = chunk.record_segment(i);
                state_machine
                    .apply(record, chunk_id, seg)
                    .map_err(|e| io::Error::other(e.to_string()))?;
            }

            prev_end_offset = Some(chunk.last_segment().end().0);
            let checkpoint = Arc::new(state_machine.checkpoint());
            prev_checkpoint = Some(checkpoint.clone());

            closed.insert(chunk_id, ClosedChunk::new(chunk, checkpoint));
        }

        let open = Self::reopen_last_closed(&mut closed);

        let open = if let Some(open) = open {
            open
        } else {
            OpenChunk::create(
                config.clone(),
                ChunkId(prev_end_offset.unwrap_or_default()),
                WALRecord::Checkpoint(state_machine.checkpoint()),
            )?
        };

        Ok(Self::new(
            config,
            closed,
            open,
            on_chunk_persisted,
            dir_lock,
        ))
    }

    /// Dumps all records while holding the WAL directory lock.
    pub fn dump_records<D>(
        config: &Config,
        _dir_lock: &WalLock,
        mut write_record: D,
    ) -> Result<(), io::Error>
    where
        D: FnMut(
            ChunkId,
            u64,
            Result<(Segment, WALRecord<W>), io::Error>,
        ) -> Result<(), io::Error>,
    {
        let chunk_ids = Self::load_chunk_ids(config, _dir_lock)?;
        for chunk_id in chunk_ids {
            let it = Chunk::<WALRecord<W>>::dump(config, chunk_id)?;
            for (i, res) in it.into_iter().enumerate() {
                write_record(chunk_id, i as u64, res)?;
            }
        }

        Ok(())
    }

    /// Creates a new ChunkedWal instance after recovery has completed.
    ///
    /// # Arguments
    ///
    /// * `config` - Configuration for the WAL
    /// * `closed` - Map of closed (immutable) chunks indexed by chunk ID
    /// * `open` - The currently active chunk that can be written to
    /// * `on_chunk_persisted` - Callback invoked after chunk data is persisted
    fn new(
        config: Arc<Config>,
        closed: BTreeMap<ChunkId, ClosedChunk<W>>,
        open: OpenChunk<WALRecord<W>>,
        on_chunk_persisted: ChunkPersistedFn<W>,
        dir_lock: WalLock,
    ) -> Self {
        let prev_checkpoint =
            closed.iter().last().map(|(_, c)| c.state.clone());

        let offset = open.chunk.global_start();
        let f = open.chunk.f.clone();

        let file_entry = FileEntry::new(
            offset,
            f,
            ChunkPersistedCallback::new(
                on_chunk_persisted.clone(),
                prev_checkpoint,
            ),
        );

        let worker_state = Arc::new(WorkerState::new());
        let flush_metrics = Arc::new(AtomicFlushMetrics::default());

        let (flush_tx, rx) = std::sync::mpsc::sync_channel(1024);
        let worker = FlushWorker::new(
            rx,
            file_entry,
            worker_state.clone(),
            flush_metrics.clone(),
            config.flush_batch_wait(),
            config.flush_batch_max_items(),
        );

        worker.spawn();

        Self {
            config,
            open,
            closed,
            flush_tx,
            on_chunk_persisted,
            sent_seq: 0,
            worker_state,
            flush_metrics,
            _dir_lock: dir_lock,
        }
    }

    fn ensure_consecutive_chunks(
        prev_end_offset: Option<u64>,
        chunk_id: ChunkId,
    ) -> Result<(), io::Error> {
        let Some(prev_end) = prev_end_offset else {
            return Ok(());
        };

        if prev_end != chunk_id.offset() {
            let message = format!(
                "Gap between chunks: {} -> {}; Can not open, \
                        fix this error and re-open",
                format_pad_u64(prev_end),
                format_pad_u64(chunk_id.offset()),
            );
            return Err(io::Error::new(io::ErrorKind::InvalidData, message));
        }

        Ok(())
    }

    fn reopen_last_closed(
        closed_chunks: &mut BTreeMap<ChunkId, ClosedChunk<W>>,
    ) -> Option<OpenChunk<WALRecord<W>>> {
        {
            let (_chunk_id, closed) = closed_chunks.iter().last()?;

            if closed.chunk.is_truncated() {
                return None;
            }
        }

        let (_chunk_id, last) = closed_chunks.pop_last().unwrap();
        let open = OpenChunk::new(last.chunk);
        Some(open)
    }

    pub fn load_chunk_ids(
        config: &Config,
        _dir_lock: &WalLock,
    ) -> Result<Vec<ChunkId>, io::Error> {
        let path = &config.dir;
        let entries = std::fs::read_dir(path)?;
        let mut chunk_ids = vec![];
        for entry in entries {
            let entry = entry?;
            let file_name = entry.file_name();

            let fn_str = file_name.to_string_lossy();
            if fn_str == WalLock::LOCK_FILE_NAME {
                continue;
            }

            let res = Config::parse_chunk_file_name(&fn_str);

            match res {
                Ok(offset) => {
                    chunk_ids.push(ChunkId(offset));
                }
                Err(err) => {
                    log::warn!(
                        "Ignore invalid WAL file name: '{}': {}",
                        fn_str,
                        err
                    );
                    continue;
                }
            };
        }

        chunk_ids.sort();

        Ok(chunk_ids)
    }

    pub fn open_chunk_id(&self) -> ChunkId {
        self.open.chunk.chunk_id()
    }

    pub fn closed_chunk_stats(&self) -> Vec<ChunkStat<W::Checkpoint>> {
        self.closed.values().map(|c| c.stat()).collect()
    }

    pub fn open_chunk_stat(
        &self,
        checkpoint: W::Checkpoint,
    ) -> ChunkStat<W::Checkpoint> {
        ChunkStat {
            chunk_id: self.open.chunk.chunk_id(),
            records_count: self.open.chunk.records_count() as u64,
            global_start: self.open.chunk.global_start(),
            global_end: self.open.chunk.global_end(),
            size: self.open.chunk.chunk_size(),
            log_state: checkpoint,
        }
    }

    pub fn closed_chunk_reader(&self) -> ClosedChunkReader<W> {
        ClosedChunkReader::new(self.closed.clone())
    }

    pub fn drain_closed_chunks_while<F>(
        &mut self,
        mut should_drain: F,
    ) -> Vec<ChunkId>
    where
        F: FnMut(&W::Checkpoint) -> bool,
    {
        let mut chunk_ids = Vec::new();

        while let Some((_chunk_id, closed)) = self.closed.first_key_value() {
            if !should_drain(closed.state.as_ref()) {
                break;
            }

            let (chunk_id, _closed) = self.closed.pop_first().unwrap();
            chunk_ids.push(chunk_id);
        }

        chunk_ids
    }

    pub fn dump_loaded_records<D>(
        &self,
        mut write_record: D,
    ) -> Result<(), io::Error>
    where
        D: FnMut(
            ChunkId,
            u64,
            Result<(Segment, WALRecord<W>), io::Error>,
        ) -> Result<(), io::Error>,
    {
        let closed = self.closed.keys().copied();
        let chunk_ids = closed.chain([self.open.chunk.chunk_id()]);

        for chunk_id in chunk_ids {
            let f =
                Chunk::<WALRecord<W>>::open_chunk_file(&self.config, chunk_id)?;

            let it = Chunk::<WALRecord<W>>::load_records_iter(
                &self.config,
                Arc::new(f),
                chunk_id,
            )?;

            for (i, res) in it.enumerate() {
                write_record(chunk_id, i as u64, res)?;
            }
        }

        Ok(())
    }

    pub fn on_disk_size(&self) -> u64 {
        let end = self.open.chunk.global_end();
        let open_start = self.open.chunk.global_start();
        let first_closed_start = self
            .closed
            .first_key_value()
            .map(|(_, v)| v.chunk.global_start())
            .unwrap_or(open_start);

        end - first_closed_start
    }

    pub fn last_closed_chunk_truncated_file_size(&self) -> Option<u64> {
        self.closed
            .last_key_value()
            .and_then(|(_chunk_id, closed)| closed.chunk.truncated_file_size())
    }

    /// Wraps a `WorkerRequest` with an auto-incrementing seq and sends it to
    /// the FlushWorker.
    fn send_request(&mut self, req: WorkerRequest<W>) -> Result<(), io::Error> {
        self.sent_seq += 1;
        self.flush_tx
            .send(SeqRequest {
                seq: self.sent_seq,
                queued_at: Instant::now(),
                req,
            })
            .map_err(|e| {
                io::Error::other(format!("Failed to send request: {}", e))
            })
    }

    /// Block until the FlushWorker has processed all requests sent so far.
    pub fn wait_worker_idle(&self) -> Result<(), io::Error> {
        self.worker_state.wait_for(self.sent_seq)
    }

    pub fn flush_metrics(&self) -> FlushMetrics {
        self.flush_metrics.snapshot()
    }

    /// Hand the pending data buffer to the worker for writing.
    ///
    /// Drains `OpenChunk::pending_data` and packages it as a `WriteRequest`.
    /// The worker always writes the bytes to the OS file. When `sync` is
    /// `true` it also calls `fsync` so the data is on stable storage; when
    /// `sync` is `false` it skips the fsync and durability is deferred to
    /// the next sync write that lands in the same or a later batch.
    pub fn send_pending(
        &mut self,
        sync: bool,
        callback: Option<W::Callback>,
    ) -> Result<(), io::Error> {
        let data = self.open.take_pending_data();
        self.send_request(WorkerRequest::Write(WriteRequest {
            upto_offset: self.open.chunk.global_end(),
            data,
            sync,
            callback,
        }))
    }

    /// Requests removal of specified chunks.
    ///
    /// # Arguments
    ///
    /// * `chunk_ids` - IDs of chunk files to be removed
    ///
    /// # Errors
    ///
    /// Returns an IO error if the remove request cannot be sent
    pub fn send_remove_chunks(
        &mut self,
        chunk_ids: Vec<ChunkId>,
    ) -> Result<(), io::Error> {
        let chunk_paths = chunk_ids
            .into_iter()
            .map(|chunk_id| self.config.chunk_path(chunk_id))
            .collect();

        self.send_request(WorkerRequest::RemoveChunks { chunk_paths })
    }

    #[allow(dead_code)]
    pub fn get_stat(&mut self) -> Result<Vec<FlushStat>, io::Error> {
        let (tx, rx) = std::sync::mpsc::sync_channel(1);
        self.send_get_stat(tx)?;
        rx.recv().map_err(|e| {
            io::Error::other(format!(
                "Failed to receive get state response: {}",
                e
            ))
        })
    }

    #[allow(dead_code)]
    pub(crate) fn send_get_stat(
        &mut self,
        callback: SyncSender<Vec<FlushStat>>,
    ) -> Result<(), io::Error> {
        self.send_request(WorkerRequest::GetFlushStat { tx: callback })
    }

    /// Checks if the current open chunk has reached its capacity.
    ///
    /// Returns true if either the maximum number of records or maximum chunk
    /// size is reached.
    pub fn is_open_chunk_full(&self) -> bool {
        self.open.chunk.records_count() >= self.config.chunk_max_records()
            || (self.open.chunk.chunk_size() as usize)
                >= self.config.chunk_max_size()
    }

    /// Attempts to close the current chunk if it's full and creates a new open
    /// chunk.
    ///
    /// # Arguments
    ///
    /// * `state_machine` - The state machine that provides the checkpoint to
    ///   store at the start of the next chunk.
    ///
    /// # Returns
    ///
    /// Returns the checkpoint if a chunk was closed, None otherwise.
    ///
    /// # Errors
    ///
    /// Returns an IO error if chunk operations fail
    pub fn try_close_full_chunk<SM>(
        &mut self,
        state_machine: &SM,
    ) -> Result<Option<W::Checkpoint>, io::Error>
    where
        SM: StateMachine<W>,
    {
        if !self.is_open_chunk_full() {
            return Ok(None);
        }

        let config = self.config.clone();
        let offset = self.open.chunk.last_segment().end();

        info!(
            "Closing full chunk: {}, open new: {}",
            self.open.chunk.chunk_id(),
            ChunkId(offset.0)
        );

        let checkpoint = state_machine.checkpoint();

        let new_open = {
            let chunk_id = ChunkId(offset.0);
            OpenChunk::create(
                config,
                chunk_id,
                WALRecord::Checkpoint(checkpoint.clone()),
            )?
        };

        let mut old_open = std::mem::replace(&mut self.open, new_open);

        let prev_pending_data = old_open.take_pending_data();
        if !prev_pending_data.is_empty() {
            self.send_request(WorkerRequest::Write(WriteRequest {
                upto_offset: offset.0,
                data: prev_pending_data,
                sync: true,
                callback: None,
            }))?;
        }

        let checkpoint = Arc::new(checkpoint);

        self.send_request(WorkerRequest::AppendFile(FileEntry::new(
            offset.0,
            self.open.chunk.f.clone(),
            ChunkPersistedCallback::new(
                self.on_chunk_persisted.clone(),
                Some(checkpoint.clone()),
            ),
        )))?;

        let chunk = old_open.chunk;
        let closed_id = chunk.chunk_id();
        let closed = ClosedChunk::new(chunk, checkpoint.clone());
        self.closed.insert(closed_id, closed);
        Ok(Some(checkpoint.as_ref().clone()))
    }

    /// Loads a record from a closed chunk.
    ///
    /// # Arguments
    ///
    /// * `log_data` - Metadata about the log entry to load
    ///
    /// # Returns
    ///
    /// Returns the log payload if found
    ///
    /// # Errors
    ///
    /// Returns an IO error if the chunk is not found or reading fails
    pub fn load_record(
        &self,
        chunk_id: &ChunkId,
        segment: Segment,
    ) -> Result<WALRecord<W>, io::Error> {
        // All logs in the open chunk are served before this fallback.

        let record = {
            let closed = self.closed.get(chunk_id).ok_or_else(|| {
                io::Error::new(
                    io::ErrorKind::NotFound,
                    format!(
                        "Chunk not found: {}; when:(open cache-miss read)",
                        chunk_id
                    ),
                )
            })?;
            closed.chunk.read_record(segment)?
        };

        Ok(record)
    }
}

impl<W> WAL<WALRecord<W>> for ChunkedWal<W>
where W: WalTypes
{
    fn append(&mut self, rec: &WALRecord<W>) -> Result<(), io::Error> {
        self.open.append_record(rec)?;
        Ok(())
    }

    fn last_segment(&self) -> Segment {
        self.open.chunk.last_segment()
    }
}

#[cfg(test)]
mod tests {
    use std::io;
    use std::io::Seek;
    use std::io::Write;
    use std::sync::Arc;
    use std::sync::Mutex;
    use std::sync::mpsc::SyncSender;
    use std::sync::mpsc::sync_channel;

    use codeq::Decode;
    use codeq::Encode;
    use codeq::OffsetSize;

    use crate::Chunk;
    use crate::ChunkId;
    use crate::ChunkPersisted;
    use crate::ChunkPersistedFn;
    use crate::ChunkedWal;
    use crate::Config;
    use crate::Segment;
    use crate::StateMachine;
    use crate::WAL;
    use crate::WALRecord;
    use crate::WalTypes;

    const TEST_ACTION_TYPE: u32 = 1;

    #[derive(Debug, Clone, PartialEq, Eq)]
    struct TestAction(String);

    impl Encode for TestAction {
        fn encode<Wt: io::Write>(&self, mut w: Wt) -> Result<usize, io::Error> {
            let mut n = TEST_ACTION_TYPE.encode(&mut w)?;
            n += self.0.encode(&mut w)?;
            Ok(n)
        }

        fn type_id(&self) -> Option<u32> {
            Some(TEST_ACTION_TYPE)
        }
    }

    impl Decode for TestAction {
        fn decode<R: io::Read>(mut r: R) -> Result<Self, io::Error> {
            let type_id = u32::decode(&mut r)?;
            if type_id != TEST_ACTION_TYPE {
                return Err(io::Error::new(
                    io::ErrorKind::InvalidData,
                    format!("unexpected action type id {}", type_id),
                ));
            }

            Ok(Self(String::decode(&mut r)?))
        }
    }

    #[derive(Debug, Default, Clone, PartialEq, Eq)]
    struct TestWal;

    impl WalTypes for TestWal {
        type Action = TestAction;
        type Checkpoint = String;
        type Callback = SyncSender<Result<(), io::Error>>;
    }

    #[derive(Debug, Default)]
    struct TestStateMachine {
        values: Vec<String>,
    }

    impl StateMachine<TestWal> for TestStateMachine {
        type Error = io::Error;

        fn apply(
            &mut self,
            record: &WALRecord<TestWal>,
            _chunk_id: ChunkId,
            _global_segment: crate::Segment,
        ) -> Result<(), Self::Error> {
            match record {
                WALRecord::Action(v) => self.values.push(v.0.clone()),
                WALRecord::Checkpoint(checkpoint) => {
                    self.values = decode_checkpoint(checkpoint);
                }
            }

            Ok(())
        }

        fn checkpoint(&self) -> String {
            encode_checkpoint(&self.values)
        }
    }

    #[derive(Debug, Clone, PartialEq, Eq)]
    struct PersistedCall {
        starting_offset: u64,
        synced_offset: u64,
        checkpoint: Option<String>,
    }

    fn encode_checkpoint(values: &[String]) -> String {
        values.join(",")
    }

    fn decode_checkpoint(checkpoint: &str) -> Vec<String> {
        if checkpoint.is_empty() {
            return Vec::new();
        }

        checkpoint.split(',').map(str::to_string).collect()
    }

    fn action(value: &str) -> WALRecord<TestWal> {
        WALRecord::Action(TestAction(value.to_string()))
    }

    fn callback(
        calls: Arc<Mutex<Vec<PersistedCall>>>,
    ) -> ChunkPersistedFn<TestWal> {
        Arc::new(
            move |persisted: ChunkPersisted,
                  checkpoint: Option<Arc<String>>| {
                calls.lock().unwrap().push(PersistedCall {
                    starting_offset: persisted.starting_offset,
                    synced_offset: persisted.synced_offset,
                    checkpoint: checkpoint.as_deref().cloned(),
                });
            },
        )
    }

    fn open_wal(
        config: &Config,
        calls: Arc<Mutex<Vec<PersistedCall>>>,
    ) -> Result<(ChunkedWal<TestWal>, TestStateMachine), io::Error> {
        let mut sm = TestStateMachine::default();
        let wal = ChunkedWal::open(
            Arc::new(config.clone()),
            &mut sm,
            callback(calls),
        )?;

        Ok((wal, sm))
    }

    fn append_action(
        wal: &mut ChunkedWal<TestWal>,
        sm: &mut TestStateMachine,
        value: &str,
    ) -> Result<crate::Segment, io::Error> {
        let record = action(value);
        wal.append(&record)?;
        let segment = wal.last_segment();
        sm.apply(&record, wal.open.chunk.chunk_id(), segment)?;
        wal.try_close_full_chunk(sm)?;
        Ok(segment)
    }

    fn sync_flush(wal: &mut ChunkedWal<TestWal>) -> Result<(), io::Error> {
        let (tx, rx) = sync_channel(1);
        wal.send_pending(true, Some(tx))?;
        rx.recv()
            .map_err(|e| io::Error::other(format!("flush callback: {e}")))??;
        wal.wait_worker_idle()?;
        Ok(())
    }

    fn no_sync_flush(wal: &mut ChunkedWal<TestWal>) -> Result<(), io::Error> {
        let (tx, rx) = sync_channel(1);
        wal.send_pending(false, Some(tx))?;
        rx.recv()
            .map_err(|e| io::Error::other(format!("flush callback: {e}")))??;
        wal.wait_worker_idle()?;
        Ok(())
    }

    fn temp_config() -> (tempfile::TempDir, Config) {
        let td = tempfile::tempdir().unwrap();
        let config = Config::new(td.path().to_str().unwrap());
        (td, config)
    }

    fn records_in_chunk(
        config: &Config,
        chunk_id: ChunkId,
    ) -> Result<Vec<WALRecord<TestWal>>, io::Error> {
        Chunk::<WALRecord<TestWal>>::dump(config, chunk_id)?
            .into_iter()
            .map(|res| res.map(|(_, record)| record))
            .collect()
    }

    #[test]
    fn test_open_append_flush_reopen() -> Result<(), io::Error> {
        let (_td, config) = temp_config();

        {
            let calls = Arc::new(Mutex::new(Vec::new()));
            let (mut wal, mut sm) = open_wal(&config, calls)?;

            append_action(&mut wal, &mut sm, "a")?;
            append_action(&mut wal, &mut sm, "b")?;
            append_action(&mut wal, &mut sm, "c")?;
            sync_flush(&mut wal)?;

            assert_eq!(vec!["a", "b", "c"], sm.values);
            assert!(wal.closed.is_empty());
            assert_eq!(4, wal.open.chunk.records_count());
            assert!(format!("{wal:?}").contains("ChunkedWal"));
        }

        {
            let calls = Arc::new(Mutex::new(Vec::new()));
            let (wal, sm) = open_wal(&config, calls)?;

            assert_eq!(vec!["a", "b", "c"], sm.values);
            assert!(wal.closed.is_empty());
            assert_eq!(4, wal.open.chunk.records_count());
        }

        Ok(())
    }

    #[test]
    fn test_list_chunk_ids_ignores_invalid_file_names() -> Result<(), io::Error>
    {
        let (_td, config) = temp_config();
        std::fs::write(config.chunk_path(ChunkId(12)), [])?;
        std::fs::write(format!("{}/not-a-chunk", config.dir), [])?;

        let lock = ChunkedWal::<TestWal>::acquire_lock(&config)?;
        let chunk_ids = ChunkedWal::<TestWal>::load_chunk_ids(&config, &lock)?;

        assert_eq!(vec![ChunkId(12)], chunk_ids);
        Ok(())
    }

    #[test]
    fn test_rotate_chunk_writes_checkpoint() -> Result<(), io::Error> {
        let (_td, mut config) = temp_config();
        config.chunk_max_records = Some(3);

        let calls = Arc::new(Mutex::new(Vec::new()));
        let (mut wal, mut sm) = open_wal(&config, calls)?;

        append_action(&mut wal, &mut sm, "a")?;
        append_action(&mut wal, &mut sm, "b")?;
        append_action(&mut wal, &mut sm, "c")?;
        sync_flush(&mut wal)?;

        assert_eq!(1, wal.closed.len());
        assert_eq!(
            "a,b",
            wal.closed.first_key_value().unwrap().1.state.as_ref()
        );

        let records = records_in_chunk(&config, wal.open.chunk.chunk_id())?;
        assert_eq!(
            vec![WALRecord::Checkpoint("a,b".to_string()), action("c"),],
            records
        );

        Ok(())
    }

    #[test]
    fn test_reopen_reuses_last_healthy_chunk() -> Result<(), io::Error> {
        let (_td, mut config) = temp_config();
        config.chunk_max_records = Some(3);

        let open_chunk_id = {
            let calls = Arc::new(Mutex::new(Vec::new()));
            let (mut wal, mut sm) = open_wal(&config, calls)?;

            for value in ["a", "b", "c", "d"] {
                append_action(&mut wal, &mut sm, value)?;
            }
            sync_flush(&mut wal)?;

            assert_eq!(2, wal.closed.len());
            wal.open.chunk.chunk_id()
        };

        let calls = Arc::new(Mutex::new(Vec::new()));
        let (wal, sm) = open_wal(&config, calls)?;

        assert_eq!(vec!["a", "b", "c", "d"], sm.values);
        assert_eq!(2, wal.closed.len());
        assert_eq!(open_chunk_id, wal.open.chunk.chunk_id());
        assert_eq!(1, wal.open.chunk.records_count());

        Ok(())
    }

    #[test]
    fn test_reopen_truncates_incomplete_last_record() -> Result<(), io::Error> {
        let (_td, config) = temp_config();

        let truncated_from = {
            let calls = Arc::new(Mutex::new(Vec::new()));
            let (mut wal, mut sm) = open_wal(&config, calls)?;

            append_action(&mut wal, &mut sm, "a")?;
            append_action(&mut wal, &mut sm, "b")?;
            let segment = append_action(&mut wal, &mut sm, "c")?;
            sync_flush(&mut wal)?;

            let chunk_id = wal.open.chunk.chunk_id();
            let f = Chunk::<WALRecord<TestWal>>::open_chunk_file(
                &config, chunk_id,
            )?;
            let damaged_len = segment.end().0 - chunk_id.offset() - 1;
            f.set_len(damaged_len)?;
            damaged_len
        };

        let calls = Arc::new(Mutex::new(Vec::new()));
        let (wal, sm) = open_wal(&config, calls)?;

        assert_eq!(vec!["a", "b"], sm.values);
        assert_eq!(1, wal.closed.len());
        assert_eq!(
            Some(truncated_from),
            wal.last_closed_chunk_truncated_file_size()
        );
        assert_eq!(
            Some(truncated_from),
            wal.closed.first_key_value().unwrap().1.chunk.truncated_file_size()
        );
        assert_eq!(
            WALRecord::Checkpoint("a,b".to_string()),
            wal.open.chunk.read_record(wal.open.chunk.last_segment())?
        );

        Ok(())
    }

    #[test]
    fn test_reopen_truncates_trailing_zeroes() -> Result<(), io::Error> {
        let (_td, config) = temp_config();

        let original_len = {
            let calls = Arc::new(Mutex::new(Vec::new()));
            let (mut wal, mut sm) = open_wal(&config, calls)?;

            append_action(&mut wal, &mut sm, "a")?;
            append_action(&mut wal, &mut sm, "b")?;
            sync_flush(&mut wal)?;

            let chunk_id = wal.open.chunk.chunk_id();
            let original_len = wal.open.chunk.global_end() - chunk_id.offset();
            let mut f = Chunk::<WALRecord<TestWal>>::open_chunk_file(
                &config, chunk_id,
            )?;
            f.seek(io::SeekFrom::Start(original_len))?;
            f.write_all(&[0, 0, 0])?;
            original_len
        };

        let calls = Arc::new(Mutex::new(Vec::new()));
        let (wal, sm) = open_wal(&config, calls)?;

        assert_eq!(vec!["a", "b"], sm.values);
        assert_eq!(1, wal.closed.len());
        assert_eq!(
            Some(original_len + 3),
            wal.last_closed_chunk_truncated_file_size()
        );
        assert_eq!(
            Some(original_len + 3),
            wal.closed.first_key_value().unwrap().1.chunk.truncated_file_size()
        );

        Ok(())
    }

    #[test]
    fn test_reopen_rejects_damaged_trailing_checkpoint() -> Result<(), io::Error>
    {
        let (_td, config) = temp_config();

        {
            let calls = Arc::new(Mutex::new(Vec::new()));
            let (mut wal, mut sm) = open_wal(&config, calls)?;

            append_action(&mut wal, &mut sm, "a")?;
            append_action(&mut wal, &mut sm, "b")?;
            sync_flush(&mut wal)?;

            let chunk_id = wal.open.chunk.chunk_id();
            let original_len = wal.open.chunk.global_end() - chunk_id.offset();
            let mut f = Chunk::<WALRecord<TestWal>>::open_chunk_file(
                &config, chunk_id,
            )?;
            let mut damaged = Vec::new();
            WALRecord::<TestWal>::Checkpoint("bad".to_string())
                .encode(&mut damaged)?;
            *damaged.last_mut().unwrap() ^= 1;

            f.seek(io::SeekFrom::Start(original_len))?;
            f.write_all(&damaged)?;
        }

        let calls = Arc::new(Mutex::new(Vec::new()));
        let err = match open_wal(&config, calls) {
            Ok(_) => panic!("damaged checkpoint record must fail"),
            Err(err) => err,
        };

        assert!(err.to_string().contains("decode Record at offset"));

        Ok(())
    }

    #[test]
    fn test_reopen_rejects_damaged_non_tail_chunk_without_truncating()
    -> Result<(), io::Error> {
        let (_td, mut config) = temp_config();
        config.chunk_max_records = Some(3);

        let (chunk_id, damaged_len) = {
            let calls = Arc::new(Mutex::new(Vec::new()));
            let (mut wal, mut sm) = open_wal(&config, calls)?;

            append_action(&mut wal, &mut sm, "a")?;
            let truncated_segment = append_action(&mut wal, &mut sm, "b")?;
            append_action(&mut wal, &mut sm, "c")?;
            sync_flush(&mut wal)?;

            let chunk_id = *wal.closed.first_key_value().unwrap().0;
            let f = Chunk::<WALRecord<TestWal>>::open_chunk_file(
                &config, chunk_id,
            )?;
            let truncated_len = truncated_segment.end().0 - chunk_id.offset();
            let damaged_len = truncated_len - 1;
            f.set_len(damaged_len)?;
            (chunk_id, damaged_len)
        };

        let calls = Arc::new(Mutex::new(Vec::new()));
        let err = open_wal(&config, calls)
            .expect_err("damaged non-tail chunk must fail");

        assert!(err.to_string().contains("decode Record at offset"));

        let f =
            Chunk::<WALRecord<TestWal>>::open_chunk_file(&config, chunk_id)?;
        assert_eq!(damaged_len, f.metadata()?.len());

        Ok(())
    }

    #[test]
    fn test_on_chunk_persisted_called_on_recovery() -> Result<(), io::Error> {
        let (_td, mut config) = temp_config();
        config.chunk_max_records = Some(3);

        {
            let calls = Arc::new(Mutex::new(Vec::new()));
            let (mut wal, mut sm) = open_wal(&config, calls)?;

            for value in ["a", "b", "c", "d"] {
                append_action(&mut wal, &mut sm, value)?;
            }
            sync_flush(&mut wal)?;
        }

        let calls = Arc::new(Mutex::new(Vec::new()));
        let (_wal, sm) = open_wal(&config, calls.clone())?;

        assert_eq!(vec!["a", "b", "c", "d"], sm.values);
        assert_eq!(
            vec![None, Some("a,b".to_string()), Some("a,b,c,d".to_string()),],
            calls
                .lock()
                .unwrap()
                .iter()
                .map(|call| call.checkpoint.clone())
                .collect::<Vec<_>>()
        );

        Ok(())
    }

    #[test]
    fn test_on_chunk_persisted_tracks_rotated_file() -> Result<(), io::Error> {
        let (_td, mut config) = temp_config();
        config.chunk_max_records = Some(3);

        let calls = Arc::new(Mutex::new(Vec::new()));
        let (mut wal, mut sm) = open_wal(&config, calls.clone())?;

        append_action(&mut wal, &mut sm, "a")?;
        append_action(&mut wal, &mut sm, "b")?;

        let open_start = wal.open.chunk.global_start();
        sync_flush(&mut wal)?;

        assert!(calls.lock().unwrap().contains(&PersistedCall {
            starting_offset: open_start,
            synced_offset: wal.open.chunk.global_end(),
            checkpoint: Some("a,b".to_string()),
        }));

        Ok(())
    }

    #[test]
    fn test_loaded_chunk_accessors() -> Result<(), io::Error> {
        let (_td, mut config) = temp_config();
        config.chunk_max_records = Some(3);

        let calls = Arc::new(Mutex::new(Vec::new()));
        let (mut wal, mut sm) = open_wal(&config, calls)?;

        let segment_a = append_action(&mut wal, &mut sm, "a")?;
        append_action(&mut wal, &mut sm, "b")?;
        append_action(&mut wal, &mut sm, "c")?;
        sync_flush(&mut wal)?;

        let open_chunk_id = wal.open_chunk_id();
        let closed_stats = wal.closed_chunk_stats();
        let open_stat = wal.open_chunk_stat(sm.checkpoint());

        assert_eq!(1, closed_stats.len());
        assert_eq!(ChunkId(0), closed_stats[0].chunk_id);
        assert_eq!(3, closed_stats[0].records_count);
        assert_eq!("a,b", closed_stats[0].log_state);
        assert_eq!(open_chunk_id, open_stat.chunk_id);
        assert_eq!(2, open_stat.records_count);
        assert_eq!("a,b,c", open_stat.log_state);
        assert_eq!(open_stat.global_end, wal.on_disk_size());
        assert_eq!(None, wal.last_closed_chunk_truncated_file_size());

        assert_eq!(
            action("a"),
            wal.closed_chunk_reader().read_record(ChunkId(0), segment_a)?
        );

        let err =
            wal.load_record(&ChunkId(999), Segment::new(999, 1)).unwrap_err();
        assert_eq!(io::ErrorKind::NotFound, err.kind());
        assert!(err.to_string().contains("Chunk not found"));

        let mut dumped = Vec::new();
        wal.dump_loaded_records(|chunk_id, index, res| {
            dumped.push((chunk_id, index, res.map(|(_segment, rec)| rec)?));
            Ok(())
        })?;

        assert_eq!(
            vec![
                (ChunkId(0), 0, WALRecord::Checkpoint(String::new())),
                (ChunkId(0), 1, action("a")),
                (ChunkId(0), 2, action("b")),
                (open_chunk_id, 0, WALRecord::Checkpoint("a,b".to_string())),
                (open_chunk_id, 1, action("c")),
            ],
            dumped
        );

        let drained =
            wal.drain_closed_chunks_while(|checkpoint| checkpoint == "a,b");
        assert_eq!(vec![ChunkId(0)], drained);
        assert!(wal.closed_chunk_stats().is_empty());

        let path = config.chunk_path(ChunkId(0));
        assert!(std::path::Path::new(&path).exists());
        wal.send_remove_chunks(drained)?;
        wal.wait_worker_idle()?;
        assert!(!std::path::Path::new(&path).exists());

        Ok(())
    }

    #[test]
    fn test_drain_closed_chunks_while_stops_at_first_unmatched()
    -> Result<(), io::Error> {
        let (_td, mut config) = temp_config();
        config.chunk_max_records = Some(3);

        let calls = Arc::new(Mutex::new(Vec::new()));
        let (mut wal, mut sm) = open_wal(&config, calls)?;

        for value in ["a", "b", "c", "d", "e"] {
            append_action(&mut wal, &mut sm, value)?;
        }
        sync_flush(&mut wal)?;

        let closed_before = wal
            .closed_chunk_stats()
            .into_iter()
            .map(|stat| (stat.chunk_id, stat.log_state))
            .collect::<Vec<_>>();
        assert_eq!(
            vec![
                (ChunkId(0), "a,b".to_string()),
                (ChunkId(34), "a,b,c,d".to_string()),
            ],
            closed_before
        );

        let drained =
            wal.drain_closed_chunks_while(|checkpoint| checkpoint == "a,b");
        assert_eq!(vec![ChunkId(0)], drained);

        let closed_after = wal
            .closed_chunk_stats()
            .into_iter()
            .map(|stat| (stat.chunk_id, stat.log_state))
            .collect::<Vec<_>>();
        assert_eq!(vec![(ChunkId(34), "a,b,c,d".to_string())], closed_after);

        Ok(())
    }

    #[test]
    fn test_lock_blocks_second_open_and_dump() -> Result<(), io::Error> {
        let (_td, config) = temp_config();

        let calls = Arc::new(Mutex::new(Vec::new()));
        let (wal, _sm) = open_wal(&config, calls.clone())?;

        let err = ChunkedWal::<TestWal>::acquire_lock(&config)
            .expect_err("second lock must fail");
        assert_eq!(io::ErrorKind::WouldBlock, err.kind());

        drop(wal);

        let lock = ChunkedWal::<TestWal>::acquire_lock(&config)?;
        let mut records = Vec::new();
        ChunkedWal::<TestWal>::dump_records(
            &config,
            &lock,
            |chunk_id, i, res| {
                records.push((chunk_id, i, res.map(|(_, record)| record)?));
                Ok(())
            },
        )?;

        assert_eq!(
            vec![(ChunkId(0), 0, WALRecord::Checkpoint(String::new()))],
            records
        );

        Ok(())
    }

    #[test]
    fn test_flush_without_sync_writes_without_advancing_sync_id()
    -> Result<(), io::Error> {
        let (_td, config) = temp_config();
        let calls = Arc::new(Mutex::new(Vec::new()));
        let (mut wal, mut sm) = open_wal(&config, calls)?;

        append_action(&mut wal, &mut sm, "a")?;
        append_action(&mut wal, &mut sm, "b")?;
        no_sync_flush(&mut wal)?;

        assert_eq!(
            vec![(0, 0)],
            wal.get_stat()?
                .iter()
                .map(|stat| stat.offset_sync_id())
                .collect::<Vec<_>>()
        );

        sync_flush(&mut wal)?;

        assert!(
            wal.get_stat()?
                .iter()
                .any(|stat| stat.sync_id == wal.open.chunk.global_end())
        );

        Ok(())
    }

    #[test]
    fn test_worker_failure_wakes_waiter_and_fails_later_waits()
    -> Result<(), io::Error> {
        let (_td, config) = temp_config();
        let calls = Arc::new(Mutex::new(Vec::new()));
        let (mut wal, _sm) = open_wal(&config, calls)?;

        wal.send_remove_chunks(vec![ChunkId(999)])?;

        let err = wal.wait_worker_idle().unwrap_err();
        assert_eq!(io::ErrorKind::NotFound, err.kind());

        let res = wal.send_remove_chunks(vec![ChunkId(999)]);
        if let Err(err) = res {
            assert_eq!(io::ErrorKind::Other, err.kind());
        }

        let err = wal.wait_worker_idle().unwrap_err();
        assert_eq!(io::ErrorKind::NotFound, err.kind());

        Ok(())
    }
}