Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/postgresql/10.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Postgresql 我应该在HA设置中禁用Knex.js连接池吗?_Postgresql_High Availability_Knex.js_Pgpool - Fatal编程技术网

Postgresql 我应该在HA设置中禁用Knex.js连接池吗?

Postgresql 我应该在HA设置中禁用Knex.js连接池吗?,postgresql,high-availability,knex.js,pgpool,Postgresql,High Availability,Knex.js,Pgpool,我有一个高可用性设置,其中数据流如下: ... <-> Objection.js <-> Knex.js (pool) <-> Pgpool-II (pool) <-> PostgreSQL Cluster 。。。objective.js Knex.js(池)Pgpool II(池)PostgreSQL集群 如您所见,连接池目前在两个地方进行管理—Knex.js和Pgpool II。我想知道我是否真的需要两者,或者我是否可以使用pool:{mi

我有一个高可用性设置,其中数据流如下:

... <-> Objection.js <-> Knex.js (pool) <-> Pgpool-II (pool) <-> PostgreSQL Cluster
。。。objective.js Knex.js(池)Pgpool II(池)PostgreSQL集群
如您所见,连接池目前在两个地方进行管理—Knex.js和Pgpool II。我想知道我是否真的需要两者,或者我是否可以使用
pool:{min:0,max:0}
禁用Knex.js池,让Pgpool II完成所有工作?谢谢。

同样的问题。