Vérifiez ce problème , il suggère d'utiliser {auto_reconnect :true} pour la connexion mongodb.
Vous pouvez également essayer de suivre
// Connect to mongodb
var connect = function () {
var options = { server: { socketOptions: { keepAlive: 1 } } };
mongoose.connect('mongodb://localhost/db1', options);
};
connect();
mongoose.connection.on('error', console.log);
mongoose.connection.on('disconnected', connect);