ArangoDB导入:arangoimp文件在运行时崩溃(超时1200)

时间:2018-09-20 19:25:34

标签: import graph-databases arangodb

图形数据库的新功能,并尝试为我的高级项目学习一些平台。我正在使用ArangoDB,似乎无法正确导入数据。

该手册说要运行arangoimp文件来执行导入命令,但是每次我启动arangoimp文件时,它都会要求输入密码(为空白),然后退出并显示以下内容...

/Applications/ArangoDB3-CLI.app/Contents/Resources/arangoimp ; exit;
Please specify a password: 

Connected to ArangoDB 'http+tcp://127.0.0.1:8529',
version 3.3.15, database: '_system', username: 'root'
----------------------------------------
database:               _system
collection:             
create:                 no
source filename:        
file type:              json
threads:                2
connect timeout:        5
request timeout:        1200
----------------------------------------
2018-09-20T19:17:30Z [25483] FATAL Collection name is missing.
logout
Saving session...
...copying shared history...
...saving history...truncating history files...
...completed.

[Process completed]

这里是菜鸟们,非常感谢您的帮助...在Mac上工作...

1 个答案:

答案 0 :(得分:1)

arangoimp是需要一些参数的命令行工具。例如。您要填充的集合和源数据。

因此,您应该使用类似的内容:

arangoimp --file "mydatafile.json" --type json --collection "mycollection"

阅读arangoimp documentation,以获取有关所有选项和对远程数据库的访问的更多详细信息。