7

我正在尝试使用 mongoimport 将大型数据集 json 文件导入 mongodb。

mongoimport --db test --collection sam1 --file 1234.json --jsonArray

error:
2014-07-02T15:57:16.406+0530 error: object to insert too large
2014-07-02T15:57:16.406+0530 tried to import 1 objects
4

1 回答 1

12

请尝试添加此选项:--batchSize 1

喜欢:

mongoimport --db test --collection sam1 --file 1234.json --batchSize 1

数据将被解析并批量存储到数据库中

于 2015-11-29T00:44:03.130 回答