133

Does Mongoose v3.6+ support batch inserts now? I've searched for a few minutes but anything matching this query is a couple of years old and the answer was an unequivocal no.

Edit:

For future reference, the answer is to use Model.create(). create() accepts an array as its first argument, so you can pass your documents to be inserted as an array.

See Model.create() documentation

7

8 Answers 8

186

Model.create() vs Model.collection.insert(): a faster approach

Model.create() is a bad way to do inserts if you are dealing with a very large bulk. It will be very slow. In that case you should use Model.collection.insert, which performs much better. Depending on the size of the bulk, Model.create() will even crash! Tried with a million documents, no luck. Using Model.collection.insert it took just a few seconds.

Model.collection.insert(docs, options, callback)
  • docs is the array of documents to be inserted;
  • options is an optional configuration object - see the docs
  • callback(err, docs) will be called after all documents get saved or an error occurs. On success, docs is the array of persisted documents.

As Mongoose's author points out here, this method will bypass any validation procedures and access the Mongo driver directly. It's a trade-off you have to make since you're handling a large amount of data, otherwise you wouldn't be able to insert it to your database at all (remember we're talking hundreds of thousands of documents here).

A simple example

var Potato = mongoose.model('Potato', PotatoSchema);

var potatoBag = [/* a humongous amount of potato objects */];

Potato.collection.insert(potatoBag, onInsert);

function onInsert(err, docs) {
    if (err) {
        // TODO: handle error
    } else {
        console.info('%d potatoes were successfully stored.', docs.length);
    }
}

Update 2019-06-22: although insert() can still be used just fine, it's been deprecated in favor of insertMany(). The parameters are exactly the same, so you can just use it as a drop-in replacement and everything should work just fine (well, the return value is a bit different, but you're probably not using it anyway).

Reference

14
  • 1
    groups.google.com/forum/#!topic/mongoose-orm/IkPmvcd0kds Says it all really.
    – arcseldon
    Commented Jul 24, 2014 at 19:20
  • 1
    Please give example with Mongoose.
    – Stephan K.
    Commented Sep 17, 2014 at 15:42
  • 18
    Since Model.collection goes directly through the Mongo driver, you lose all the neat mongoose stuff including validation and hooks. Just something to keep in mind. Model.create loses the hooks, but still goes through validation. If you want it all, you must iterate and new MyModel() Commented Dec 11, 2014 at 20:32
  • 1
    @Pier-LucGendreau You are absolutely right, but it's a tradeoff you have to make once you start dealing with a humongous amount of data. Commented Jan 23, 2015 at 2:00
  • 1
    Be careful to new readers: "Changed in version 2.6: The insert() returns an object that contains the status of the operation". No more docs.
    – Mark Ni
    Commented Jan 29, 2016 at 13:49
127

Mongoose 4.4.0 now supports bulk insert

Mongoose 4.4.0 introduces --true-- bulk insert with the model method .insertMany(). It is way faster than looping on .create() or providing it with an array.

Usage:

var rawDocuments = [/* ... */];

Book.insertMany(rawDocuments)
    .then(function(mongooseDocuments) {
         /* ... */
    })
    .catch(function(err) {
        /* Error handling */
    });

Or

Book.insertMany(rawDocuments, function (err, mongooseDocuments) { /* Your callback function... */ });

You can track it on:

7
  • 2
    At this time, this method does not support options.
    – Amri
    Commented May 23, 2016 at 10:48
  • Thank you for the answer. Any idea what parsing of the rawDocuments should be in place? I've tried it with an array of Json objects and all it has inserted was just their IDs. :( Commented Aug 1, 2016 at 13:26
  • 4
    How is this different to bulkWrite? See here: stackoverflow.com/questions/38742475/… Commented Aug 4, 2016 at 8:07
  • insertMany doesn't work for me. I got a fatal error allocation failed. But if I use collection.insert It works perfectly.
    – John
    Commented Dec 12, 2016 at 13:03
  • Would this work with the extra stuff that mongoose schema provides? ex will this add the data if no date exists dateCreated : { type: Date, default: Date.now },
    – jack blank
    Commented Feb 9, 2017 at 5:45
23

Indeed, you can use the "create" method of Mongoose, it can contain an array of documents, see this example:

Candy.create({ candy: 'jelly bean' }, { candy: 'snickers' }, function (err, jellybean, snickers) {
});

The callback function contains the inserted documents. You do not always know how many items has to be inserted (fixed argument length like above) so you can loop through them:

var insertedDocs = [];
for (var i=1; i<arguments.length; ++i) {
    insertedDocs.push(arguments[i]);
}

Update: A better solution

A better solution would to use Candy.collection.insert() instead of Candy.create() - used in the example above - because it's faster (create() is calling Model.save() on each item so it's slower).

See the Mongo documentation for more information: http://docs.mongodb.org/manual/reference/method/db.collection.insert/

(thanks to arcseldon for pointing this out)

5
  • groups.google.com/forum/#!topic/mongoose-orm/IkPmvcd0kds - Depending on what you want, the link has a better option.
    – arcseldon
    Commented Jul 24, 2014 at 19:19
  • Don't you mean {type:'jellybean'} instead of {type:'jelly bean'}? Btw. what strange types are those? Are they part of Mongoose API?
    – Stephan K.
    Commented Sep 17, 2014 at 14:56
  • 2
    Well that's a bad naming choice then, since type is usually reserved in Mongoose for denominating the ADT of a database object.
    – Stephan K.
    Commented Sep 18, 2014 at 17:11
  • 2
    @sirbenbenji I changed it, but it was an example also present in the official documentation. It was not necessary to downvote for this I think.
    – benske
    Commented Sep 19, 2014 at 9:31
  • 1
    By addressing .collection property you are bypassing Mongoose (validation, 'pre' methods ...)
    – Derek
    Commented Mar 4, 2016 at 11:34
6

Here are both way of saving data with insertMany and save

1) Mongoose save array of documents with insertMany in bulk

/* write mongoose schema model and export this */
var Potato = mongoose.model('Potato', PotatoSchema);

/* write this api in routes directory  */
router.post('/addDocuments', function (req, res) {
    const data = [/* array of object which data need to save in db */];

    Potato.insertMany(data)  
    .then((result) => {
            console.log("result ", result);
            res.status(200).json({'success': 'new documents added!', 'data': result});
    })
    .catch(err => {
            console.error("error ", err);
            res.status(400).json({err});
    });
})

2) Mongoose save array of documents with .save()

These documents will save parallel.

/* write mongoose schema model and export this */
var Potato = mongoose.model('Potato', PotatoSchema);

/* write this api in routes directory  */
router.post('/addDocuments', function (req, res) {
    const saveData = []
    const data = [/* array of object which data need to save in db */];
    data.map((i) => {
        console.log(i)
        var potato = new Potato(data[i])
        potato.save()
        .then((result) => {
            console.log(result)
            saveData.push(result)
            if (saveData.length === data.length) {
                res.status(200).json({'success': 'new documents added!', 'data': saveData});
            }
        })
        .catch((err) => {
            console.error(err)
            res.status(500).json({err});
        })
    })
})
0
5

It seems that using mongoose there is a limit of more than 1000 documents, when using

Potato.collection.insert(potatoBag, onInsert);

You can use:

var bulk = Model.collection.initializeOrderedBulkOp();

async.each(users, function (user, callback) {
    bulk.insert(hash);
}, function (err) {
    var bulkStart = Date.now();
    bulk.execute(function(err, res){
        if (err) console.log (" gameResult.js > err " , err);
        console.log (" gameResult.js > BULK TIME  " , Date.now() - bulkStart );
        console.log (" gameResult.js > BULK INSERT " , res.nInserted)
      });
});

But this is almost twice as fast when testing with 10000 documents:

function fastInsert(arrOfResults) {
var startTime = Date.now();
    var count = 0;
    var c = Math.round( arrOfResults.length / 990);

    var fakeArr = [];
    fakeArr.length = c;
    var docsSaved = 0

    async.each(fakeArr, function (item, callback) {

            var sliced = arrOfResults.slice(count, count+999);
            sliced.length)
            count = count +999;
            if(sliced.length != 0 ){
                    GameResultModel.collection.insert(sliced, function (err, docs) {
                            docsSaved += docs.ops.length
                            callback();
                    });
            }else {
                    callback()
            }
    }, function (err) {
            console.log (" gameResult.js > BULK INSERT AMOUNT: ", arrOfResults.length, "docsSaved  " , docsSaved, " DIFF TIME:",Date.now() - startTime);
    });
}
1
  • 1
    By addressing .collection property you are bypassing Mongoose (validation, 'pre' methods ...)
    – Derek
    Commented Mar 4, 2016 at 11:33
4

You can perform bulk insert using mongoDB shell using inserting the values in an array.

db.collection.insert([{values},{values},{values},{values}]);
4
  • is there a way in mongoose for bulk insert? Commented Sep 24, 2014 at 11:25
  • 1
    YourModel.collection.insert()
    – Bill Dami
    Commented Nov 24, 2014 at 15:46
  • By addressing .collection property you are bypassing Mongoose (validation, 'pre' methods ...)
    – Derek
    Commented Mar 4, 2016 at 11:33
  • This is not mongoose, and the raw collection.insert answer was given a few weeks before this answer, and explained in much more detail. Commented Apr 13, 2020 at 5:25
4

You can perform bulk insert using mongoose, as the highest score answer. But the example cannot work, it should be:

/* a humongous amount of potatos */
var potatoBag = [{name:'potato1'}, {name:'potato2'}];

var Potato = mongoose.model('Potato', PotatoSchema);
Potato.collection.insert(potatoBag, onInsert);

function onInsert(err, docs) {
    if (err) {
        // TODO: handle error
    } else {
        console.info('%d potatoes were successfully stored.', docs.length);
    }
}

Don't use a schema instance for the bulk insert, you should use a plain map object.

2
  • The first answer is not wrong, it just has validation
    – Luca Steeb
    Commented May 18, 2015 at 21:14
  • 1
    By addressing .collection property you are bypassing Mongoose (validation, 'pre' methods ...)
    – Derek
    Commented Mar 4, 2016 at 11:32
0

Sharing working and relevant code from our project:

//documentsArray is the list of sampleCollection objects
sampleCollection.insertMany(documentsArray)  
    .then((res) => {
        console.log("insert sampleCollection result ", res);
    })
    .catch(err => {
        console.log("bulk insert sampleCollection error ", err);
    });
1
  • The .insertMany solution was already given (and explained) in this 2016 answer. Commented Apr 13, 2020 at 5:30

Not the answer you're looking for? Browse other questions tagged or ask your own question.