Automatic EventStore Backup

Is there any way for automatic backup EventStore

, didn't find any solution other than manual scripts / console apps etc. I am using Get EventStore .

+3


source to share


1 answer


Unfortunately, for now, I believe your best bet is either:

  • Create an additional node in a separate environment that replicates asynchronously - this acts as a kind of "hot backup", however it does NOT protect against data destruction by the application or user command (unless you catch it before syncing).
  • Create your own script to create copies of * .chk and other required files and release them to a safe backup location.


Also, I am not aware of any automatic / native backup functionality in the EventStore.

Here is a link to the current (albeit limited) EventStore backup documentation: http://docs.geteventstore.com/server/3.1.0/database-backup/

+3


source







All Articles