我在docker容器中启动并运行了mongodb。我停止容器,节点返回MongoError。我重新启动容器,节点继续抛出相同的MongoError。
我希望它在出现问题时重新连接。
const uri: string = this.config.db.uri;
const options = {
useNewUrlParser: true,
useCreateIndex: true,
autoIndex: true,
autoReconnect: true,
},
mongoose.connect(uri, options).then(
() => {
this.log.info("MongoDB Successfully Connected On: " + this.config.db.uri);
},
(err: any) => {
this.log.error("MongoDB Error:", err);
this.log.info("%s MongoDB connection error. Please make sure MongoDB is running.");
throw err;
},
);
当mongodb连接失败时,如何设置mongoose尝试自动连接。
答案 0 :(得分:2)
我找到了答案,而不是像其他人建议的那样检查错误事件并重新连接。您可以设置一些选项来处理自动重新连接。
这是我现在正在使用的猫鼬选项集。
GROUP BY
您可以通过在容器中启动和停止mongodb并检查您的节点应用程序来测试其工作情况。
有关更多信息,请参阅文档的此部分。 https://mongoosejs.com/docs/connections.html#options