问题 I am using mongoDB change stream in nodejs, everything works fine but if database is down has taken more than 10 5 seconds to get up change stream throws timeout error, here is my change stream watcher code Service.prototype.watcher = function( db ){ let collection = db.collection('tokens'); let changeStream = collection.watch({ fullDocument: 'updateLookup' }); let resumeToken, newChangeStream; changeStream.on('change', next => { resumeToken = next._id; console.log('data is ', JSON.stringify