1.mongoexport 工具主要参数解释
-h:数据库主机地址
-d:数据库的名字
-f:导出列名
--username:数据库的用户名
--password:数据库的密码
--collection:指明collection的名字
--type: 导出文件类型csv/json
--out :指明到要导出的文件名
--query:指明导出数据的过滤条件
--limit:导出记录数
2.操作示例
{
"_id" : ObjectId("5eb378b3fab7a65e29e06d3b"),
"emailId" : "1588820147190_1_2_0_0_492#sc-10_19_167_108-outbound#",
"raw" : BinData(0,"ddddd=="),
"createTime" : ISODate("2020-05-07T02:55:47.193Z"),
"appType" : 0,
" sender" : "x@batch.datavalidation.cn"
}
./mongoexport -h 10.119.0.125 -d privatecloud --port 27017
--username edm --type=json --password ddxxs
--collection email_20200506 -f emailId,raw,sender
--out /tmp/1.json
--query='{"emailId":"1588820147190_1_2_0_0_492#sc-10_19_167_108-outbound#"}' --limit=1