forked from Microsoft-CISL/sqlite-autotuning
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlocal-sqlite-bench.jsonc
More file actions
30 lines (26 loc) · 1011 Bytes
/
local-sqlite-bench.jsonc
File metadata and controls
30 lines (26 loc) · 1011 Bytes
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
//
// Run with:
//
// mlos_bench --config config/cli/local-sqlite-bench.jsonc \
// --globals experiment-sqlite.jsonc \
// --tunable_values tunable-values/tunable-values-example.jsonc
//
{
// Where to find additional config files:
"config_path": [
".",
"config"
// Note: upstream config snippets in MLOS/mlos_bench/mlos_bench/config
// are automatically added to the search path
],
// The root Environment config to use for this experiment.
"environment": "environments/apps/sqlite/sqlite-local-benchbase.jsonc",
// In this case we omit the optimizer config since it's just meant for a one shot run.
// Instead, we can provide --tunable-values on the CLI args to test an
// explicit set of tunable values.
// store all results in a local sqlite database
// (see MLOS/mlos_bench/mlos_bench/config/storage/sqlite.jsonc)
"storage": "storage/sqlite.jsonc",
"log_file": "local-sqlite-bench.log",
"log_level": "INFO"
}