我在 Cosmos Azure 帐户上有一个 MongoDB。我已经使用命令行导入了一个 JSON 文件,并且我使用了这个命令:
mongoimport.exe --host xxxx.documents.azure.com:10255 -u xxxxx -p xxxxxxx --ssl --sslAllowInvalidCertificates --db admin --collection machineTest --type json --file "C:\DB\DB_STAGING\MachineTest.json"
并且对 cmd 的响应是“导入的 5200 个文档”但是当我运行计数查询时
db.machineTest.count()
结果是 1803 个文件
为什么计数给了我不正确的结果?谢谢