pgbouncer
pgbouncer — aPostgres Pro connection pooler
Synopsis
On Linux systems:
pgbouncer
[ -d ] [ -R ] [ -v ] [ -uuser
] pgbouncer.ini
pgbouncer
-V | -h
On Windows systems:
pgbouncer
[ -v ] [ -uuser
] pgbouncer.ini
pgbouncer
-V | -h
To usepgbouncer as a Windows service:
pgbouncer.exe
--regservice pgbouncer.ini
pgbouncer.exe
--unregservice pgbouncer.ini
Description
pgbouncer is aPostgres Pro connection pooler. Any target application can be connected topgbouncer as if it were aPostgres Pro server, andpgbouncer will create a connection to the actual server, or it will reuse one of its existing connections.
The aim ofpgbouncer is to lower the performance impact of opening new connections toPostgres Pro.
In order not to compromise transaction semantics for connection pooling,pgbouncer supports several types of pooling when rotating connections:
- Session pooling
Most polite method. When a client connects, a server connection will be assigned to it for the whole duration the client stays connected. When the client disconnects, the server connection will be put back into the pool. This is the default method.
- Transaction pooling
A server connection is assigned to a client only during a transaction. Whenpgbouncer notices that transaction is over, the server connection will be put back into the pool.
- Statement pooling
Most aggressive method. The server connection will be put back into the pool immediately after a query completes. Multi-statement transactions are disallowed in this mode as they would break.
The administration interface ofpgbouncer consists of some newSHOW
commands available when connected to a special“virtual” databasepgbouncer
.
Quick Start
Basic setup and usage is as follows.
Create a
pgbouncer.ini
file. Details in thepgbouncer(5)
man page. Simple example:[databases]template1 = host=127.0.0.1 port=5432 dbname=template1[pgbouncer]listen_port = 6543listen_addr = 127.0.0.1auth_type = md5auth_file = userlist.txtlogfile = pgbouncer.logpidfile = pgbouncer.pidadmin_users = someuser
Create a
userlist.txt
file that contains the users allowed in:"someuser" "same_password_as_in_server"
Launchpgbouncer:
$ pgbouncer -d pgbouncer.ini
Note
The above command does not work on Windows systems. Instead,pgbouncer must be launched as a service that first needs to be registered, as follows:
pgbouncer --regservice
Have your application (or the
psql
client) connect topgbouncer instead of directly to thePostgres Pro server:$ psql -p 6543 -U someuser template1
Managepgbouncer by connecting to the special administration databasepgbouncer and issuing
SHOW HELP;
to begin:$ psql -p 6543 -U someuser pgbouncerpgbouncer=# SHOW HELP;NOTICE: Console usageDETAIL: SHOW [HELP|CONFIG|DATABASES|FDS|POOLS|CLIENTS|SERVERS|SOCKETS|LISTS|VERSION|...] SET key = arg RELOAD PAUSE SUSPEND RESUME SHUTDOWN [...]
If you made changes to the
pgbouncer.ini
file, you can reload it with:pgbouncer=# RELOAD;
Options
-d
Run in the background. Without it, the process will run in the foreground.
Note
Does not work on Windows,pgbouncer needs to run as service there.
-R
Do an online restart. That means connecting to the running process, loading the open sockets from it, and then using them. If there is no active process, boot normally.
-u
user
-v
-q
-V
-h
--regservice
--unregservice
Admin Console
The console is available by connecting as normal to the databasepgbouncer:
$ psql -p 6543 pgbouncer
Additionally, the user namepgbouncer
is allowed to log in without password, if the login comes via the Unix socket and the client has same Unix useruid as the running process.
Show Commands
TheSHOW
commands output information. Each command is described below.
SHOW STATS
database
total_xact_count
total_query_count
total_received
Total volume in bytes of network traffic received bypgbouncer.
total_sent
total_xact_time
total_query_time
total_wait_time
Time spent by clients waiting for a server, in microseconds.
avg_xact_count
avg_query_count
avg_recv
avg_sent
avg_xact_time
avg_query_time
avg_wait_time
Time spent by clients waiting for a server, in microseconds (average per second).
SHOW SERVERS
type
user
database
state
State of thepgbouncer server connection, one of
active
,used
oridle
.addr
port
local_addr
local_port
connect_time
request_time
wait
wait_us
close_needed
ptr
Address of internal object for this connection. Used as unique ID.
link
remote_pid
PID of backend server process. In case connection is made over Unix socket and OS supports getting process ID info, its OSPID. Otherwise it's extracted from cancel packet the server sent, which should be thePID in case the server isPostgres Pro, but it's a random number in case the server is anotherpgbouncer.
tls
A string with TLS connection information, or empty if not using TLS.
SHOW CLIENTS
type
user
database
state
State of the client connection, one of
active
,used
,waiting
oridle
.addr
port
local_addr
local_port
connect_time
request_time
wait
wait_us
close_needed
ptr
Address of internal object for this connection. Used as unique ID.
link
remote_pid
Process ID, in case client connects over Unix socket and OS supports getting it.
tls
A string with TLS connection information, or empty if not using TLS.
SHOW POOLS
A new pool entry is made for each couple of (database, user).
database
user
cl_active
Client connections that are linked to server connection and can process queries.
cl_waiting
Client connections have sent queries but have not yet got a server connection.
sv_active
sv_idle
Server connections that are unused and immediately usable for client queries.
sv_used
sv_tested
Server connections that are currently running either
server_reset_query
orserver_check_query
.sv_login
maxwait
maxwait_us
pool_mode
SHOW LISTS
SHOW DATABASES
SHOW FDS
Internal command — shows list of file descriptors (FDs) in use with internal state attached to them.
When the connected user has the user namepgbouncer
, connects through the Unix socket and has the sameUID as the running process, the actual FDs are passed over the connection. This mechanism is used to do an online restart.
This command also blocks the internal event loop, so it should not be used whilepgbouncer is in use.
Process Controlling Commands
PAUSE [db
]
If database name is given, only that database will be paused.
New client connections to a paused database will wait untilRESUME
is called.
KILLdb
Immediately drop all client and server connections on given database.
New client connections to a killed database will wait untilRESUME
is called.
WAIT_CLOSE [db
]
Wait until all server connections, either of the specified database or of all databases, have cleared theclose_needed
state (seethe section called “SHOW SERVERS”). This can be called after aRECONNECT
orRELOAD
to wait until the respective configuration change has been fully activated, for example in switchover scripts.
Other Commands
SETkey
=arg
Changes a configuration setting (see alsothe section called “SHOW CONFIG”). For example:
SET log_connections = 1;SET server_check_query = 'select 2';
(Note that this command is run on thepgbouncer admin console and setspgbouncer settings. ASET
command run on another database will be passed to thePostgres Pro backend like any other SQL command.)
Signals
SIGHUP
Reload config. Same as issuing the command
RELOAD
on the console.SIGINT
Safe shutdown. Same as issuing
PAUSE
andSHUTDOWN
on the console.SIGTERM
Immediate shutdown. Same as issuing
SHUTDOWN
on the console.SIGUSR1
Same as issuing
PAUSE
on the console.SIGUSR2
Same as issuing
RESUME
on the console.
Libevent Settings
From the libevent documentation:
It is possible to disable support for
epoll
,kqueue
,devpoll
,poll
, orselect
by setting the environment variableEVENT_NOEPOLL
,EVENT_NOKQUEUE
,EVENT_NODEVPOLL
,EVENT_NOPOLL
orEVENT_NOSELECT
, respectively.By setting the environment variable
EVENT_SHOW_METHOD
,libevent
displays the kernel notification method that it uses.
pgbouncer.ini
Configuration File
The configuration file is in the.ini
format. Section names are between "[" and "]". Lines starting with ";" or "#" are taken as comments and ignored. The characters ";" and "#" are not recognized when they appear later in the line.
Generic Settings
logfile
Specifies log file. Log file is kept open so after rotation
kill -HUP
or on consoleRELOAD;
should be done. Note: On Windows systems, the service must be stopped and started.Default: not set
pidfile
Specifies the PID file. Without a
pidfile
, daemonization is not allowed.Default: not set
listen_addr
Specifies list of addresses, where to listen for TCP connections. You may also use
*
meaning "listen on all addresses". When not set, only Unix socket connections are allowed.Addresses can be specified numerically (IPv4/IPv6) or by name.
Default: not set
listen_port
Which port to listen on. Applies to both TCP and Unix sockets.
Default: 6432
unix_socket_dir
Specifies location for Unix sockets. Applies to both listening socket and server connections. If set to an empty string, Unix sockets are disabled. Required for online reboot (-R) to work. Note: Not supported on Windows systems.
Default: /tmp
unix_socket_mode
File system mode for Unix socket.
Default: 0777
unix_socket_group
Group name to use for Unix socket.
Default: not set
user
If set, specifies the Unix user to change to after startup. Works only ifpgbouncer is started as root or if it's already running as given user.
Note: Not supported on Windows systems.
Default: not set
auth_file
The name of the file to load user names and passwords from. Seethe section called “Authentication File Format” for details.
Default: not set
auth_hba_file
HBA configuration file to use when
auth_type
ishba
. Supported from version 1.7 onwards.Default: not set
auth_type
How to authenticate users.
pam
Pluggable Authentication Modules (PAM) method is used to authenticate users,
auth_file
is ignored. This method is not compatible with databases usingauth_user
option. Service name reported toPAM ispgbouncer
. Also,PAM is still not supported inHBA configuration file.hba
Actual authentication type is loaded from
auth_hba_file
. This allows different authentication methods different access paths. Example: connection over Unix socket usespeer
authentication method, connection overTCP must useTLS. Supported from version 1.7 onwards.cert
Client must connect overTLS connection with valid client certificate. Username is then taken from CommonName field from certificate.
md5
Use MD5-based password check. This is the default authentication method.
auth_file
may contain both MD5-encrypted or plain-text passwords. Ifmd5
is configured and a user has a SCRAM secret, then SCRAM authentication is used automatically instead.scram-sha-256
Use password check with SCRAM-SHA-256.
auth_file
has to contain SCRAM secrets or plain-text passwords. Note that SCRAM secrets can only be used for verifying the password of a client but not for logging into a server. To be able to use SCRAM on server connections, use plain-text passwords.plain
Clear-text password is sent over wire. Deprecated.
trust
No authentication is done. Username must still exist in
auth_file
.any
Like the
trust
method, but the username given is ignored. Requires that all databases are configured to log in as specific user. Additionally, the console database allows any user to log in as admin.
auth_query
Query to load user's password from database.
Direct access to
pg_shadow
requires admin rights. It's preferable to use non-admin user that calls SECURITY DEFINER function instead.Note that the query is run inside target database, so if a function is used it needs to be installed into each database.
Default:
SELECT usename, passwd FROM pg_shadow WHERE usename=$1
auth_user
If
auth_user
is set, any user not specified inauth_file
will be queried through theauth_query
query frompg_shadow
in the database usingauth_user
.auth_user
's password will be taken fromauth_file
.Direct access to
pg_shadow
requires admin rights. It's preferable to use non-admin user that calls SECURITY DEFINER function instead.Default: not set
pool_mode
Specifies when a server connection can be reused by other clients.
session
Server is released back to pool after client disconnects. Default.
transaction
Server is released back to pool after transaction finishes.
statement
Server is released back to pool after query finishes. Long transactions spanning multiple statements are disallowed in this mode.
max_client_conn
Maximum number of client connections allowed. When increased, the file descriptor limits should also be increased. Note that actual number of file descriptors used is more than
max_client_conn
. If each user connects under its own username to server, theoretical maximum used is:max_client_conn + (max pool_size * total databases * total users)
If a database user is specified in connect string (all users connect under same username), the theoretical maximum is:
max_client_conn + (max pool_size * total databases)
The theoretical maximum should be never reached, unless somebody deliberately crafts special load for it. Still, it means you should set the number of file descriptors to a safely high number.
Search for
ulimit
in your favorite shell man page. Note:ulimit
does not apply in a Windows environment.Default: 100
default_pool_size
How many server connections to allow per user/database pair. Can be overridden in the per-database configuration.
Default: 20
min_pool_size
Add more server connections to pool if below this number. Improves behavior when usual load suddenly comes back after a period of total inactivity.
Default: 0 (disabled)
reserve_pool_size
How many additional connections to allow to a pool. The 0 value disables this parameter.
Default: 0 (disabled)
reserve_pool_timeout
If a client has not been serviced in this many seconds,pgbouncer enables use of additional connections from reserve pool. The 0 value disables this parameter.
Default: 5.0
max_db_connections
Do not allow more than this many connections per-database (regardless of pool — i.e. user). It should be noted that when you hit the limit, closing a client connection to one pool will not immediately allow a server connection to be established for another pool, because the server connection for the first pool is still open. Once the server connection closes (due to idle timeout), a new server connection will immediately be opened for the waiting pool.
Default: unlimited
max_user_connections
Do not allow more than this many connections per-user (regardless of pool — i.e. user). It should be noted that when you hit the limit, closing a client connection to one pool will not immediately allow a server connection to be established for another pool, because the server connection for the first pool is still open. Once the server connection closes (due to idle timeout), a new server connection will immediately be opened for the waiting pool.
server_round_robin
By default,pgbouncer reuses server connections in LIFO (last-in, first-out) manner, so that few connections get the most load. This gives best performance if you have a single server serving a database. But if there isTCP round-robin behind a database IP, then it is better ifpgbouncer also uses connections in that manner, thus achieving uniform load.
ignore_startup_parameters
disable_pqexec
application_name_add_host
conffile
service_name
job_name
stats_period
Sets how often the averages shown in various
SHOW
commands are updated and how often aggregated statistics are written to the log (but seelog_stats
). [seconds]Default: 60
Log Settings
syslog
Togglessyslog on/off. On Windows systems,eventlog is used instead.
Default: 0
syslog_ident
Under what name to send logs tosyslog.
Default:
pgbouncer
(program name)syslog_facility
Under what facility to send logs tosyslog. Possibilities:
auth
,authpriv
,daemon
,user
,local0-7
.Default: daemon
log_connections
Log successful logins.
Default: 1
log_disconnections
Log disconnections with reasons.
Default: 1
log_pooler_errors
Log error messages pooler sends to clients.
Default: 1
stats_period
Period for writing aggregated stats into log.
Default: 60
log_stats
Write aggregated statistics into the log, every
stats_period
. This can be disabled if external monitoring tools are used to grab the same data fromSHOW
commands.Default: 1
verbose
Increase verbosity. Mirrors "-v" switch on command line. Using "-v -v" on command line is same as
verbose=2
in configuration file.Default: 0
Console Access Control
admin_users
Comma-separated list of database users that are allowed to connect and run all commands on console. Ignored when
auth_type
isany
, in which case any username is allowed in as admin.Default: empty
stats_users
Comma-separated list of database users that are allowed to connect and run read-only queries on console. That means all SHOW commands except SHOW FDS.
Default: empty.
Connection Sanity Checks, Timeouts
server_reset_query
Query sent to server on connection release, before making it available to other clients. At that moment no transaction is in progress so it should not include
ABORT
orROLLBACK
.The query is supposed to clean any changes made to database session so that next client gets connection in well-defined state. Default is
DISCARD ALL
which cleans everything, but that leaves next client no pre-cached state. It can be made lighter, e.g.DEALLOCATE ALL
to just drop prepared statements, if application does not break when some state is kept around.When transaction pooling is used, the
server_reset_query
is not used, as clients must not use any session-based features as each transaction ends up in different connection and thus gets different session state.Default: DISCARD ALL
server_reset_query_always
Whether
server_reset_query
should be run in all pooling modes. When this setting is off (default), theserver_reset_query
will be run only in pools that are in sessions-pooling mode. Connections in transaction-pooling mode should not have any need for reset query.It is workaround for broken setups that run apps that use session features over transaction-pooledpgbouncer. It changes non-deterministic breakage to deterministic breakage — client always lose their state after each transaction.
Default: 0
server_check_delay
How long to keep released connections available for immediate re-use, without running sanity-check queries on it. If 0 then the query is always run.
Default: 30.0
server_check_query
Simple do-nothing query to check if the server connection is alive.
If an empty string, then sanity checking is disabled.
Default: SELECT 1;
server_fast_close
Disconnect a server in session pooling mode immediately or after the end of the current transaction if it is in
close_needed
mode (set byRECONNECT
,RELOAD
that changes connection settings, or DNS change), rather than waiting for the session end. In statement or transaction pooling mode, this has no effect since that is the default behavior there.If because of this setting a server connection is closed before the end of the client session, the client connection is also closed. This ensures that the client notices that the session has been interrupted.
This setting makes connection configuration changes take effect sooner if session pooling and long-running sessions are used. The downside is that client sessions are liable to be interrupted by a configuration change, so client applications will need logic to reconnect and reestablish session state. But note that no transactions will be lost, because running transactions are not interrupted, only idle sessions.
Default: 0
server_lifetime
The pooler will close an unused server connection that has been connected longer than this. Setting it to 0 means the connection is to be used only once, then closed. [seconds]
Default: 3600.0
server_idle_timeout
If a server connection has been idle more than this many seconds it will be dropped. If 0 then timeout is disabled. [seconds]
Default: 600.0
server_connect_timeout
If connection and login won't finish in this amount of time, the connection will be closed. [seconds]
Default: 15.0
server_login_retry
If login failed, because of failure from connect() or authentication that pooler waits this much before retrying to connect. [seconds]
Default: 15.0
client_login_timeout
If a client connects but does not manage to login in this amount of time, it will be disconnected. Mainly needed to avoid dead connections stalling SUSPEND and thus online restart. [seconds]
Default: 60.0
autodb_idle_timeout
If the automatically created (via "*") database pools have been unused this many seconds, they are freed. The negative aspect of that is that their statistics are also forgotten. [seconds]
Default: 3600.0
dns_max_ttl
How long the DNS lookups can be cached. If a DNS lookup returns several answers,pgbouncer will robin-between them in the meantime. Actual DNS TTL is ignored. [seconds]
Default: 15.0
dns_nxdomain_ttl
How long error and NXDOMAIN DNS lookups can be cached. [seconds]
Default: 15.0
dns_zone_check_period
Period to check if zone serial has changed.
Works only with UDNS and c-ares backends (
--with-udns
or--with-cares
to configure).
TLS Settings
client_tls_sslmode
TLS mode to use for connections from clients.TLS connections are disabled by default. When enabled,
client_tls_key_file
andclient_tls_cert_file
must be also configured to set up key and certpgbouncer uses to accept client connections.client_tls_key_file
client_tls_cert_file
client_tls_ca_file
client_tls_protocols
WhichTLS protocol versions are allowed. Allowed values:
tlsv1.0
,tlsv1.1
,tlsv1.2
,tlsv1.3
. Shortcuts:all
(tlsv1.0,tlsv1.1,tlsv1.2,tlsv1.3),secure
(tlsv1.2,tlsv1.3),legacy
(all).client_tls_ciphers
client_tls_ecdhcurve
Elliptic Curve name to use for ECDH key exchanges.
Allowed values:
none
(DH is disabled),auto
(256-bit ECDH), curve name.client_tls_dheparams
Allowed values:
none
(DH is disabled),auto
(2048-bit DH),legacy
(1024-bit DH).server_tls_sslmode
TLS mode to use for connections toPostgres Pro servers.TLS connections are disabled by default.
disable
prefer
TLS connection is always requested first fromPostgres Pro, when refused connection will be established over plainTCP. Server certificate is not validated.
require
Connection must go overTLS. If server rejects it, plainTCP is not attempted. Server certificate is not validated.
verify-ca
Connection must go overTLS and server certificate must be valid according to
server_tls_ca_file
. Server host name is not checked against certificate.verify-full
Connection must go overTLS and server certificate must be valid according to
server_tls_ca_file
. Server host name must match certificate info.
server_tls_ca_file
Root certificate file to validatePostgres Pro server certificates.
Default: unset.
server_tls_key_file
Private key forpgbouncer to authenticate againstPostgres Pro server.
Default: not set.
server_tls_cert_file
Certificate for private key.Postgres Pro server can validate it.
Default: not set.
server_tls_protocols
server_tls_ciphers
Dangerous Timeouts
Low-Level Network Settings
pkt_buf
Internal buffer size for packets. Affects size ofTCP packets sent and general memory usage. Actuallibpq packets can be larger than this, so, no need to set it large.
max_packet_size
listen_backlog
sbuf_loopcnt
How many times to process data on one connection, before proceeding. Without this limit, one connection with a big result set can stallpgbouncer for a long time. One loop processes one
pkt_buf
amount of data. 0 means no limit.Default: 5
suspend_timeout
How many seconds to wait for buffer flush during SUSPEND or reboot (-R). Connection is dropped if flush does not succeed.
Default: 10
tcp_defer_accept
For details on this and otherTCP options, please see
man 7 tcp
.tcp_socket_buffer
tcp_keepalive
tcp_keepcnt
tcp_keepidle
tcp_keepintvl
Section [databases]
"*" acts as fallback database: if the exact name does not exist, its value is taken as connect string for requested database. Such automatically created database entries are cleaned up if they stay idle longer than the time specified inautodb_idle_timeout
parameter.
dbname
Destination database name.
Default: same as client-side database name.
host
Host name or IP address to connect to. Host names are resolved at connect time, the result is cached per
dns_max_ttl
parameter. When a host name's resolution changes, existing server connections are automatically closed when they are released (according to the pooling mode), and new server connections immediately use the new resolution. IfDNS returns several results, they are used in round-robin manner.port
user
password
The length for
password
is limited to 160 characters maximum.If no password is specified here, the password from the
auth_file
orauth_query
will be used.auth_user
pool_size
Set maximum size of pools for this database. If not set, the
default_pool_size
is used.reserve_pool
Set additional connections for this database. If not set,
reserve_pool_size
is used.connect_query
pool_mode
Set the pool mode specific to this database. If not set, the default pool_mode is used.
max_db_connections
client_encoding
datestyle
timezone
Include Directive
%includefilename
If the file name is not absolute path it is taken as relative to current working directory.
Authentication File Format
pgbouncer needs its own user database. The users are loaded from a text file in following format:
"username1" "password" ..."username2" "md5abcdef012342345" ..."username2" "SCRAM-SHA-256$iterations
:salt
$storedkey
:serverkey
"
Postgres Pro MD5-hidden password format:
"md5" + md5(password + username)
So useradmin
with password1234
will have MD5-hidden passwordmd545f2603610af569b6155c45067268c6b
.
Postgres Pro SCRAM secret format:
SCRAM-SHA-256$iterations
:salt
$storedkey
:serverkey
HBA File Format
It follows the format ofPostgres Propg_hba.conf
file described inSection 19.1.
Supported record types:
local
,host
,hostssl
,hostnossl
.Database field: Supports
all
,sameuser
, @file
, multiple names. Not supported:replication
,samerole
,samegroup
.Username field: Supports
all
, @file
, multiple names. Not supported:+groupname
.Address field: Supported
IPv4
,IPv6
. Not supported: DNS names, domain prefixes.Auth-method field: Only methods supported bypgbouncer's
auth_type
are supported, exceptany
andpam
, which only work globally. Username map (map=
) parameter is not supported.
Example
Minimal config:
[databases]template1 = host=127.0.0.1 dbname=template1 auth_user=someuser[pgbouncer]pool_mode = sessionlisten_port = 6543listen_addr = 127.0.0.1auth_type = md5auth_file = users.txtlogfile = pgbouncer.logpidfile = pgbouncer.pidadmin_users = someuserstats_users = stat_collector
Database defaults:
[databases]; foodb over Unix socketfoodb =; redirect bardb to bazdb on localhostbardb = host=127.0.0.1 dbname=bazdb; access to destination database will go with single userforcedb = host=127.0.0.1 port=300 user=baz password=foo client_encoding=UNICODE datestyle=ISO
Example of a secure function forauth_query
:
CREATE OR REPLACE FUNCTION pgbouncer.user_lookup(in i_username text, out uname text, out phash text)RETURNS record AS $$BEGIN SELECT usename, passwd FROM pg_catalog.pg_shadow WHERE usename = i_username INTO uname, phash; RETURN;END;$$ LANGUAGE plpgsql SECURITY DEFINER;REVOKE ALL ON FUNCTION pgbouncer.user_lookup(text) FROM public, pgbouncer;GRANT EXECUTE ON FUNCTION pgbouncer.user_lookup(text) TO pgbouncer;