2017-06-13 23:40:18 +08:00
|
|
|
# MEMGRAPH DEFAULT ALPHA CONFIG
|
2016-11-29 11:08:08 +08:00
|
|
|
|
|
|
|
# NOTE: all paths are relative to the run folder
|
2017-06-13 23:40:18 +08:00
|
|
|
# (where the executable is run)
|
2016-11-29 11:08:08 +08:00
|
|
|
|
|
|
|
# path to the codes which will be compiled
|
2017-06-07 21:23:08 +08:00
|
|
|
--compile_path="./compiled/"
|
2016-11-29 11:08:08 +08:00
|
|
|
|
|
|
|
# path to the template (cpp) for codes generation
|
2017-06-07 21:23:08 +08:00
|
|
|
--template_cpp_path="./template/plan_template_cpp"
|
2016-11-29 11:08:08 +08:00
|
|
|
|
|
|
|
# path to the folder with snapshots
|
2017-06-07 21:23:08 +08:00
|
|
|
--snapshots_path="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-07 21:23:08 +08:00
|
|
|
--cleaning_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-08 19:30:59 +08:00
|
|
|
--snapshot_cycle_sec=300
|
2017-06-06 23:04:49 +08:00
|
|
|
|
|
|
|
# create snapshot disabled on db destruction
|
2017-06-08 19:30:59 +08:00
|
|
|
--snapshot_db_destruction=true
|
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-08 19:30:59 +08:00
|
|
|
--max_retained_snapshots=3
|
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-08 19:30:59 +08:00
|
|
|
--recovery=true
|