0

I would like to know if I can dump an ArangoDB with Go. I know how to use ArangoDB Go driver but there is no example which show how to dump the db.

I also aware about how to download the database on the command line.

Jonathan Hall
  • 75,165
  • 16
  • 143
  • 189
Victor
  • 21
  • 9

1 Answers1

0

The best way is to use the arangodump and arangorestore tools provided by ArangoDB to dump and restore a database.

If needed, call those executables from Go.

ArangoDump: https://www.arangodb.com/docs/stable/programs-arangodump.html

ArangoRestore: https://www.arangodb.com/docs/stable/programs-arangorestore.html

David Thomas
  • 2,264
  • 2
  • 18
  • 20