如何计算数据库连接池的大小?

发布于 2024-08-13 03:30:31 字数 105 浏览 2 评论 0原文

假设我预计每秒大约有 100 个请求,每个请求应该花费 1 - 3 秒之间的时间(在完美的世界中)。

我会创建一个包含 300 个连接的池吗?或者稍微高一点的东西来补偿潜在的峰值?

Say I'm expecting about 100 requests a second, each request should take anywhere between 1 - 3 seconds (In a perfect world).

Would I create a pool of 300 connections? Or something slightly higher to compensate for potential spikes?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

笑看君怀她人 2024-08-20 03:30:31

这取决于到达事件的分布。
排队理论可以为您提供一个公式(对于给定的分布)您需要多少个连接,以便失败的概率(在您的情况下没有免费连接)将不超过一定的百分比。

您可能需要查看这些注释(第 17 页),其中可以为您提供一些信息公式,例如同时处理 n 个请求的概率或者您有一个非空队列(您想要避免的状态)

That depends on the distribution of arriving events.
Queuing theory can give you a formula (for a given distribution) how many connections you need so that the probability of failure (no free connection in your case) will be no more than certain percentage.

You may want to look at these notes (page 17) which give you some formulas, such as probability that you have n requests being served at the same time or you have a non-empty queue (the state that you want to avoid)

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