Source file io_benchmarks.ml
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
open Benchmarks_shell
module Context = Tezos_protocol_environment.Context
module Shell_monad = Tezos_error_monad.Error_monad
module Key_map = Io_helpers.Key_map
let purpose =
Benchmark.Other_purpose "Measuring the time to access context file system"
let ns = Namespace.make Shell_namespace.ns "io"
let ns2 s1 s2 = Namespace.(cons (cons (Shell_namespace.ns "io") s1) s2)
let fv s1 s2 = Free_variable.of_namespace (ns2 s1 s2)
let read_model ~name =
Model.bilinear_affine
~name:(ns2 name "read_model")
~intercept:(fv name "read_latency")
~coeff1:(fv name "depth")
~coeff2:(fv name "storage_bytes_read")
let write_model ~name =
Model.bilinear_affine
~name:(ns2 name "write_model")
~intercept:(fv name "write_latency")
~coeff1:(fv name "keys_written")
~coeff2:(fv name "storage_bytes_write")
module Helpers = struct
let sample_key ~card =
assert (card > 0) ;
let i = string_of_int (Random.int card) in
"key" ^ i
let random_key rng_state ~card ~depth =
let depth = Base_samplers.sample_in_interval rng_state ~range:depth in
Stdlib.List.init depth (fun _ -> sample_key ~card)
let random_contents rng_state base_dir index context key_set commit_batch_size
=
let open Lwt_syntax in
let* index, context, _ =
Key_map.fold_lwt
(fun path size (index, context, current_commit_batch_size) ->
let* context =
Io_helpers.initialize_key rng_state context path size
in
if current_commit_batch_size < commit_batch_size then
Lwt.return (index, context, current_commit_batch_size + 1)
else
let* context, index =
Io_helpers.commit_and_reload base_dir index context
in
Lwt.return (index, context, 0))
key_set
(index, context, 0)
in
Io_helpers.commit_and_reload base_dir index context
let random_key_set rng_state ~depth ~key_card ~insertions =
let rec loop remaining acc =
if remaining = 0 then acc
else
let key = random_key rng_state ~card:key_card ~depth in
match Key_map.does_not_collide key acc with
| `Key_exists | `Key_has_prefix | `Key_has_suffix -> loop remaining acc
| `Key_does_not_collide ->
let size = 1000 in
let acc = Key_map.insert key size acc in
loop (remaining - 1) acc
in
let initial =
let key = random_key rng_state ~card:key_card ~depth in
let size = 1000 in
Key_map.insert key size Key_map.empty
in
loop insertions initial
let prepare_random_context rng_state base_dir commit_batch_size keys =
let context_hash =
Io_helpers.assert_ok ~msg:"Io_helpers.prepare_empty_context"
@@ Lwt_main.run (Io_helpers.prepare_empty_context base_dir)
in
let context, index =
Io_helpers.load_context_from_disk base_dir context_hash
in
Lwt_main.run
(let open Lwt_syntax in
let* context, index =
random_contents rng_state base_dir index context keys commit_batch_size
in
Io_helpers.commit_and_reload base_dir index context)
end
module Context_size_dependent_shared = struct
open Base_samplers
type config = {
depth : range;
storage_chunk_bytes : int;
storage_chunks : range;
insertions : range;
key_card : int;
commit_batch_size : int;
temp_dir : string option;
}
let default_config =
{
depth = {min = 10; max = 1000};
storage_chunk_bytes = 1000;
storage_chunks = {min = 10; max = 1000};
insertions = {min = 100; max = 65536};
key_card = 16;
commit_batch_size = 10_000;
temp_dir = None;
}
let config_encoding =
let open Data_encoding in
let int = int31 in
conv
(fun {
depth;
storage_chunk_bytes;
storage_chunks;
insertions;
key_card;
commit_batch_size;
temp_dir;
} ->
( depth,
storage_chunk_bytes,
storage_chunks,
insertions,
key_card,
commit_batch_size,
temp_dir ))
(fun ( depth,
storage_chunk_bytes,
storage_chunks,
insertions,
key_card,
commit_batch_size,
temp_dir ) ->
{
depth;
storage_chunk_bytes;
storage_chunks;
insertions;
key_card;
commit_batch_size;
temp_dir;
})
(obj7
(req "depth" range_encoding)
(req "storage_chunk_bytes" int)
(req "storage_chunks" range_encoding)
(req "insertions" range_encoding)
(req "key_card" int)
(req "commit_batch_size" int)
(opt "temp_dir" string))
let rec sample_accessed_key rng_state cfg keys =
let key =
Helpers.random_key rng_state ~card:cfg.key_card ~depth:cfg.depth
in
match Key_map.does_not_collide key keys with
| `Key_exists | `Key_has_prefix | `Key_has_suffix ->
sample_accessed_key rng_state cfg keys
| `Key_does_not_collide ->
let size =
Base_samplers.sample_in_interval rng_state ~range:cfg.storage_chunks
* cfg.storage_chunk_bytes
in
(key, size)
type workload =
| Random_context_random_access of {
depth : int;
storage_bytes : int;
context_size : int;
}
let workload_encoding =
let open Data_encoding in
conv
(fun (Random_context_random_access {depth; storage_bytes; context_size}) ->
(depth, storage_bytes, context_size))
(fun (depth, storage_bytes, context_size) ->
Random_context_random_access {depth; storage_bytes; context_size})
(tup3 int31 int31 int31)
let workload_to_vector = function
| Random_context_random_access {depth; storage_bytes; context_size} ->
let keys =
[
("depth", float_of_int depth);
("storage_bytes", float_of_int storage_bytes);
("context_size", float_of_int context_size);
]
in
Sparse_vec.String.of_list keys
end
module Context_size_dependent_read_bench = struct
let name = ns "CONTEXT_SIZE_DEPENDENT_READ"
let info =
"Benchmarking the read accesses with contexts of various sizes (with fixed \
storage size except for the accessed key)"
let tags = ["io"]
let module_filename = __FILE__
let purpose = purpose
include Context_size_dependent_shared
let create_benchmark ~rng_state cfg =
let insertions =
Base_samplers.sample_in_interval rng_state ~range:cfg.insertions
in
let keys =
Helpers.random_key_set
rng_state
~depth:cfg.depth
~key_card:cfg.key_card
~insertions
in
let random_key, value_size = sample_accessed_key rng_state cfg keys in
let keys = Key_map.insert random_key value_size keys in
Format.eprintf "preparing bench: insertions = %d@." insertions ;
let closure context =
match
Lwt_main.run
(Tezos_protocol_environment.Context.find context random_key)
with
| Some _ -> ()
| None ->
let s = String.concat "/" random_key in
Format.eprintf "key %s not found@." s ;
exit 1
in
let workload =
Random_context_random_access
{
depth = List.length random_key;
storage_bytes = value_size;
context_size = insertions;
}
in
let with_context f =
let base_dir =
Filename.temp_file ?temp_dir:cfg.temp_dir (Namespace.basename name) ""
in
Io_helpers.prepare_base_dir base_dir ;
let context, index =
Helpers.prepare_random_context
rng_state
base_dir
cfg.commit_batch_size
keys
in
let finalizer () =
Gc.compact () ;
Lwt_main.run
(let open Lwt_syntax in
let* () = Tezos_context.Context.close index in
Tezos_stdlib_unix.Lwt_utils_unix.remove_dir base_dir)
in
let result =
try f context
with _ ->
finalizer () ;
exit 1
in
finalizer () ;
result
in
Generator.With_context {workload; closure; with_context}
let group = Benchmark.Group "io"
let model =
Model.make
~conv:(function
| Random_context_random_access {depth; storage_bytes; _} ->
(depth, (storage_bytes, ())))
(read_model ~name:"context_dependent")
end
let () = Registration.register_simple (module Context_size_dependent_read_bench)
module Context_size_dependent_write_bench = struct
include Context_size_dependent_shared
let name = ns "CONTEXT_SIZE_DEPENDENT_WRITE"
let info =
"Benchmarking the write accesses with contexts of various sizes (with \
fixed storage size except for the written key)"
let module_filename = __FILE__
let purpose = purpose
let tags = ["io"]
let write_storage context key bytes =
Lwt_main.run (Tezos_protocol_environment.Context.add context key bytes)
let group = Benchmark.Group "io"
let model =
Model.make
~conv:(function
| Random_context_random_access {depth; storage_bytes; _} ->
(depth, (storage_bytes, ())))
(write_model ~name:"context_dependent")
let create_benchmark ~rng_state cfg =
let insertions =
Base_samplers.sample_in_interval rng_state ~range:cfg.insertions
in
let keys =
Helpers.random_key_set
rng_state
~depth:cfg.depth
~key_card:cfg.key_card
~insertions
in
let random_key, value_size = sample_accessed_key rng_state cfg keys in
Format.eprintf "preparing bench: insertions = %d@." insertions ;
let closure context =
Lwt_main.run
(let open Lwt_syntax in
let* _ = Io_helpers.commit context in
Lwt.return_unit)
in
let workload =
Random_context_random_access
{
depth = List.length random_key;
storage_bytes = value_size;
context_size = insertions;
}
in
let with_context f =
let base_dir =
Filename.temp_file ?temp_dir:cfg.temp_dir (Namespace.basename name) ""
in
Io_helpers.prepare_base_dir base_dir ;
let context, index =
Helpers.prepare_random_context
rng_state
base_dir
cfg.commit_batch_size
keys
in
let bytes = Base_samplers.uniform_bytes rng_state ~nbytes:value_size in
let context = write_storage context random_key bytes in
let finalizer () =
Gc.compact () ;
Lwt_main.run
(let open Lwt_syntax in
let* () = Tezos_context.Context.close index in
Tezos_stdlib_unix.Lwt_utils_unix.remove_dir base_dir)
in
let result =
try f context
with _ ->
finalizer () ;
exit 1
in
finalizer () ;
result
in
Generator.With_context {workload; closure; with_context}
end
let () =
Registration.register_simple (module Context_size_dependent_write_bench)
module Irmin_pack_shared = struct
open Base_samplers
type config = {
depth : range;
insertions : range;
key_card : int;
irmin_pack_max_width : int;
storage_chunk_bytes : int;
storage_chunks : range;
default_storage_bytes : int;
commit_batch_size : int;
temp_dir : string option;
}
let config_encoding =
let open Data_encoding in
let int = int31 in
conv
(fun {
depth;
insertions;
key_card;
irmin_pack_max_width;
storage_chunk_bytes;
storage_chunks;
default_storage_bytes;
commit_batch_size;
temp_dir;
} ->
( depth,
insertions,
key_card,
irmin_pack_max_width,
storage_chunk_bytes,
storage_chunks,
default_storage_bytes,
commit_batch_size,
temp_dir ))
(fun ( depth,
insertions,
key_card,
irmin_pack_max_width,
storage_chunk_bytes,
storage_chunks,
default_storage_bytes,
commit_batch_size,
temp_dir ) ->
{
depth;
insertions;
key_card;
irmin_pack_max_width;
storage_chunk_bytes;
storage_chunks;
default_storage_bytes;
commit_batch_size;
temp_dir;
})
(obj9
(req "depth" range_encoding)
(req "insertions" range_encoding)
(req "key_card" int)
(req "irmin_pack_max_width" int)
(req "storage_chunk_bytes" int)
(req "storage_chunks" range_encoding)
(req "default_storage_bytes" int)
(req "commit_batch_size" int)
(opt "temp_dir" string))
let default_config =
{
depth = {min = 3; max = 30};
insertions = {min = 100; max = 65536};
key_card = 64;
irmin_pack_max_width = 8192;
storage_chunk_bytes = 1000;
storage_chunks = {min = 1; max = 50};
default_storage_bytes = 1000;
commit_batch_size = 10_000;
temp_dir = None;
}
let rec sample_irmin_directory_key rng_state (cfg : config) keys =
let key =
Helpers.random_key rng_state ~card:cfg.key_card ~depth:cfg.depth
in
match Key_map.does_not_collide key keys with
| `Key_exists | `Key_has_prefix | `Key_has_suffix ->
sample_irmin_directory_key rng_state cfg keys
| `Key_does_not_collide -> key
let irmin_pack_key i = "pack_" ^ string_of_int i
let sample_irmin_directory rng_state ~cfg ~key_set =
if cfg.irmin_pack_max_width < 256 then
Stdlib.failwith
"Irmin_pack_read_bench: irmin_pack_max_width < 256, invalid \
configuration"
else
let prefix = sample_irmin_directory_key rng_state cfg key_set in
let dir_width =
Base_samplers.sample_in_interval
rng_state
~range:{min = 256; max = cfg.irmin_pack_max_width}
in
let files_under_big_directory =
Array.init dir_width (fun i -> prefix @ [irmin_pack_key i])
in
(prefix, files_under_big_directory)
end
module Irmin_pack_read_bench = struct
include Irmin_pack_shared
let prepare_irmin_directory rng_state ~cfg ~key_set =
if cfg.irmin_pack_max_width < 256 then
Stdlib.failwith
"Irmin_pack_read_bench: irmin_pack_max_width < 256, invalid \
configuration"
else
let _prefix, files_under_big_directory =
sample_irmin_directory rng_state ~cfg ~key_set
in
let dir_width = Array.length files_under_big_directory in
let target_index = Random.int dir_width in
let target_key = files_under_big_directory.(target_index) in
let value_size =
Base_samplers.sample_in_interval rng_state ~range:cfg.storage_chunks
* cfg.storage_chunk_bytes
in
let key_set =
let acc = ref key_set in
Array.iteri
(fun index key ->
if index = target_index then
acc := Key_map.insert key value_size !acc
else acc := Key_map.insert key cfg.default_storage_bytes !acc)
files_under_big_directory ;
!acc
in
(target_key, value_size, key_set, files_under_big_directory)
let name = ns "IRMIN_PACK_READ"
let info = "Benchmarking read accesses in irmin-pack directories"
let module_filename = __FILE__
let purpose = purpose
let tags = ["io"]
type workload =
| Irmin_pack_read of {
depth : int;
irmin_width : int;
storage_bytes : int;
context_size : int;
}
let workload_to_vector = function
| Irmin_pack_read {depth; irmin_width; storage_bytes; context_size} ->
let keys =
[
("depth", float_of_int depth);
("irmin_width", float_of_int irmin_width);
("storage_bytes", float_of_int storage_bytes);
("context_size", float_of_int context_size);
]
in
Sparse_vec.String.of_list keys
let model =
Model.make
~conv:(function
| Irmin_pack_read {depth; storage_bytes; _} ->
(depth, (storage_bytes, ())))
(read_model ~name:"irmin")
let group = Benchmark.Group "io"
let workload_encoding =
let open Data_encoding in
conv
(fun (Irmin_pack_read {depth; irmin_width; storage_bytes; context_size}) ->
(depth, irmin_width, storage_bytes, context_size))
(fun (depth, irmin_width, storage_bytes, context_size) ->
Irmin_pack_read {depth; irmin_width; storage_bytes; context_size})
(tup4 int31 int31 int31 int31)
let create_benchmark ~rng_state (cfg : config) =
let insertions =
Base_samplers.sample_in_interval rng_state ~range:cfg.insertions
in
let keys =
Helpers.random_key_set
rng_state
~depth:cfg.depth
~key_card:cfg.key_card
~insertions
in
let target_key, value_size, keys, irmin_pack_paths =
prepare_irmin_directory rng_state ~cfg ~key_set:keys
in
let irmin_width = Array.length irmin_pack_paths in
let stats = Io_stats.tree_statistics keys in
Format.eprintf
"preparing bench: insertions = %d, stats = %a@."
(insertions + irmin_width)
Io_stats.pp
stats ;
let closure context =
match Lwt_main.run (Context.find context target_key) with
| Some _ -> ()
| None ->
let s = String.concat "/" target_key in
Format.eprintf "key %s not found@." s ;
exit 1
in
let workload =
Irmin_pack_read
{
depth = List.length target_key;
irmin_width;
storage_bytes = value_size;
context_size = stats.total;
}
in
let with_context f =
let base_dir =
Filename.temp_file ?temp_dir:cfg.temp_dir (Namespace.basename name) ""
in
Io_helpers.prepare_base_dir base_dir ;
let context, index =
Helpers.prepare_random_context
rng_state
base_dir
cfg.commit_batch_size
keys
in
let finalizer () =
Gc.compact () ;
Lwt_main.run
(let open Lwt_syntax in
let* () = Tezos_context.Context.close index in
Tezos_stdlib_unix.Lwt_utils_unix.remove_dir base_dir)
in
let result =
try f context
with _ ->
finalizer () ;
exit 1
in
finalizer () ;
result
in
Generator.With_context {workload; closure; with_context}
end
let () = Registration.register_simple (module Irmin_pack_read_bench)
module Irmin_pack_write_bench = struct
include Irmin_pack_shared
let prepare_irmin_directory rng_state ~cfg ~key_set ~bench_init =
if cfg.irmin_pack_max_width < 256 then
Stdlib.failwith
"Irmin_pack_read_bench: irmin_pack_max_width < 256, invalid \
configuration"
else
let _prefix, directories =
sample_irmin_directory rng_state ~cfg ~key_set
in
let total_keys_in_pack = Array.length directories in
let number_of_keys_written = Random.int total_keys_in_pack in
let keys_written_to, keys_not_written_to =
Io_helpers.sample_without_replacement
number_of_keys_written
(Array.to_list directories)
in
let key_set =
List.fold_left
(fun key_set key ->
Key_map.insert key cfg.default_storage_bytes key_set)
key_set
keys_not_written_to
in
let key_set =
if bench_init then
key_set
else
List.fold_left
(fun key_set key ->
Key_map.insert key cfg.default_storage_bytes key_set)
key_set
keys_written_to
in
( number_of_keys_written,
keys_written_to,
keys_not_written_to,
key_set,
total_keys_in_pack )
let name = ns "IRMIN_PACK_WRITE"
let info = "Benchmarking write accesses in irmin-pack directories"
let module_filename = __FILE__
let purpose = purpose
let tags = ["io"]
type workload =
| Irmin_pack_write of {
keys_written : int;
irmin_width : int;
storage_bytes : int;
context_size : int;
}
let workload_encoding =
let open Data_encoding in
conv
(fun (Irmin_pack_write
{keys_written; irmin_width; storage_bytes; context_size}) ->
(keys_written, irmin_width, storage_bytes, context_size))
(fun (keys_written, irmin_width, storage_bytes, context_size) ->
Irmin_pack_write
{keys_written; irmin_width; storage_bytes; context_size})
(tup4 int31 int31 int31 int31)
let workload_to_vector = function
| Irmin_pack_write {keys_written; irmin_width; storage_bytes; context_size}
->
let keys =
[
("keys_written", float_of_int keys_written);
("irmin_width", float_of_int irmin_width);
("storage_bytes", float_of_int storage_bytes);
("context_size", float_of_int context_size);
]
in
Sparse_vec.String.of_list keys
let model =
Model.make
~conv:(function
| Irmin_pack_write {keys_written; storage_bytes; _} ->
(keys_written, (storage_bytes, ())))
(write_model ~name:"irmin")
let group = Benchmark.Group "io"
let write_storage context key bytes =
Lwt_main.run (Context.add context key bytes)
let create_benchmark ~rng_state (cfg : config) =
let insertions =
Base_samplers.sample_in_interval rng_state ~range:cfg.insertions
in
let keys =
Helpers.random_key_set
rng_state
~depth:cfg.depth
~key_card:cfg.key_card
~insertions
in
let ( number_of_keys_written,
keys_written_to,
_keys_not_written_to,
key_set,
total_keys_in_pack ) =
prepare_irmin_directory rng_state ~cfg ~key_set:keys ~bench_init:true
in
let stats = Io_stats.tree_statistics keys in
Format.eprintf
"preparing bench: insertions = %d, stats = %a@."
(insertions + total_keys_in_pack)
Io_stats.pp
stats ;
let base_dir =
Filename.temp_file ?temp_dir:cfg.temp_dir (Namespace.basename name) ""
in
let value_size =
Base_samplers.sample_in_interval rng_state ~range:cfg.storage_chunks
* cfg.storage_chunk_bytes
in
let with_context f =
Io_helpers.prepare_base_dir base_dir ;
let context, index =
Helpers.prepare_random_context
rng_state
base_dir
cfg.commit_batch_size
key_set
in
let context =
List.fold_left
(fun context key ->
let bytes =
Base_samplers.uniform_bytes rng_state ~nbytes:value_size
in
write_storage context key bytes)
context
keys_written_to
in
let finalizer () =
Gc.compact () ;
Lwt_main.run
(let open Lwt_syntax in
let* () = Tezos_context.Context.close index in
Tezos_stdlib_unix.Lwt_utils_unix.remove_dir base_dir)
in
let result =
try f context
with _ ->
finalizer () ;
exit 1
in
finalizer () ;
result
in
let closure context =
Lwt_main.run
(let open Lwt_syntax in
let* _ = Io_helpers.commit context in
Lwt.return_unit)
in
let workload =
Irmin_pack_write
{
keys_written = number_of_keys_written;
irmin_width = total_keys_in_pack;
storage_bytes = value_size;
context_size = stats.total;
}
in
Generator.With_context {workload; closure; with_context}
end
let () = Registration.register_simple (module Irmin_pack_write_bench)
module Read_random_key_bench = struct
type config = {
existing_context : string * Context_hash.t;
subdirectory : string;
}
let default_config =
{
existing_context = ("/no/such/directory", Context_hash.zero);
subdirectory = "/no/such/key";
}
let config_encoding =
let open Data_encoding in
conv
(fun {existing_context; subdirectory} -> (existing_context, subdirectory))
(fun (existing_context, subdirectory) -> {existing_context; subdirectory})
(obj2
(req "existing_context" (tup2 string Context_hash.encoding))
(req "subdirectory" string))
let name = ns "READ_RANDOM_KEY"
let info = "Benchmarking random read accesses in a subdirectory"
let module_filename = __FILE__
let purpose = purpose
let tags = ["io"]
type workload = Read_random_key of {depth : int; storage_bytes : int}
let workload_encoding =
let open Data_encoding in
conv
(function
| Read_random_key {depth; storage_bytes} -> (depth, storage_bytes))
(fun (depth, storage_bytes) -> Read_random_key {depth; storage_bytes})
(tup2 int31 int31)
let workload_to_vector = function
| Read_random_key {depth; storage_bytes} ->
let keys =
[
("depth", float_of_int depth);
("storage_bytes", float_of_int storage_bytes);
]
in
Sparse_vec.String.of_list keys
let group = Benchmark.Group "io"
let model =
Model.make
~conv:(function
| Read_random_key {depth; storage_bytes} -> (depth, (storage_bytes, ())))
(read_model ~name:"random")
let make_bench rng_state config keys () =
let card = Array.length keys in
assert (card > 0) ;
let key, value_size = keys.(Random.State.int rng_state card) in
let with_context f =
let context, index =
let base_dir, context_hash = config.existing_context in
Io_helpers.load_context_from_disk base_dir context_hash
in
let finalizer () =
Gc.compact () ;
Lwt_main.run (Tezos_context.Context.close index)
in
let result =
try f context
with _ ->
finalizer () ;
exit 1
in
finalizer () ;
result
in
let closure context =
match Lwt_main.run (Context.find context key) with
| Some _ -> ()
| None ->
let s = String.concat "/" key in
Format.eprintf "key %s not found@." s ;
exit 1
in
let workload =
Read_random_key {depth = List.length key; storage_bytes = value_size}
in
Generator.With_context {workload; closure; with_context}
let create_benchmarks ~rng_state ~bench_num config =
let base_dir, context_hash = config.existing_context in
let tree =
Io_helpers.with_context ~base_dir ~context_hash (fun context ->
Io_stats.load_tree context
@@ Option.value_f ~default:(fun () ->
Stdlib.failwith
(Format.asprintf
"%a: invalid config subdirectory"
Namespace.pp
name))
@@ Io_helpers.split_absolute_path config.subdirectory)
in
let keys = Array.of_seq @@ Io_helpers.Key_map.to_seq tree in
List.repeat bench_num (make_bench rng_state config keys)
end
let () = Registration.register_simple_with_num (module Read_random_key_bench)
module Write_random_keys_bench = struct
open Base_samplers
type config = {
existing_context : string * Context_hash.t;
storage_chunk_bytes : int;
storage_chunks : range;
max_written_keys : int;
temp_dir : string option;
subdirectory : string;
}
let default_config =
{
existing_context = ("/no/such/directory", Context_hash.zero);
storage_chunk_bytes = 1000;
storage_chunks = {min = 1; max = 1000};
max_written_keys = 10_000;
temp_dir = None;
subdirectory = "/no/such/key";
}
let config_encoding =
let open Data_encoding in
let int = int31 in
conv
(fun {
existing_context;
storage_chunk_bytes;
storage_chunks;
max_written_keys;
temp_dir;
subdirectory;
} ->
( existing_context,
storage_chunk_bytes,
storage_chunks,
max_written_keys,
temp_dir,
subdirectory ))
(fun ( existing_context,
storage_chunk_bytes,
storage_chunks,
max_written_keys,
temp_dir,
subdirectory ) ->
{
existing_context;
storage_chunk_bytes;
storage_chunks;
max_written_keys;
temp_dir;
subdirectory;
})
(obj6
(req "existing_context" (tup2 string Context_hash.encoding))
(req "storage_chunk_bytes" int)
(req "storage_chunks" range_encoding)
(req "max_written_keys" int)
(req "temp_dir" (option string))
(req "subdirectory" string))
let name = ns "WRITE_RANDOM_KEYS"
let info = "Benchmarking random read accesses in a subdirectory"
let module_filename = __FILE__
let purpose = purpose
let tags = ["io"]
type workload =
| Write_random_keys of {keys_written : int; storage_bytes : int}
let workload_encoding =
let open Data_encoding in
conv
(function
| Write_random_keys {keys_written; storage_bytes} ->
(keys_written, storage_bytes))
(fun (keys_written, storage_bytes) ->
Write_random_keys {keys_written; storage_bytes})
(tup2 int31 int31)
let workload_to_vector = function
| Write_random_keys {keys_written; storage_bytes} ->
let keys =
[
("keys_written", float_of_int keys_written);
("storage_bytes", float_of_int storage_bytes);
]
in
Sparse_vec.String.of_list keys
let group = Benchmark.Group "io"
let model =
Model.make
~conv:(function
| Write_random_keys {keys_written; storage_bytes; _} ->
(keys_written, (storage_bytes, ())))
(write_model ~name:"random")
let write_storage context key bytes =
Lwt_main.run (Context.add context key bytes)
let make_bench rng_state (cfg : config) (keys : (string list * int) list) () =
let total_keys_under_directory = List.length keys in
let number_of_keys_written =
min
total_keys_under_directory
(Random.State.int rng_state cfg.max_written_keys)
in
let keys_written_to, _keys_not_written_to =
Io_helpers.sample_without_replacement number_of_keys_written keys
in
let source_base_dir, context_hash = cfg.existing_context in
let value_size =
Base_samplers.sample_in_interval rng_state ~range:cfg.storage_chunks
* cfg.storage_chunk_bytes
in
let with_context f =
let target_base_dir =
let temp_dir = Option.value cfg.temp_dir ~default:"/tmp" in
Format.asprintf
"%s/%s_%d"
temp_dir
(Namespace.basename name)
(Random.int 65536)
in
Io_helpers.copy_rec source_base_dir target_base_dir ;
Format.eprintf "Finished copying original context to %s@." target_base_dir ;
let context, index =
Io_helpers.load_context_from_disk target_base_dir context_hash
in
let context =
List.fold_left
(fun context (key, _) ->
let bytes =
Base_samplers.uniform_bytes rng_state ~nbytes:value_size
in
write_storage context key bytes)
context
keys_written_to
in
let finalizer () =
Gc.compact () ;
Lwt_main.run
(let open Lwt_syntax in
let* () = Tezos_context.Context.close index in
Tezos_stdlib_unix.Lwt_utils_unix.remove_dir target_base_dir)
in
let result =
try f context
with _ ->
finalizer () ;
exit 1
in
finalizer () ;
result
in
let closure context =
Lwt_main.run
(let open Lwt_syntax in
let* _context_hash = Io_helpers.commit context in
Lwt.return_unit)
in
let workload =
Write_random_keys
{keys_written = number_of_keys_written; storage_bytes = value_size}
in
Generator.With_context {workload; closure; with_context}
let create_benchmarks ~rng_state ~bench_num config =
let base_dir, context_hash = config.existing_context in
let tree =
Io_helpers.with_context ~base_dir ~context_hash (fun context ->
Io_stats.load_tree context
@@ Option.value_f ~default:(fun () ->
Stdlib.failwith
(Format.asprintf
"%a: invalid config subdirectory"
Namespace.pp
name))
@@ Io_helpers.split_absolute_path config.subdirectory)
in
let keys = List.of_seq @@ Io_helpers.Key_map.to_seq tree in
List.repeat bench_num (make_bench rng_state config keys)
end
let () = Registration.register_simple_with_num (module Write_random_keys_bench)