MongoDB 连接增加,即使我已断开所有资源与 mongo DB 的连接

发布于 2025-01-15 00:45:19 字数 231 浏览 0 评论 0原文

在此处输入图像描述

我一直在使用 mongo db 作为我的数据库,突然 mongo db 给我发了邮件我使用了最大连接,即 500,但我只连接到正在工作的单个应用程序。即使停止我的 api 和 mongo compass 后,它也会显示某种随机活动连接,如何将活动连接减少到实际活动连接?

enter image description here

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

哑剧 2025-01-22 00:45:19

只有很少的事情可以解决它。

需要在 Mongo URI 中添加以下选项,

  • connectTimeoutMS
  • socketTimeoutMS
  • maxIdleTimeMS

对于我的情况,我配置了以下数字

?retryWrites=true&w=majority&maxIdleTimeMS=60000&connectTimeoutMS=150000&socketTimeoutMS=90000

通过这些选项我已经解决了 问题。

There are only few things to solve it.

Need to add the below options in your Mongo URI,

  • connectTimeoutMS
  • socketTimeoutMS
  • maxIdleTimeMS

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文