mysql 并行连接数
我正在尝试用我自己的等效 SQS 替换 Amazon 的 SQS,它基本上使用 mysql 来持久存储消息。多个线程将尝试同时访问 mysql。我已在 2GB RAM 系统中将 MAX_CONNECTIONS 参数设置为 5000。 mysql会允许并行打开5000个连接吗?不然的话,mysql能支持多少个连接呢?
或者还有其他更好的方法来持久存储消息吗?请帮忙。提前致谢。
I'm trying to replace Amazon's SQS with my own equivalent SQS, which basically makes use of mysql for persistent storage of messages. Several threads will try to access mysql simultaneously. I've set MAX_CONNECTIONS parameter to 5000 in a 2GB RAM system. Will mysql allow 5000 connections to be opened in parallel.Or else, how many connections can mysql support?
Or is there any other better way to store messages persistently? Pls help. Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在这里您将找到有关 mysql 内存使用情况的详细信息。
有一些变量决定每个线程的内存消耗。
Here you will find details on memory usage in mysql.
There are variables that determine memory consumption per thread.