-
Notifications
You must be signed in to change notification settings - Fork 31
Closed
Labels
Description
I'm trying to use another storage engine, RocksDB. I'm passing:
--server.storage-engine rocksdb
Which results in:
FATAL {startup} content of 'ENGINE' file '/var/lib/arangodb3/ENGINE' and command-line/configuration option value do not match: 'mmfiles' != 'rocksdb'. please validate the command-line/configuration option value of '--server.storage-engine' or use a different database directory if the change is intentional
Which is I believe because that argument is not passed through when the database is initialised:
arangodb-docker/jessie/3.1.8/docker-entrypoint.sh
Lines 41 to 46 in 4f5bb42
echo "Initializing database...Hang on..." | |
arangod --server.endpoint unix:///tmp/arangodb-tmp.sock \ | |
--server.authentication false \ | |
--log.file /tmp/init-log \ | |
--log.foreground-tty false & |