I am trying to import the large data set json file into mongodb using mongoimport.
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
mongoimport
. As noted in an earlier comment, you probably shouldn't be using--jsonArray
as the limit for the array is 16MB; splitting that into one line per array element may fix your import issue. – Uniformed