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
include Index_intf
module Stats = Stats
module Cache = Cache
module Checks = Checks
module Key = struct
module type S = Key
module String_fixed = Data.String_fixed
end
module Value = struct
module type S = Value
module String_fixed = Data.String_fixed
end
let may f = function None -> () | Some bf -> f bf
let assert_and_get = function None -> assert false | Some e -> e
exception RO_not_allowed
exception RW_not_allowed
exception Closed
module Make_private
(K : Key)
(V : Value)
(IO : Io.S)
(Semaphore : SEMAPHORE)
(Thread : THREAD)
(Cache : Cache.S) =
struct
type 'a async = 'a Thread.t
let await = Thread.await
type key = K.t
type value = V.t
let pp_key = Repr.pp K.t
let pp_value = Repr.pp V.t
module Entry = struct
include Data.Entry.Make (K) (V)
module Key = K
module Value = V
let to_key { key; _ } = key
let to_value { value; _ } = value
end
let entry_sizeL = Int64.of_int Entry.encoded_size
module Tbl = Hashtbl.Make (K)
module IO = struct
include Io.Extend (IO)
let page_size = Int64.mul entry_sizeL 1_000L
let iter ?min ?max f =
iter ~page_size ?min ?max (fun ~off ~buf ~buf_off ->
let entry = Entry.decode buf buf_off in
f off entry;
Entry.encoded_size)
end
let iter_io ?min ?max f = IO.iter ?min ?max (fun _ -> f)
type throttle = [ `Overcommit_memory | `Block_writes ]
type config = {
log_size : int;
readonly : bool;
fresh : bool;
throttle : throttle;
flush_callback : unit -> unit;
}
type index = { io : IO.t; fan_out : [ `Read ] Fan.t }
type log = { io : IO.t; mem : value Tbl.t }
type instance = {
config : config;
root : string;
mutable generation : int64;
mutable index : index option;
mutable log : log option;
mutable log_async : log option;
mutable open_instances : int;
writer_lock : IO.Lock.t option;
sync_lock : Semaphore.t;
(** A lock that prevents multiple [sync] to happen at the same time. *)
merge_lock : Semaphore.t;
rename_lock : Semaphore.t;
mutable pending_cancel : bool;
(** Signal the merge thread to terminate prematurely *)
}
include Private_types
let check_pending_cancel instance =
match instance.pending_cancel with true -> `Abort | false -> `Continue
type t = instance option ref
let check_open t =
match !t with Some instance -> instance | None -> raise Closed
let clear' ~hook t =
let t = check_open t in
Log.debug (fun l -> l "clear %S" t.root);
if t.config.readonly then raise RO_not_allowed;
t.pending_cancel <- true;
hook `Abort_signalled;
Semaphore.with_acquire "clear" t.merge_lock (fun () ->
t.pending_cancel <- false;
t.generation <- Int64.succ t.generation;
let log = Option.get t.log in
let hook () = hook `IO_clear in
IO.clear ~generation:t.generation ~hook ~reopen:true log.io;
Tbl.clear log.mem;
Option.iter
(fun (l : log) ->
IO.clear ~generation:t.generation ~reopen:false l.io)
t.log_async;
may
(fun (i : index) ->
IO.clear ~generation:t.generation ~reopen:false i.io)
t.index;
t.index <- None;
t.log_async <- None)
let clear = clear' ~hook:(fun _ -> ())
let flush_instance ?no_async ?no_callback ?(with_fsync = false) instance =
Log.debug (fun l ->
l "[%s] flushing instance" (Filename.basename instance.root));
if instance.config.readonly then raise RO_not_allowed;
instance.log
|> may (fun log ->
Log.debug (fun l ->
l "[%s] flushing log" (Filename.basename instance.root));
IO.flush ?no_callback ~with_fsync log.io);
match (no_async, instance.log_async) with
| Some (), _ | None, None -> ()
| None, Some log ->
Log.debug (fun l ->
l "[%s] flushing log_async" (Filename.basename instance.root));
IO.flush ?no_callback ~with_fsync log.io
let flush ?no_callback ?(with_fsync = false) t =
let t = check_open t in
Log.debug (fun l -> l "[%s] flush" (Filename.basename t.root));
Semaphore.with_acquire "flush" t.rename_lock (fun () ->
flush_instance ?no_callback ~with_fsync t)
module IOArray = Io_array.Make (IO) (Entry)
module Search =
Search.Make (Entry) (IOArray)
(struct
type t = int
module Entry = Entry
let compare : int -> int -> int = compare
let of_entry e = e.Entry.key_hash
let of_key = K.hash
let linear_interpolate ~low:(low_index, low_metric)
~high:(high_index, high_metric) key_metric =
let low_in = float_of_int low_metric in
let high_in = float_of_int high_metric in
let target_in = float_of_int key_metric in
let low_out = Int64.to_float low_index in
let high_out = Int64.to_float high_index in
let proportion = (target_in -. low_in) /. (high_in -. low_in) in
let position = low_out +. (proportion *. (high_out -. low_out)) in
let rounded = ceil (position -. 0.5) +. 0.5 in
Int64.of_float rounded
end)
let try_load_log t path =
Log.debug (fun l ->
l "[%s] checking on-disk %s file" (Filename.basename t.root)
(Filename.basename path));
match IO.v_readonly path with
| Error `No_file_on_disk -> None
| Ok io ->
let mem = Tbl.create 0 in
iter_io (fun e -> Tbl.replace mem e.key e.value) io;
Some { io; mem }
let sync_log_entries ?min log =
let add_log_entry (e : Entry.t) = Tbl.replace log.mem e.key e.value in
if min = None then Tbl.clear log.mem;
iter_io ?min add_log_entry log.io
let sync_log_async ~hook t =
match t.log_async with
| None ->
hook `Reload_log_async;
t.log_async <- try_load_log t (Layout.log_async ~root:t.root)
| Some log ->
let offset = IO.offset log.io in
let h = IO.Header.get log.io in
if
h.generation > Int64.succ t.generation
||
(h.generation = Int64.succ t.generation && h.offset = 0L)
then (
IO.close log.io;
hook `Reload_log_async;
t.log_async <- try_load_log t (Layout.log_async ~root:t.root)
)
else if offset < h.offset then sync_log_entries ~min:offset log
else if offset > h.offset then assert false
let sync_index t =
Option.iter (fun (i : index) -> IO.close i.io) t.index;
let index_path = Layout.data ~root:t.root in
match IO.v_readonly index_path with
| Error `No_file_on_disk -> t.index <- None
| Ok io ->
let fan_out = Fan.import ~hash_size:K.hash_size (IO.get_fanout io) in
if IO.offset io = 0L then t.index <- None
else t.index <- Some { fan_out; io }
let sync_log ?(hook = fun _ -> ()) t =
Semaphore.with_acquire "sync" t.sync_lock @@ fun () ->
Log.debug (fun l ->
l "[%s] checking for changes on disk" (Filename.basename t.root));
(match t.log with
| None -> t.log <- try_load_log t (Layout.log ~root:t.root)
| Some _ -> ());
sync_log_async ~hook t;
match t.log with
| None -> ()
| Some log ->
let log_offset = IO.offset log.io in
hook `Before_offset_read;
let h = IO.Header.get log.io in
hook `After_offset_read;
if t.generation <> h.generation then (
Log.debug (fun l ->
l "[%s] generation has changed: %Ld -> %Ld"
(Filename.basename t.root) t.generation h.generation);
hook `Reload_log;
t.generation <- h.generation;
IO.close log.io;
t.log <- try_load_log t (Layout.log ~root:t.root);
assert (t.log <> None);
sync_index t)
else if log_offset < h.offset then (
Log.debug (fun l ->
l "[%s] new entries detected, reading log from disk"
(Filename.basename t.root));
sync_log_entries ~min:log_offset log)
else
Log.debug (fun l ->
l "[%s] no changes detected" (Filename.basename t.root))
let v_no_cache ?(flush_callback = fun () -> ()) ~throttle ~fresh ~readonly
~log_size root =
Log.debug (fun l ->
l "[%s] not found in cache, creating a new instance"
(Filename.basename root));
let writer_lock =
if not readonly then Some (IO.Lock.lock (Layout.lock ~root)) else None
in
let config =
{
log_size = log_size * Entry.encoded_size;
readonly;
fresh;
throttle;
flush_callback;
}
in
let log_path = Layout.log ~root in
let log =
if readonly then if fresh then raise RO_not_allowed else None
else
let io =
IO.v ~flush_callback ~fresh ~generation:0L ~fan_size:0L log_path
in
let entries = Int64.div (IO.offset io) entry_sizeL in
Log.debug (fun l ->
l "[%s] log file detected. Loading %Ld entries"
(Filename.basename root) entries);
let mem = Tbl.create (Int64.to_int entries) in
iter_io (fun e -> Tbl.replace mem e.key e.value) io;
Some { io; mem }
in
let generation =
match log with None -> 0L | Some log -> IO.get_generation log.io
in
let log_async_path = Layout.log_async ~root in
if (not readonly) && IO.exists log_async_path then (
let io =
IO.v ~flush_callback ~fresh ~generation:0L ~fan_size:0L log_async_path
in
let entries = Int64.div (IO.offset io) entry_sizeL in
Log.debug (fun l ->
l "[%s] log_async file detected. Loading %Ld entries"
(Filename.basename root) entries);
if not fresh then
may
(fun log ->
let append_io = IO.append log.io in
iter_io
(fun e ->
Tbl.replace log.mem e.key e.value;
Entry.encode e append_io)
io;
IO.flush log.io;
IO.clear ~generation ~reopen:false io)
log);
let index =
if readonly then None
else
let index_path = Layout.data ~root in
if IO.exists index_path then
let io =
IO.v ?flush_callback:None ~fresh ~generation ~fan_size:0L index_path
in
let entries = Int64.div (IO.offset io) entry_sizeL in
if entries = 0L then None
else (
Log.debug (fun l ->
l "[%s] index file detected. Loading %Ld entries"
(Filename.basename root) entries);
let fan_out =
Fan.import ~hash_size:K.hash_size (IO.get_fanout io)
in
Some { fan_out; io })
else (
Log.debug (fun l ->
l "[%s] no index file detected." (Filename.basename root));
None)
in
{
config;
generation;
log;
log_async = None;
root;
index;
open_instances = 1;
merge_lock = Semaphore.make true;
rename_lock = Semaphore.make true;
sync_lock = Semaphore.make true;
writer_lock;
pending_cancel = false;
}
type cache = (string * bool, instance) Cache.t
let empty_cache = Cache.create
let v ?(flush_callback = fun () -> ()) ?(cache = empty_cache ())
?(fresh = false) ?(readonly = false) ?(throttle = `Block_writes) ~log_size
root =
let new_instance () =
let instance =
v_no_cache ~flush_callback ~fresh ~readonly ~log_size ~throttle root
in
if readonly then sync_log instance;
Cache.add cache (root, readonly) instance;
ref (Some instance)
in
Log.info (fun l ->
l "[%s] v fresh=%b readonly=%b log_size=%d" (Filename.basename root)
fresh readonly log_size);
match (Cache.find cache (root, readonly), IO.exists (Layout.log ~root)) with
| None, _ -> new_instance ()
| Some _, false ->
Log.debug (fun l ->
l "[%s] does not exist anymore, cleaning up the fd cache"
(Filename.basename root));
Cache.remove cache (root, true);
Cache.remove cache (root, false);
new_instance ()
| Some t, true -> (
match t.open_instances with
| 0 ->
Cache.remove cache (root, readonly);
new_instance ()
| _ ->
Log.debug (fun l ->
l "[%s] found in cache" (Filename.basename root));
t.open_instances <- t.open_instances + 1;
if readonly then sync_log t;
let t = ref (Some t) in
if fresh then clear t;
t)
let interpolation_search index key =
let hashed_key = K.hash key in
let low_bytes, high_bytes = Fan.search index.fan_out hashed_key in
let low, high =
Int64.(div low_bytes entry_sizeL, div high_bytes entry_sizeL)
in
Search.interpolation_search (IOArray.v index.io) key ~low ~high
let find_instance t key =
let find_if_exists ~name ~find db =
match db with
| None -> raise Not_found
| Some e ->
let ans = find e key in
Log.debug (fun l ->
l "[%s] found in %s" (Filename.basename t.root) name);
ans
in
let find_log_async () =
find_if_exists ~name:"log_async"
~find:(fun log -> Tbl.find log.mem)
t.log_async
in
let find_log () =
find_if_exists ~name:"log" ~find:(fun log -> Tbl.find log.mem) t.log
in
let find_index () =
find_if_exists ~name:"index" ~find:interpolation_search t.index
in
Semaphore.with_acquire "find_instance" t.rename_lock @@ fun () ->
match find_log_async () with
| e -> e
| exception Not_found -> (
match find_log () with e -> e | exception Not_found -> find_index ())
let find t key =
let t = check_open t in
Log.debug (fun l -> l "[%s] find %a" (Filename.basename t.root) pp_key key);
find_instance t key
let mem t key =
let t = check_open t in
Log.debug (fun l -> l "[%s] mem %a" (Filename.basename t.root) pp_key key);
match find_instance t key with _ -> true | exception Not_found -> false
let append_buf_fanout fan_out hash buf_str dst_io =
Fan.update fan_out hash (IO.offset dst_io);
IO.append dst_io buf_str
let append_entry_fanout fan_out entry dst_io =
Fan.update fan_out entry.Entry.key_hash (IO.offset dst_io);
Entry.encode entry (IO.append dst_io)
let rec merge_from_log fan_out log log_i hash_e dst_io =
if log_i >= Array.length log then log_i
else
let v = log.(log_i) in
if v.Entry.key_hash >= hash_e then log_i
else (
append_entry_fanout fan_out v dst_io;
(merge_from_log [@tailcall]) fan_out log (log_i + 1) hash_e dst_io)
let append_remaining_log fan_out log log_i dst_io =
for log_i = log_i to Array.length log - 1 do
append_entry_fanout fan_out log.(log_i) dst_io
done
let merge_with ~hook ~yield ~filter log index_io fan_out dst_io =
let entries = 10_000 in
let len = entries * Entry.encoded_size in
let buf = Bytes.create len in
let refill off = ignore (IO.read index_io ~off ~len buf) in
let buf_str = Bytes.create Entry.encoded_size in
let index_end = IO.offset index_io in
refill 0L;
let filter =
Option.fold
~none:(fun _ _ -> true)
~some:(fun f key entry_off ->
let value =
Entry.decode_value (Bytes.unsafe_to_string buf) entry_off
in
f (key, value))
filter
in
let rec go first_entry index_offset buf_offset log_i =
if index_offset >= index_end then (
append_remaining_log fan_out log log_i dst_io;
`Completed)
else
let index_offset = Int64.add index_offset entry_sizeL in
let index_key, index_key_hash =
Entry.decode_key (Bytes.unsafe_to_string buf) buf_offset
in
let log_i = merge_from_log fan_out log log_i index_key_hash dst_io in
match yield () with
| `Abort -> `Aborted
| `Continue ->
Thread.yield ();
if
(log_i >= Array.length log
||
let log_key = log.(log_i).key in
not K.(equal log_key index_key))
&& filter index_key buf_offset
then (
Bytes.blit buf buf_offset buf_str 0 Entry.encoded_size;
append_buf_fanout fan_out index_key_hash
(Bytes.unsafe_to_string buf_str)
dst_io);
if first_entry then hook `After_first_entry;
let buf_offset =
let n = buf_offset + Entry.encoded_size in
if n >= Bytes.length buf then (
refill index_offset;
0)
else n
in
(go [@tailcall]) false index_offset buf_offset log_i
in
(go [@tailcall]) true 0L 0 0
let merge_counter =
let n = ref 0 in
fun () ->
incr n;
!n
(** Merges the entries in [t.log] into the data file, ensuring that concurrent
writes are not lost.
The caller must ensure the following:
- [t.log] has been loaded;
- [t.log_async] has been created;
- [t.merge_lock] is acquired before entry, and released immediately after
this function returns or raises an exception. *)
let unsafe_perform_merge ~witness ~filter ~hook t =
hook `Before;
let log = Option.get t.log in
let generation = Int64.succ t.generation in
let log_array =
Option.iter
(fun f ->
Tbl.filter_map_inplace
(fun key value -> if f (key, value) then Some value else None)
log.mem)
filter;
let b = Array.make (Tbl.length log.mem) witness in
Tbl.fold
(fun key value i ->
b.(i) <- Entry.v key value;
i + 1)
log.mem 0
|> ignore;
Array.fast_sort Entry.compare b;
b
in
let fan_size =
match t.index with
| None -> Tbl.length log.mem
| Some index ->
(Int64.to_int (IO.offset index.io) / Entry.encoded_size)
+ Array.length log_array
in
let fan_out =
Fan.v ~hash_size:K.hash_size ~entry_size:Entry.encoded_size fan_size
in
let merge =
let merge_path = Layout.merge ~root:t.root in
IO.v ~fresh:true ~generation
~fan_size:(Int64.of_int (Fan.exported_size fan_out))
merge_path
in
let merge_result : [ `Index_io of IO.t | `Aborted ] =
match t.index with
| None -> (
match check_pending_cancel t with
| `Abort -> `Aborted
| `Continue ->
let io =
IO.v ~fresh:true ~generation ~fan_size:0L
(Layout.data ~root:t.root)
in
append_remaining_log fan_out log_array 0 merge;
`Index_io io)
| Some index -> (
match
merge_with ~hook
~yield:(fun () -> check_pending_cancel t)
~filter log_array index.io fan_out merge
with
| `Completed -> `Index_io index.io
| `Aborted -> `Aborted)
in
match merge_result with
| `Aborted -> (`Aborted, Mtime.Span.zero)
| `Index_io io ->
let fan_out = Fan.finalize fan_out in
let index = { io; fan_out } in
IO.set_fanout merge (Fan.export index.fan_out);
let before_rename_lock = Mtime_clock.counter () in
let rename_lock_duration =
Semaphore.with_acquire "merge-rename" t.rename_lock (fun () ->
let rename_lock_duration = Mtime_clock.count before_rename_lock in
IO.rename ~src:merge ~dst:index.io;
t.index <- Some index;
t.generation <- generation;
IO.clear ~generation ~reopen:true log.io;
Tbl.clear log.mem;
hook `After_clear;
let log_async = Option.get t.log_async in
let append_io = IO.append log.io in
Tbl.iter
(fun key value ->
Tbl.replace log.mem key value;
Entry.encode' key value append_io)
log_async.mem;
IO.flush ~with_fsync:true log.io;
IO.clear ~generation:(Int64.succ generation) ~reopen:false
log_async.io;
t.log_async <- None;
rename_lock_duration)
in
hook `After;
(`Completed, rename_lock_duration)
let merge' ?(blocking = false) ?filter ?(hook = fun _ -> ()) ~witness
?(force = false) t =
let merge_started = Mtime_clock.counter () in
let merge_id = merge_counter () in
let msg = Fmt.strf "merge { id=%d }" merge_id in
Semaphore.acquire msg t.merge_lock;
let merge_lock_wait = Mtime_clock.count merge_started in
Log.info (fun l ->
let pp_forced ppf () = if force then Fmt.string ppf "; force=true" in
l "[%s] merge started { id=%d%a }" (Filename.basename t.root) merge_id
pp_forced ());
Stats.incr_nb_merge ();
let log_async =
let io =
let log_async_path = Layout.log_async ~root:t.root in
IO.v ~flush_callback:t.config.flush_callback ~fresh:true
~generation:(Int64.succ t.generation) ~fan_size:0L log_async_path
in
let mem = Tbl.create 0 in
{ io; mem }
in
t.log_async <- Some log_async;
flush_instance ~no_async:() ~with_fsync:true t;
let go () =
let merge_result, rename_lock_wait =
Fun.protect
(fun () -> unsafe_perform_merge ~filter ~hook ~witness t)
~finally:(fun () -> Semaphore.release t.merge_lock)
in
let total_duration = Mtime_clock.count merge_started in
let merge_duration = Mtime.Span.abs_diff total_duration merge_lock_wait in
Stats.add_merge_duration merge_duration;
Log.info (fun l ->
let action =
match merge_result with
| `Aborted -> "aborted"
| `Completed -> "completed"
in
l
"[%s] merge %s { id=%d; total-duration=%a; merge-duration=%a; \
merge-lock=%a; rename-lock=%a }"
(Filename.basename t.root) action merge_id Mtime.Span.pp
total_duration Mtime.Span.pp merge_duration Mtime.Span.pp
merge_lock_wait Mtime.Span.pp rename_lock_wait);
merge_result
in
if blocking then go () |> Thread.return else Thread.async go
exception Found of Entry.t
let get_witness t =
match t.log with
| None -> None
| Some log -> (
match
Tbl.iter (fun key value -> raise (Found (Entry.v key value))) log.mem
with
| exception Found e -> Some e
| () -> (
match t.index with
| None -> None
| Some index ->
let buf = Bytes.create Entry.encoded_size in
let n = IO.read index.io ~off:0L ~len:Entry.encoded_size buf in
assert (n = Entry.encoded_size);
Some (Entry.decode (Bytes.unsafe_to_string buf) 0)))
let try_merge_aux ?hook ?(force = false) t =
let t = check_open t in
let witness =
Semaphore.with_acquire "witness" t.rename_lock (fun () -> get_witness t)
in
match witness with
| None ->
Log.debug (fun l -> l "[%s] index is empty" (Filename.basename t.root));
Thread.return `Completed
| Some witness -> (
match t.log with
| None ->
Log.debug (fun l ->
l "[%s] log is empty" (Filename.basename t.root));
Thread.return `Completed
| Some log ->
if
force
|| Int64.compare (IO.offset log.io)
(Int64.of_int t.config.log_size)
> 0
then merge' ~force ?hook ~witness t
else Thread.return `Completed)
let merge t = ignore (try_merge_aux ?hook:None ~force:true t : _ async)
let try_merge t = ignore (try_merge_aux ?hook:None ~force:false t : _ async)
(** [t.merge_lock] is used to detect an ongoing merge. Other operations can
take this lock, but as they are not async, we consider this to be a good
enough approximations. *)
let instance_is_merging t = Semaphore.is_held t.merge_lock
let is_merging t =
let t = check_open t in
if t.config.readonly then raise RO_not_allowed;
instance_is_merging t
let replace' ?hook ?(overcommit = false) t key value =
let t = check_open t in
Stats.incr_nb_replace ();
Log.debug (fun l ->
l "[%s] replace %a %a" (Filename.basename t.root) pp_key key pp_value
value);
if t.config.readonly then raise RO_not_allowed;
let log_limit_reached =
Semaphore.with_acquire "replace" t.rename_lock (fun () ->
let log =
match t.log_async with
| Some log -> log
| None -> assert_and_get t.log
in
Entry.encode' key value (IO.append log.io);
Tbl.replace log.mem key value;
Int64.compare (IO.offset log.io) (Int64.of_int t.config.log_size) > 0)
in
if log_limit_reached && not overcommit then
let is_merging = instance_is_merging t in
match (t.config.throttle, is_merging) with
| `Overcommit_memory, true ->
None
| `Overcommit_memory, false | `Block_writes, _ ->
let hook = hook |> Option.map (fun f stage -> f (`Merge stage)) in
Some (merge' ?hook ~witness:(Entry.v key value) t)
else None
let replace ?overcommit t key value =
ignore (replace' ?hook:None ?overcommit t key value : _ async option)
let replace_with_timer ?sampling_interval t key value =
if sampling_interval <> None then Stats.start_replace ();
replace t key value;
match sampling_interval with
| None -> ()
| Some sampling_interval -> Stats.end_replace ~sampling_interval
let filter t f =
let t = check_open t in
Log.debug (fun l -> l "[%s] filter" (Filename.basename t.root));
if t.config.readonly then raise RO_not_allowed;
let witness =
Semaphore.with_acquire "witness" t.rename_lock (fun () -> get_witness t)
in
match witness with
| None ->
Log.debug (fun l -> l "[%s] index is empty" (Filename.basename t.root))
| Some witness -> (
match Thread.await (merge' ~blocking:true ~filter:f ~witness t) with
| Ok (`Aborted | `Completed) -> ()
| Error (`Async_exn exn) ->
Fmt.failwith "filter: asynchronous exception during merge (%s)"
(Printexc.to_string exn))
let iter f t =
let t = check_open t in
Log.debug (fun l -> l "[%s] iter" (Filename.basename t.root));
match t.log with
| None -> ()
| Some log ->
Tbl.iter f log.mem;
may (fun (i : index) -> iter_io (fun e -> f e.key e.value) i.io) t.index;
Semaphore.with_acquire "iter" t.rename_lock (fun () ->
match t.log_async with None -> () | Some log -> Tbl.iter f log.mem)
let close' ~hook ?immediately it =
let abort_merge =
match immediately with Some () -> true | None -> false
in
match !it with
| None -> Log.debug (fun l -> l "close: instance already closed")
| Some t ->
Log.debug (fun l -> l "[%s] close" (Filename.basename t.root));
if abort_merge then (
t.pending_cancel <- true;
hook `Abort_signalled);
Semaphore.with_acquire "close" t.merge_lock (fun () ->
it := None;
t.open_instances <- t.open_instances - 1;
if t.open_instances = 0 then (
Log.debug (fun l ->
l "[%s] last open instance: closing the file descriptor"
(Filename.basename t.root));
if not t.config.readonly then flush_instance ~with_fsync:true t;
may
(fun l ->
Tbl.clear l.mem;
IO.close l.io)
t.log;
may (fun (i : index) -> IO.close i.io) t.index;
may (fun lock -> IO.Lock.unlock lock) t.writer_lock))
let close = close' ~hook:(fun _ -> ())
let sync' ?hook t =
let f t =
Stats.incr_nb_sync ();
let t = check_open t in
Log.debug (fun l -> l "[%s] sync" (Filename.basename t.root));
if t.config.readonly then sync_log ?hook t else raise RW_not_allowed
in
Stats.sync_with_timer (fun () -> f t)
let sync = sync' ?hook:None
module Checks = Checks.Make (K) (V) (IO)
end
module Make = Make_private
module Private = struct
module Fan = Fan
module Io = Io
module Io_array = Io_array
module Search = Search
module Data = Data
module Layout = Layout
module Hook = struct
type 'a t = 'a -> unit
let v f = f
end
module type S = Private with type 'a hook := 'a Hook.t
module Make = Make_private
end