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-16 22:13:58 +08:00
|
|
|
--compile-path=./compiled/
|
2016-11-29 11:08:08 +08:00
|
|
|
|
|
|
|
# path to the template (cpp) for codes generation
|
2017-06-16 22:13:58 +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-16 22:13:58 +08:00
|
|
|
--snapshot-directory=/var/lib/memgraph/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-16 22:13:58 +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-16 22:13:58 +08:00
|
|
|
--snapshot-cycle-sec=300
|
2017-06-06 23:04:49 +08:00
|
|
|
|
2017-06-16 22:13:58 +08:00
|
|
|
# create snapshot disabled on db exit
|
|
|
|
--snapshot-on-db-exit=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-16 22:13:58 +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-16 22:13:58 +08:00
|
|
|
--recover-on-startup=true
|
2017-06-16 20:50:46 +08:00
|
|
|
|
|
|
|
# use ast caching
|
2017-06-16 22:13:58 +08:00
|
|
|
--ast-cache=false
|
2017-06-16 20:50:46 +08:00
|
|
|
|
|
|
|
# path to where the log should be stored
|
2017-06-16 22:13:58 +08:00
|
|
|
--log-file=/var/lib/memgraph/memgraph.log
|