It seems your node server connection with your MongoDB instance was interrupted when it tried to write to it.
Take a look at the Mongo source code that generates this error
Mongos.prototype.insert = function(ns, ops, options, callback) { if(typeof options == 'function') callback = options, options = {}; if(this.s.state == DESTROYED) return callback(new MongoError(f('topology was destroyed'))); // Topology is not connected, save the call in the provided store to be // Executed at some point when the handler deems it reconnected if(!this.isConnected() && this.s.disconnectHandler != null) { callback = bindToCurrentDomain(callback); return this.s.disconnectHandler.add('insert', ns, ops, options, callback); } executeWriteOperation(this.s, 'insert', ns, ops, options, callback); }
This is not like the Sails issue mentioned in the comments, because the updates were not installed to expedite the crash or fix
Jason Nichols Aug 11 '15 at 19:12 2015-08-11 19:12
source share