Source file irmin_bench.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
open Irmin.Export_for_backends
type t = {
root : string;
ncommits : int;
depth : int;
tree_add : int;
display : int;
clear : bool;
gc : int;
}
type stats = { commits : int; size : int; maxrss : int }
let src =
let open Metrics in
let tags = Tags.[] in
let data t =
Data.v
[
int "commits" t.commits;
int "size" ~unit:"MiB" t.size;
int "maxrss" ~unit:"MiB" t.maxrss;
]
in
Src.v "bench" ~tags ~data
open Cmdliner
let log style_renderer level =
Fmt_tty.setup_std_outputs ?style_renderer ();
Logs.set_level level;
Logs.set_reporter (Irmin_test.reporter ());
()
let log = Term.(const log $ Fmt_cli.style_renderer () $ Logs_cli.level ())
let ncommits =
let doc = Arg.info ~doc:"Number of iterations." [ "n"; "ncommits" ] in
Arg.(value @@ opt int 1000 doc)
let depth =
let doc = Arg.info ~doc:"Depth of the tree." [ "d"; "depth" ] in
Arg.(value @@ opt int 30 doc)
let tree_add =
let doc =
Arg.info ~doc:"Number of tree entries added per commit" [ "a"; "tree-add" ]
in
Arg.(value @@ opt int 1000 doc)
let display =
let doc =
Arg.info ~doc:"Number of commits after which the stats are displayed."
[ "s"; "stats" ]
in
Arg.(value @@ opt int 10 doc)
let gc =
let doc =
Arg.info ~doc:"Number of commits after which Gc.full_major is called."
[ "gc" ]
in
Arg.(value @@ opt int 100 doc)
let clear =
let doc = Arg.info ~doc:"Clear the tree after each commit." [ "clear" ] in
Arg.(value @@ flag doc)
let t =
Term.(
const (fun () ncommits depth tree_add display clear gc ->
{ ncommits; depth; tree_add; display; root = "."; clear; gc })
$ log
$ ncommits
$ depth
$ tree_add
$ display
$ clear
$ gc)
module Make (Store : Irmin.Generic_key.KV with type Schema.Contents.t = string) =
struct
let info () = Store.Info.v ~author:"author" ~message:"commit message" 0L
let times ~n ~init f =
let rec go i k =
if i = 0 then k init else go (i - 1) (fun r -> f i r >>= k)
in
go n Lwt.return
let path ~depth n =
let rec aux acc = function
| i when i = depth -> List.rev (string_of_int n :: acc)
| i -> aux (string_of_int i :: acc) (i + 1)
in
aux [] 0
let () =
let usage = Rusage.get SELF in
let ( / ) = Int64.div in
Int64.to_int (usage.maxrss / 1024L / 1024L)
let no_tags x = x
let print_stats ~commits ~size =
let = get_maxrss () in
let size = size () in
Metrics.add src no_tags (fun f -> f { size; commits; maxrss })
let plot_progress n t = Fmt.epr "\rcommits: %4d/%d%!" n t
let init t config =
let tree = Store.Tree.empty () in
let* v = Store.Repo.v config >>= Store.main in
let* tree =
times ~n:t.depth ~init:tree (fun depth tree ->
let paths = Array.init (t.tree_add + 1) (path ~depth) in
times ~n:t.tree_add ~init:tree (fun n tree ->
Store.Tree.add tree paths.(n) "init"))
in
Store.set_tree_exn v ~info [] tree >|= fun () -> Fmt.epr "[init done]\n%!"
let run t config size =
let* r = Store.Repo.v config in
let* v = Store.main r in
Store.Tree.reset_counters ();
let paths = Array.init (t.tree_add + 1) (path ~depth:t.depth) in
let* () =
times ~n:t.ncommits ~init:() (fun i () ->
let* tree = Store.get_tree v [] in
if i mod t.gc = 0 then Gc.full_major ();
if i mod t.display = 0 then (
plot_progress i t.ncommits;
print_stats ~size ~commits:i);
let* tree =
times ~n:t.tree_add ~init:tree (fun n tree ->
Store.Tree.add tree paths.(n) (string_of_int i))
in
Store.set_tree_exn v ~info [] tree >|= fun () ->
if t.clear then Store.Tree.clear tree)
in
Store.Repo.close r >|= fun () -> Fmt.epr "\n[run done]\n%!"
let main t config size =
let root = "_build/_bench" in
let config = config ~root in
let size () = size ~root in
let t = { t with root } in
Lwt_main.run (init t config >>= fun () -> run t config size)
let main_term config size = Term.(const main $ t $ const config $ const size)
let () =
at_exit (fun () ->
Fmt.epr "tree counters:\n%a\n%!" Store.Tree.dump_counters ())
let run ~config ~size =
let info = Cmd.info "Simple benchmark for trees" in
Stdlib.exit @@ Cmd.eval @@ Cmd.v info (main_term config size)
end
let () =
Metrics.enable_all ();
Metrics_gnuplot.set_reporter ()