2

As said in /etc/memgraph/memgraph.conf:

# Storage snapshot creation interval (in seconds). Set to 0 to disable periodic
# snapshot creation. [uint64]
--storage-snapshot-interval-sec=300

Which means snapshots are made only automatically. Is there a way to manually run command to save snapshot in /var/lib/memgraph/snapshots/ directory?

ntreq
  • 21
  • 3

1 Answers1

1

You can use the CREATE SNAPSHOT; Cypher query to create a snapshot automatically. Read more about it in the official documentation.

Ivan Despot
  • 291
  • 3
  • 7