1
0
Fork 0

some documentation about --progress option

This commit is contained in:
Jan Steemann 2013-01-22 15:10:25 +01:00
parent 7254487e14
commit 51f93d2c6b
2 changed files with 14 additions and 1 deletions

View File

@ -1,6 +1,14 @@
v1.2.alpha (XXXX-XX-XX)
-----------------------
* added --progress option for arangoimp. This will show the percentage of the input
file that has been processed by arangoimp while the import is still running. It can
be used as a rough indicator of progress for the entire import.
* make the server log documents that cannot be imported via /_api/import into the
logfile using the warning log level. This may help finding illegal documents in big
import runs.
* check on server startup whether the database directory and all collection directories
are writable. if not, the server startup will be aborted. this prevents serious
problems with collections being non-writable and this being detected at some pointer

View File

@ -80,7 +80,12 @@
/// @LIT{./arangoimp \-\-file "data.json" \-\-type json \-\-collection "users"}
///
/// This will transfer the data to the server, import the records, and print a
/// status summary.
/// status summary. To show the intermediate progress during the import process,
/// the option @LIT{\-\-progress} can be added. This option will show the
/// percentage of the input file that has been sent to the server. This will only
/// be useful for big import files.
///
/// @LIT{./arangoimp \-\-file "data.json" \-\-type json \-\-collection "users" \-\-progress true}
///
/// By default, the endpoint @LIT{tcp://127.0.0.1:8529} will be used.
/// If you want to specify a different endpoint, you can use the \-\-server.endpoint