COMMAND SECTION "DATE" "" "ArangoDB" NAME COMMAND - a data restore tool for the ArangoDB database SYNOPSIS COMMAND [options] DESCRIPTION The COMMAND binary can be used to restore data from logical dumps created with the arangodump tool. ArangoDB database. Input data be present in the input file in either CSV format with column headlines, or in JSON format. If JSON format is used, each line in the input file must contain exactly one JSON document with the attribute name/value pairs to import. OPTIONS For a complete list of options, please refer to the ArangoDB online manual, available at http://www.arangodb.org/ The most important startup options are: OPTION "--configuration " read configuration from file ENDOPTION OPTION "--collection " name of collection to restore (can be specified multiple times). This can be used to restrict the restore operation to certain collections only. If not specified, all collections from the "--input-directory" will be restored ENDOPTION OPTION "--create-collection " set to "true" if collections should be created ENDOPTION OPTION "--import-data " when set to "true" will restore the data (documents) of the collection ENDOPTION OPTION "--include-system-collections " when set to "true" will also restore system collections, otherwise they will be excluded ENDOPTION OPTION "--input-directory " input directory in which to look for dump files. ENDOPTION OPTION "--overwrite " when set to "true", will drop an existing collection before re-creating it ENDOPTION OPTION "--progress " when set to "true", will display progress information ENDOPTION OPTION "--server.endpoint " server endpoint to connect to, consisting of protocol, ip address and port ENDOPTION OPTION "--server.database " database name to use when connection (default: "_system") ENDOPTION OPTION "--server.username " username to use when connecting (default "root") ENDOPTION OPTION "--server.password " password to use when connecting. Don't specify this option to get a password prompt ENDOPTION OPTION "--server.disable-authentication " disable the password prompt and authentication when connecting to the server ENDOPTION EXAMPLES AUTHOR