gpt4 book ai didi

postgresql - 具有 10000 个并发连接的 pgpool num_init_children

转载 作者:行者123 更新时间:2023-12-05 01:20:35 30 4
gpt4 key购买 nike

昨天我用 pgbench 测试了 pgpool :

pgbench -c 30 -T 20 -r pgbench -p9999 -h192.168.8.28

并发连接数是30,pgpool默认的num_init_children是32。

所以,当我设置 -c 33 时,测试将被阻止,除非我突破。


我的问题是:

If my concurrent connections online is 10000, should I set num_init_children=10000? 

可怕的是 num_init_children=10000 意味着 pgpool 从 10000 个进程开始。

有什么问题吗?

我如何配置 pgpool 10000 个并发连接?

最佳答案

一个 pgpool 子进程在任何时候只能处理一个客户端连接。因此 num_init_children 的值与预期的最大并发连接数成正比。如果你想通过 pgpool 获得 10,000 个并发连接,除了将 num_init_children 设置为 10,000 之外别无他法。PostgreSQL 还产生一个专门的进程来处理每个客户端连接,因此如果在任何情况下 PostgreSQL 服务器有 10,000 个连接的客户端,它也会有 10,000 个子进程。 pgpool 和 PostgreSQL 在这方面的区别在于 pgpool 预生成 num_init_children 个连接数,而 PostgreSQL 按需进行。

关于postgresql - 具有 10000 个并发连接的 pgpool num_init_children,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31714773/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com