middleware between PostgreSQL servers and clients for connection pooling, replication and load balancing
0
votes
1answer
25 views
replicate specific partition or tablespace in postgres
I am considering a scenario where different partitions/tablespace are replicated on different slaves. Is it possible to achieve this? If so, by which possible schemes.
Thanks.
0
votes
0answers
27 views
Performance issue when using pgpool for fail-over and recovery of postgresql DB
I am working on a POC of setting up PGPOOL with postgresql for failover and recovery.
Everything is working fine but I am observing huge performance delay with transaction.
Following is my setup.. ...
0
votes
1answer
45 views
Connection Pool for a Single Threaded Application
Is there any reason to maintain a pool with more than one connection when running a single-process, single-threaded application?
1
vote
0answers
71 views
Npgsql failed to establish connection to CentOS PostgreSQL through PgPool
I have a webapplication in Asp.net connecting to a separate database-server running CentOS with PostgreSQL. This setup works fine.
To increase performance on the database-server I'm trying to ...
0
votes
0answers
19 views
Pgpool2 Online Recovry fail at updating data with one node failed
I followed this instructions to test online recovery. But when I try to kill the second node while an update process is running at the first node, I came up with this error:
ERROR: kind mismatch ...
1
vote
1answer
136 views
Pgpool in parallel mode does not work in java
We are trying to use pgpool 3.2.1 in parallel mode to split a database table across multiple servers. However, when using java, it seems to only do replication mode and not parallel mode.
In ...
1
vote
1answer
173 views
pgpool2 load balancing not working
I have a Python/Django app that will require database load balancing at some point in the near future. In the meantime I'm trying to learn to implement pgpool on a local virtual machine setup.
I ...
0
votes
1answer
100 views
pgpool connections get frozen
I have installed pgpool 3.2.1 with 2 backends in streaming replication mode with load balancing and connections pool.I did some high load tests tring to colapse the pgpool connections.
Suposing that ...
3
votes
1answer
125 views
php5 + pdo + postgres + pgpool-ii: error without log
I use pgpool-ii 3.2.1, php 5.3.3-7+squeeze14, postgresql 8.4.13.
I have some trouble with an insert query made by PDO, but I don't understand where the problem is because no log was written ...
4
votes
1answer
229 views
PHP PDO PGPOOL PGSQL - SQLSTATE[HY000]: General error: 7 no connection to the server
I try to explain the problem I have!!!
I use PDO extension to connect to PostgreSQL through pgpool-II. It works fine within Apache, but from PHP CLI (on the same machine) I receive this PDO error:
...
0
votes
1answer
710 views
pgpool-II authentication failure
I am using pgpool-II 3.2.1 in from of two PostgreSQL 9.1 configured as master-hot standby.
When trying to authenticate from PGAdmin I get:
Error connecting to the server: FATAL: password ...
0
votes
0answers
80 views
Can't create the database in pgpool
Hi I'm study about pgpool's working.
while start creating database I got this error.
createdb: could not connect to database postgres: server closed the connection unexpectedly. This probably ...
0
votes
2answers
560 views
pgpool cant create database
I have started the pgpool using the command
sudo pgpool -n &
it started giving the following msg on the terminal:
2012-05-04 10:54:29 LOG: pid 4109: pgpool-II successfully started. ...
0
votes
1answer
360 views
SSH command in a bash script isn't run when the script is executed by an application
I'm using PG pool, which executes a failover script when a database node goes down. The script needs to touch a certain file on the new master and make some changes on the old master. It works fine ...
3
votes
1answer
1k views
A good PgPool II configurataion
I have been trying to configure PgPool to accept a requests of about 150. Postgres server is configured to accept only 100 connections. Anything beyond 100 need to be pooled by PgPool. I don't seem to ...
0
votes
1answer
158 views
pgpool2 cannot rejoin faild master as the new slave
i have a pgpool2 3.1.3 installed with 2 postgresql 9.1.3 backend configured as master/slave with streaming replication.
If the master fails everything is ok, the slave takes over and becomes the new ...
2
votes
2answers
1k views
Postgres 9.0 and pgpool replication : single point of failure?
My application uses Postgresql 9.0 and is composed by one or more stations that interacts with a global database: it is like a common client server application but to avoid any additional hardware, ...
10
votes
2answers
817 views
Java queries against PGPool II cause “unnamed prepared statement does not exist” errors
I have a Java app that uses a Postgres database and I'm trying to introduce PGPool in order to scale up my database. I'm running into a problem where Postgres throws the following error: unnamed ...
4
votes
1answer
1k views
Slony and PGPool for fail-over
We're considering Slony and PGPool as alternatives to handle failover in our application -and it seems like since we're gonna need at least two DB servers, we could take advantage of load balancing ...
0
votes
1answer
199 views
What permissions does the health_check_user for pgpool-II need?
I'm confused about a point of pg_pool-II's documentation. The health_check_user is used to determine the health of DB cluster servers, but what abilities does the health_check_user need? As there are ...
3
votes
2answers
3k views
Deploying a high availability Postresql 9.0 on Amazon EC2 with PGPool-ii
We have an existing web application that uses Postgresql 9.0 and PGPool-ii. I am thinking of migrating our infrastructore to Amazon EC2 and was inspired by the following link: ...
0
votes
1answer
609 views
Solr Importing database field issues . how to I use postgres pgpool connection?
I am using postgres database and pgpool . Postgres database port : 5432 is woking fine. But
I am using Pgpool port : 9999 is Not Working.
MY importing xml file (myproduct.xml)
Working
...
1
vote
4answers
1k views
Cursor error with postgresql, pgpool and php
Hey, I am struggling a bit to determine the exact cause of an error that has been popping up in our release environment. There does not seem to be much dealing with this particular error on Google.
...
0
votes
1answer
2k views
Configure pgpool in master_slave mode fails to auth against backend
I am trying to run pgpool on 2+ web servers which also have a rails app, etc. The idea is to have replication via slony or streaming and failover via pgpool. It would also be nice to have queries ...
0
votes
1answer
724 views
Equivalent of pgpool-II for MySQL
Is there any tools which is equivalent to pgpool-II (which is for PostgreSQL) for MySQL db?
Of particular importance for me is the feature - Load Balalce
Load Balance
If a database is ...