mongoError: Topology was destroyed

It seems to mean your node server’s connection to your MongoDB instance was interrupted while it was trying to write to it. Take a look at the Mongo source code that generates that error Mongos.prototype.insert = function(ns, ops, options, callback) { if(typeof options == ‘function’) callback = options, options = {}; if(this.s.state == DESTROYED) return … Read more