2017-06-07 21:23:08 +08:00
|
|
|
# MEMGRAPH DEFAULT TESTING CONFIG
|
2016-11-29 11:08:08 +08:00
|
|
|
|
|
|
|
# NOTE: all paths are relative to the run folder
|
|
|
|
# (where the executable is runned)
|
|
|
|
|
2017-06-09 17:38:17 +08:00
|
|
|
# directory to the codes which will be compiled
|
2017-06-16 21:35:14 +08:00
|
|
|
--compile_directory=./compiled/
|
2016-11-29 11:08:08 +08:00
|
|
|
|
|
|
|
# path to the template (cpp) for codes generation
|
2017-06-16 21:35:14 +08:00
|
|
|
--template_cpp_path=./template/plan_template_cpp
|
2016-11-29 11:08:08 +08:00
|
|
|
|
2017-06-09 17:38:17 +08:00
|
|
|
# directory to the folder with snapshots
|
2017-06-16 21:35:14 +08:00
|
|
|
--snapshot_directory=snapshots
|
2016-11-29 11:08:08 +08:00
|
|
|
|
2017-03-29 18:37:58 +08:00
|
|
|
# cleaning cycle interval
|
|
|
|
# if set to -1 the GC will not run
|
2017-06-09 17:38:17 +08:00
|
|
|
--gc_cycle_sec=30
|
2016-11-29 11:08:08 +08:00
|
|
|
|
|
|
|
# snapshot cycle interval
|
2017-06-06 23:04:49 +08:00
|
|
|
# if set to -1 the snapshooter will not run
|
2017-06-07 21:23:08 +08:00
|
|
|
--snapshot_cycle_sec=-1
|
2017-06-06 23:04:49 +08:00
|
|
|
|
|
|
|
# create snapshot disabled on db destruction
|
2017-06-09 17:38:17 +08:00
|
|
|
--snapshot_on_db_destruction=false
|
2016-11-29 11:08:08 +08:00
|
|
|
|
|
|
|
# max number of snapshots which will be kept on the disk at some point
|
2017-05-17 16:08:57 +08:00
|
|
|
# if set to -1 the max number of snapshots is unlimited
|
2017-06-07 21:23:08 +08:00
|
|
|
--max_retained_snapshots=-1
|
2017-03-23 00:57:06 +08:00
|
|
|
|
|
|
|
# by default query engine runs in interpret mode
|
2017-06-07 21:23:08 +08:00
|
|
|
--interpret=true
|
2017-06-06 23:04:49 +08:00
|
|
|
|
|
|
|
# database recovering is disabled by default
|
2017-06-09 17:38:17 +08:00
|
|
|
--recover_on_startup=false
|
2017-06-16 21:35:14 +08:00
|
|
|
|
|
|
|
# use ast caching
|
|
|
|
--ast_cache=false
|