nosql - Is it possible to configure ArangoDB to make snapshots of the graph database at specific times? -
so far know arangodb uses mvcc , therefore creates revisions of nodes , edges undefined period of time until garbage collector removes them.
i implement graph database schema , need keep state of database @ specific times. means configures times when database management system take snapshot of state (e.g. every week).
so question in short: possible keep revisions/versions of nodes/edges in arangodb (or maybe plugin) , timestamp of creation?
if no, there other graph databases able this?
i think can use arangodump (link arangodb client tools manual) binary create snapshot @ desired point in time. save state of database (or specific collections contain graph data) json files, can used auditing or later reloading data. arangodump contained in arangodb distributions.
the data dumped arangodump not contain creation timestamps, if need them can make them part of data filling "created" attribute in each node / edge when create it.
i hope helps.
Comments
Post a Comment