MongoDB 连接增加,即使我已断开所有资源与 mongo DB 的连接
我一直在使用 mongo db 作为我的数据库,突然 mongo db 给我发了邮件我使用了最大连接,即 500,但我只连接到正在工作的单个应用程序。即使停止我的 api 和 mongo compass 后,它也会显示某种随机活动连接,如何将活动连接减少到实际活动连接?
I have been using mongo db as my database , suddenly mongo db mails me that i have used maximum connection i.e 500 but i have only connected to a single application which iam working. even after stopping my api and mongo compass it shows some kind of random active connections , how to reduce the active connections to actual active connection??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只有很少的事情可以解决它。
需要在 Mongo URI 中添加以下选项,
对于我的情况,我配置了以下数字
通过这些选项我已经解决了 问题。
There are only few things to solve it.
Need to add the below options in your Mongo URI,
For my Case I have configured with below number
<mongo_uri>?retryWrites=true&w=majority&maxIdleTimeMS=60000&connectTimeoutMS=150000&socketTimeoutMS=90000
With these options i have solved the issue.