forked from domsj/orocksdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rocks_options.ml
481 lines (391 loc) · 19.3 KB
/
rocks_options.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
open Ctypes
open Foreign
open Rocks_common
module Cache =
struct
type nonrec t = t
let t = t
let get_pointer = get_pointer
let create_no_gc =
(* extern rocksdb_cache_t* rocksdb_cache_create_lru(size_t capacity); *)
foreign
"rocksdb_cache_create_lru"
(Views.int_to_size_t @-> returning t)
let destroy =
(* extern void rocksdb_cache_destroy(rocksdb_cache_t* cache); *)
make_destroy t "rocksdb_cache_destroy"
let create capacity =
let t = create_no_gc capacity in
Gc.finalise destroy t;
t
let with_t capacity f =
let t = create_no_gc capacity in
finalize
(fun () -> f t)
(fun () -> destroy t)
let create_setter property_name property_typ =
foreign
("rocksdb_cache_" ^ property_name)
(t @-> property_typ @-> returning void)
let set_capacity = create_setter "set_capacity" int
end
module Snapshot =
struct
type nonrec t = t
let t = t
end
module BlockBasedTableOptions =
struct
include CreateConstructors(struct
let name = "block_based_table_options"
let constructor = "rocksdb_block_based_options_create"
let destructor = "rocksdb_block_based_options_destroy"
let setter_prefix = "rocksdb_block_based_options_"
end)
(* extern void rocksdb_block_based_options_set_block_size( *)
(* rocksdb_block_based_table_options_t* options, size_t block_size); *)
let set_block_size =
create_setter "set_block_size" Views.int_to_size_t
(* extern void rocksdb_block_based_options_set_block_size_deviation( *)
(* rocksdb_block_based_table_options_t* options, int block_size_deviation); *)
let set_block_size_deviation =
create_setter "set_block_size_deviation" int
(* extern void rocksdb_block_based_options_set_block_restart_interval( *)
(* rocksdb_block_based_table_options_t* options, int block_restart_interval); *)
let set_block_restart_interval =
create_setter "set_block_restart_interval" int
(* extern void rocksdb_block_based_options_set_filter_policy( *)
(* rocksdb_block_based_table_options_t* options, *)
(* rocksdb_filterpolicy_t* filter_policy); *)
(* let set_filter_policy = *)
(* create_setter "set_filter_policy" TODO *)
(* extern void rocksdb_block_based_options_set_no_block_cache( *)
(* rocksdb_block_based_table_options_t* options, *)
(* unsigned char no_block_cache); *)
let set_no_block_cache =
create_setter "set_no_block_cache" Views.bool_to_uchar
(* extern void rocksdb_block_based_options_set_block_cache( *)
(* rocksdb_block_based_table_options_t* options, rocksdb_cache_t* block_cache); *)
let set_block_cache =
create_setter "set_block_cache" Cache.t
(* extern void rocksdb_block_based_options_set_whole_key_filtering( *)
(* rocksdb_block_based_table_options_t*, unsigned char); *)
let set_whole_key_filtering =
create_setter "set_whole_key_filtering" Views.bool_to_uchar
(* extern void rocksdb_block_based_options_set_format_version( *)
(* rocksdb_block_based_table_options_t*, int); *)
let set_format_version =
create_setter "set_format_version" int
module IndexType =
struct
type t = int
let binary_search = 0
let hash_search = 1
end
(* enum { *)
(* rocksdb_block_based_table_index_type_binary_search = 0, *)
(* rocksdb_block_based_table_index_type_hash_search = 1, *)
(* }; *)
(* extern void rocksdb_block_based_options_set_index_type( *)
(* rocksdb_block_based_table_options_t*, int); // uses one of the above enums *)
let set_index_type =
create_setter "set_index_type" int
(* extern void rocksdb_block_based_options_set_cache_index_and_filter_blocks( *)
(* rocksdb_block_based_table_options_t*, unsigned char); *)
let set_cache_index_and_filter_blocks =
create_setter "set_cache_index_and_filter_blocks" Views.bool_to_uchar
end
module Options = struct
module SliceTransform = struct
type t = Rocks_common.t
let t = Rocks_common.t
module Noop = struct
include CreateConstructors(struct
let super_name = "slicetransform"
let name = "noop"
let constructor = "rocksdb_" ^ super_name ^ "_create_" ^ name
let destructor = "rocksdb_" ^ super_name ^ "_destroy"
let setter_prefix = "rocksdb_" ^ super_name ^ "_" ^ name ^ "_"
end)
end
end
(* extern rocksdb_options_t* rocksdb_options_create(); *)
(* extern void rocksdb_options_destroy(rocksdb_options_t*\); *)
module C = CreateConstructors_(struct let name = "options" end)
include C
(* extern void rocksdb_options_increase_parallelism( *)
(* rocksdb_options_t* opt, int total_threads); *)
let increase_parallelism = create_setter "increase_parallelism" int
(* extern void rocksdb_options_optimize_for_point_lookup( *)
(* rocksdb_options_t* opt, uint64_t block_cache_size_mb); *)
let optimize_for_point_lookup =
create_setter "optimize_for_point_lookup" Views.int_to_uint64_t
(* extern void rocksdb_options_optimize_level_style_compaction( *)
(* rocksdb_options_t* opt, uint64_t memtable_memory_budget); *)
let optimize_level_style_compaction =
create_setter "optimize_level_style_compaction" Views.int_to_uint64_t
(* extern void rocksdb_options_optimize_universal_style_compaction( *)
(* rocksdb_options_t* opt, uint64_t memtable_memory_budget); *)
let optimize_universal_style_compaction =
create_setter "optimize_universal_style_compaction" Views.int_to_uint64_t
(* extern void rocksdb_options_set_compaction_filter( *)
(* rocksdb_options_t*, *)
(* rocksdb_compactionfilter_t*\); *)
(* extern void rocksdb_options_set_compaction_filter_factory( *)
(* rocksdb_options_t*, rocksdb_compactionfilterfactory_t*\); *)
(* extern void rocksdb_options_set_compaction_filter_factory_v2( *)
(* rocksdb_options_t*, *)
(* rocksdb_compactionfilterfactoryv2_t*\); *)
(* extern void rocksdb_options_set_comparator( *)
(* rocksdb_options_t*, *)
(* rocksdb_comparator_t*\); *)
(* extern void rocksdb_options_set_merge_operator( *)
(* rocksdb_options_t*, *)
(* rocksdb_mergeoperator_t*\); *)
(* extern void rocksdb_options_set_uint64add_merge_operator(rocksdb_options_t*\); *)
(* extern void rocksdb_options_set_compression_per_level( *)
(* rocksdb_options_t* opt, *)
(* int* level_values, *)
(* size_t num_levels); *)
(* extern void rocksdb_options_set_create_if_missing( *)
(* rocksdb_options_t*, unsigned char); *)
let set_create_if_missing = create_setter "set_create_if_missing" Views.bool_to_uchar
(* extern void rocksdb_options_set_create_missing_column_families( *)
(* rocksdb_options_t*, unsigned char); *)
let set_create_missing_column_families =
create_setter "set_create_missing_column_families" Views.bool_to_uchar
(* extern void rocksdb_options_set_error_if_exists( *)
(* rocksdb_options_t*, unsigned char); *)
let set_error_if_exists =
create_setter "set_error_if_exists" Views.bool_to_uchar
(* extern void rocksdb_options_set_paranoid_checks( *)
(* rocksdb_options_t*, unsigned char); *)
let set_paranoid_checks =
create_setter "set_paranoid_checks" Views.bool_to_uchar
(* extern void rocksdb_options_set_env(rocksdb_options_t*, rocksdb_env_t*\); *)
(* extern void rocksdb_options_set_info_log(rocksdb_options_t*, rocksdb_logger_t*\); *)
(* extern void rocksdb_options_set_info_log_level(rocksdb_options_t*, int); *)
(* extern void rocksdb_options_set_write_buffer_size(rocksdb_options_t*, size_t); *)
let set_write_buffer_size =
create_setter "set_write_buffer_size" Views.int_to_size_t
(* extern void rocksdb_options_set_max_open_files(rocksdb_options_t*, int); *)
let set_max_open_files =
create_setter "set_max_open_files" int
(* extern void rocksdb_options_set_max_total_wal_size(rocksdb_options_t* opt, uint64_t n); *)
let set_max_total_wal_size =
create_setter "set_max_total_wal_size" Views.int_to_uint64_t
(* extern void rocksdb_options_set_compression_options( *)
(* rocksdb_options_t*, int, int, int); *)
(* extern void rocksdb_options_set_prefix_extractor(rocksdb_options_t* opt, rocksdb_slicetransform_t* trans); *)
let set_prefix_extractor =
create_setter "set_prefix_extractor" SliceTransform.t
(* extern void rocksdb_options_set_num_levels(rocksdb_options_t*, int); *)
(* extern void rocksdb_options_set_level0_file_num_compaction_trigger( *)
(* rocksdb_options_t*, int); *)
(* extern void rocksdb_options_set_level0_slowdown_writes_trigger( *)
(* rocksdb_options_t*, int); *)
(* extern void rocksdb_options_set_level0_stop_writes_trigger( *)
(* rocksdb_options_t*, int); *)
(* extern void rocksdb_options_set_max_mem_compaction_level( *)
(* rocksdb_options_t*, int); *)
(* extern void rocksdb_options_set_target_file_size_base( *)
(* rocksdb_options_t*, uint64_t); *)
(* extern void rocksdb_options_set_target_file_size_multiplier( *)
(* rocksdb_options_t*, int); *)
(* extern void rocksdb_options_set_max_bytes_for_level_base( *)
(* rocksdb_options_t*, uint64_t); *)
(* extern void rocksdb_options_set_max_bytes_for_level_multiplier( *)
(* rocksdb_options_t*, int); *)
(* extern void rocksdb_options_set_expanded_compaction_factor( *)
(* rocksdb_options_t*, int); *)
(* extern void rocksdb_options_set_max_grandparent_overlap_factor( *)
(* rocksdb_options_t*, int); *)
(* extern void rocksdb_options_set_max_bytes_for_level_multiplier_additional( *)
(* rocksdb_options_t*, int* level_values, size_t num_levels); *)
(* extern void rocksdb_options_enable_statistics(rocksdb_options_t*\); *)
(* /* returns a pointer to a malloc()-ed, null terminated string */ *)
(* extern char *rocksdb_options_statistics_get_string(rocksdb_options_t *opt); *)
(* extern void rocksdb_options_set_max_write_buffer_number(rocksdb_options_t*, int); *)
let set_max_write_buffer_number =
create_setter "set_max_write_buffer_number" int
(* extern void rocksdb_options_set_min_write_buffer_number_to_merge(rocksdb_options_t*, int); *)
let set_min_write_buffer_number_to_merge =
create_setter "set_min_write_buffer_number_to_merge" int
(* extern void rocksdb_options_set_max_write_buffer_number_to_maintain( *)
(* rocksdb_options_t*, int); *)
let set_max_write_buffer_number_to_maintain =
create_setter "set_max_write_buffer_number_to_maintain" int
(* extern void rocksdb_options_set_max_background_compactions(rocksdb_options_t*, int); *)
let set_max_background_compactions =
create_setter "set_max_background_compactions" int
(* extern void rocksdb_options_set_max_background_flushes(rocksdb_options_t*, int); *)
let set_max_background_flushes =
create_setter "set_max_background_flushes" int
(* extern void rocksdb_options_set_max_log_file_size(rocksdb_options_t*, size_t); *)
let set_max_log_file_size =
create_setter "set_max_log_file_size" Views.int_to_size_t
(* extern void rocksdb_options_set_log_file_time_to_roll(rocksdb_options_t*, size_t); *)
let set_log_file_time_to_roll =
create_setter "set_log_file_time_to_roll" Views.int_to_size_t
(* extern void rocksdb_options_set_keep_log_file_num(rocksdb_options_t*, size_t); *)
let set_keep_log_file_num =
create_setter "set_keep_log_file_num" Views.int_to_size_t
(* extern ROCKSDB_LIBRARY_API void rocksdb_options_set_recycle_log_file_num( *)
(* rocksdb_options_t*, size_t); *)
let set_recycle_log_file_num =
create_setter "set_recycle_log_file_num" Views.int_to_size_t
(* extern void rocksdb_options_set_max_manifest_file_size( *)
(* rocksdb_options_t*, size_t); *)
let set_max_manifest_file_size =
create_setter "set_max_manifest_file_size" Views.int_to_size_t
(* extern void rocksdb_options_set_table_cache_numshardbits( *)
(* rocksdb_options_t*, int); *)
let set_table_cache_numshardbits =
create_setter "set_table_cache_numshardbits" int
(* extern void rocksdb_options_set_arena_block_size( *)
(* rocksdb_options_t*, size_t); *)
let set_arena_block_size =
create_setter "set_arena_block_size" Views.int_to_size_t
(* extern void rocksdb_options_set_use_fsync( *)
(* rocksdb_options_t*, int); *)
let set_use_fsync =
create_setter "set_use_fsync" Views.bool_to_int
(* extern void rocksdb_options_set_db_log_dir( *)
(* rocksdb_options_t*, const char*\); *)
(* extern void rocksdb_options_set_wal_dir( *)
(* rocksdb_options_t*, const char*\); *)
(* extern void rocksdb_options_set_WAL_ttl_seconds( *)
(* rocksdb_options_t*, uint64_t); *)
let set_WAL_ttl_seconds =
create_setter "set_WAL_ttl_seconds" Views.int_to_uint64_t
(* extern void rocksdb_options_set_WAL_size_limit_MB( *)
(* rocksdb_options_t*, uint64_t); *)
let set_WAL_size_limit_MB =
create_setter "set_WAL_size_limit_MB" Views.int_to_uint64_t
(* extern void rocksdb_options_set_manifest_preallocation_size( *)
(* rocksdb_options_t*, size_t); *)
let set_manifest_preallocation_size =
create_setter "set_manifest_preallocation_size" Views.int_to_size_t
(* extern void rocksdb_options_set_use_direct_reads( *)
(* rocksdb_options_t*, unsigned char); *)
let set_use_direct_reads =
create_setter "set_use_direct_reads" Views.bool_to_uchar
(* extern void rocksdb_options_set_allow_mmap_reads( *)
(* rocksdb_options_t*, unsigned char); *)
let set_allow_mmap_reads =
create_setter "set_allow_mmap_reads" Views.bool_to_uchar
(* extern void rocksdb_options_set_allow_mmap_writes( *)
(* rocksdb_options_t*, unsigned char); *)
let set_allow_mmap_writes =
create_setter "set_allow_mmap_writes" Views.bool_to_uchar
(* extern void rocksdb_options_set_is_fd_close_on_exec( *)
(* rocksdb_options_t*, unsigned char); *)
let set_is_fd_close_on_exec =
create_setter "set_is_fd_close_on_exec" Views.bool_to_uchar
(* extern void rocksdb_options_set_stats_dump_period_sec( *)
(* rocksdb_options_t*, unsigned int); *)
let set_stats_dump_period_sec =
create_setter "set_stats_dump_period_sec" Views.int_to_uint_t
(* extern void rocksdb_options_set_advise_random_on_open( *)
(* rocksdb_options_t*, unsigned char); *)
let set_advise_random_on_open =
create_setter "set_advise_random_on_open" Views.bool_to_uchar
(* extern void rocksdb_options_set_access_hint_on_compaction_start( *)
(* rocksdb_options_t*, int); *)
let set_access_hint_on_compaction_start =
create_setter "set_access_hint_on_compaction_start" int
(* extern void rocksdb_options_set_use_adaptive_mutex( *)
(* rocksdb_options_t*, unsigned char); *)
let set_use_adaptive_mutex =
create_setter "set_use_adaptive_mutex" Views.bool_to_uchar
(* extern void rocksdb_options_set_bytes_per_sync( *)
(* rocksdb_options_t*, uint64_t); *)
let set_bytes_per_sync =
create_setter "set_bytes_per_sync" Views.int_to_uint64_t
(* extern void rocksdb_options_set_max_sequential_skip_in_iterations( *)
(* rocksdb_options_t*, uint64_t); *)
let set_max_sequential_skip_in_iterations =
create_setter "set_max_sequential_skip_in_iterations" Views.int_to_uint64_t
(* extern void rocksdb_options_set_disable_auto_compactions(rocksdb_options_t*, int); *)
let set_disable_auto_compactions =
create_setter "set_disable_auto_compactions" int
(* extern void rocksdb_options_set_delete_obsolete_files_period_micros( *)
(* rocksdb_options_t*, uint64_t); *)
let set_delete_obsolete_files_period_micros =
create_setter "set_delete_obsolete_files_period_micros" Views.int_to_uint64_t
(* extern void rocksdb_options_set_max_compaction_bytes(
rocksdb_options_t*, uint64_t); *)
let set_max_compaction_bytes =
create_setter "set_max_compaction_bytes" int
(* extern void rocksdb_options_prepare_for_bulk_load(rocksdb_options_t*\); *)
(* extern void rocksdb_options_set_memtable_vector_rep(rocksdb_options_t*\); *)
(* extern void rocksdb_options_set_hash_skip_list_rep(rocksdb_options_t*, size_t, int32_t, int32_t); *)
(* extern void rocksdb_options_set_hash_link_list_rep(rocksdb_options_t*, size_t); *)
(* extern void rocksdb_options_set_plain_table_factory(rocksdb_options_t*, uint32_t, int, double, size_t); *)
(* extern void rocksdb_options_set_min_level_to_compress(rocksdb_options_t* opt, int level); *)
let set_min_level_to_compress =
create_setter "set_min_level_to_compress" int
(* extern void rocksdb_options_set_max_successive_merges( *)
(* rocksdb_options_t*, size_t); *)
let set_max_successive_merges =
create_setter "set_max_successive_merges" Views.int_to_size_t
(* extern void rocksdb_options_set_bloom_locality( *)
(* rocksdb_options_t*, uint32_t); *)
let set_bloom_locality =
create_setter "set_bloom_locality" Views.int_to_uint32_t
(* extern void rocksdb_options_set_inplace_update_support( *)
(* rocksdb_options_t*, unsigned char); *)
let set_inplace_update_support =
create_setter "set_inplace_update_support" Views.bool_to_uchar
(* extern void rocksdb_options_set_inplace_update_num_locks( *)
(* rocksdb_options_t*, size_t); *)
let set_inplace_update_num_locks =
create_setter "set_inplace_update_num_locks" Views.int_to_size_t
(* enum { *)
(* rocksdb_no_compression = 0, *)
(* rocksdb_snappy_compression = 1, *)
(* rocksdb_zlib_compression = 2, *)
(* rocksdb_bz2_compression = 3, *)
(* rocksdb_lz4_compression = 4, *)
(* rocksdb_lz4hc_compression = 5 *)
(* }; *)
(* extern void rocksdb_options_set_compression(rocksdb_options_t*, int); *)
(* enum { *)
(* rocksdb_level_compaction = 0, *)
(* rocksdb_universal_compaction = 1, *)
(* rocksdb_fifo_compaction = 2 *)
(* }; *)
(* extern void rocksdb_options_set_compaction_style(rocksdb_options_t*, int); *)
(* extern void rocksdb_options_set_universal_compaction_options(rocksdb_options_t*, rocksdb_universal_compaction_options_t*\); *)
(* extern void rocksdb_options_set_fifo_compaction_options(rocksdb_options_t* opt, *)
(* rocksdb_fifo_compaction_options_t* fifo); *)
(* extern void rocksdb_options_set_block_based_table_factory( *)
(* rocksdb_options_t *opt, rocksdb_block_based_table_options_t* table_options); *)
let set_block_based_table_factory =
create_setter "set_block_based_table_factory" BlockBasedTableOptions.t
end
module WriteOptions = struct
module C = CreateConstructors_(struct let name = "writeoptions" end)
include C
let set_disable_WAL = create_setter "disable_WAL" Views.bool_to_int
let set_sync = create_setter "set_sync" Views.bool_to_uchar
end
module ReadOptions = struct
module C = CreateConstructors_(struct let name = "readoptions" end)
include C
let set_snapshot = create_setter "set_snapshot" Snapshot.t
end
module FlushOptions = struct
module C = CreateConstructors_(struct let name = "flushoptions" end)
include C
let set_wait = create_setter "set_wait" Views.bool_to_uchar
end
module TransactionOptions = struct
module C = CreateConstructors_(struct let name = "transaction_options" end)
include C
let set_set_snapshot = create_setter "set_set_snapshot" Views.bool_to_uchar
end
module TransactionDbOptions = struct
module C = CreateConstructors_(struct let name = "transactiondb_options" end)
include C
end