将数据导入MongoDB的ETL

将数据导入MongoDB的ETL,mongodb,nosql,etl,Mongodb,Nosql,Etl,我想知道一个将数据上传到MongoDB的ETL工具,我已经尝试过Pentaho和Talend,但我更喜欢轻一点的工具,因为我的过程非常简单 谢谢 假设您有一个JSON文件“test.JSON”(并假设它是有效的JSON),您可以使用命令行程序mongoimport 例如: mongoimport --host localhost:27017 --db test --collection test --username johndoe --password my secret --authenti

我想知道一个将数据上传到MongoDB的ETL工具,我已经尝试过Pentaho和Talend,但我更喜欢轻一点的工具,因为我的过程非常简单


谢谢

假设您有一个JSON文件“test.JSON”(并假设它是有效的JSON),您可以使用命令行程序
mongoimport

例如:

mongoimport --host localhost:27017 --db test --collection test --username johndoe --password my secret --authenticationDatabase admin  --file test.json