]>
granicus.if.org Git - pgbouncer/log
Magnus Hagander [Tue, 20 Aug 2013 13:07:20 +0000 (15:07 +0200)]
Fix incorrect keyword in example config file
Marko Kreen [Sat, 15 Jun 2013 11:16:55 +0000 (04:16 -0700)]
Merge pull request #13 from petere/pidfile-newline
Add newline at the end of the PID file
Peter Eisentraut [Fri, 14 Jun 2013 18:47:30 +0000 (14:47 -0400)]
Add newline at the end of the PID file
This is standard for PID files elsewhere, and makes it behave better
when inspecting the file manually.
Marko Kreen [Mon, 8 Apr 2013 19:24:35 +0000 (22:24 +0300)]
log: wrap ipv6 address with []
Marko Kreen [Mon, 8 Apr 2013 19:11:37 +0000 (22:11 +0300)]
tune_socket: use libusual for socket flags
Marko Kreen [Tue, 2 Apr 2013 21:25:51 +0000 (00:25 +0300)]
On connect to server, show local ip and port
Marko Kreen [Tue, 2 Apr 2013 20:46:40 +0000 (23:46 +0300)]
Show remote pid of unix socket
Marko Kreen [Tue, 2 Apr 2013 20:46:29 +0000 (23:46 +0300)]
Refresh libusual
Marko Kreen [Tue, 19 Mar 2013 20:05:34 +0000 (22:05 +0200)]
Refresh libusual
Marko Kreen [Mon, 18 Mar 2013 16:01:52 +0000 (18:01 +0200)]
win32: Don't set SO_REUSEADDR on listen socket.
According to Postgres src/backend/libpq/pqcomm.c:
/*
* Without the SO_REUSEADDR flag, a new postmaster can't be started
* right away after a stop or crash, giving "address already in use"
* error on TCP ports.
*
* On win32, however, this behavior only happens if the
* SO_EXLUSIVEADDRUSE is set. With SO_REUSEADDR, win32 allows multiple
* servers to listen on the same address, resulting in unpredictable
* behavior. With no flags at all, win32 behaves as Unix with
* SO_REUSEADDR.
*/
Marko Kreen [Mon, 18 Mar 2013 15:44:15 +0000 (17:44 +0200)]
ipv6: Set IPV6_V6ONLY on listen socket.
Otherwise it attempts to take over ipv4 port
which fails if the ipv4 was initialized previously.
Reported-by: Guillaume Lelarge
Marko Kreen [Wed, 9 Jan 2013 10:31:48 +0000 (12:31 +0200)]
Add missing error checks
Marko Kreen [Wed, 9 Jan 2013 10:28:31 +0000 (12:28 +0200)]
configurable arch for mingw build
Marko Kreen [Wed, 9 Jan 2013 10:28:11 +0000 (12:28 +0200)]
configure: mention dns config in the end
Marko Kreen [Tue, 25 Dec 2012 20:09:33 +0000 (22:09 +0200)]
win32: use gnu-style for long args: --foo
Marko Kreen [Sat, 8 Dec 2012 11:09:10 +0000 (13:09 +0200)]
Fix IPv6 address memcpy
Marko Kreen [Sat, 8 Dec 2012 11:03:23 +0000 (03:03 -0800)]
Merge pull request #6 from mfenniak/master
Fix cancellation of waiting clients
Mathieu Fenniak [Fri, 7 Dec 2012 02:15:41 +0000 (19:15 -0700)]
Fix cancellation of of waiting clients
Search waiting_client_list for client to-be-cancelled, in addition
to active_client_list.
Marko Kreen [Mon, 3 Dec 2012 16:27:03 +0000 (18:27 +0200)]
Minor cleanups for ENABLE/DISABLE, add tests
Marko Kreen [Mon, 3 Dec 2012 16:19:27 +0000 (18:19 +0200)]
Merge remote-tracking branch 'wgrant/disable'
ENABLE/DISABLE <db> commands for disabling new connections.
Marko Kreen [Mon, 3 Dec 2012 16:03:55 +0000 (18:03 +0200)]
Show backend_pid in SHOW CLIENTS/SERVERS.
It should help to track connections over unix socket.
Marko Kreen [Mon, 28 May 2012 22:08:11 +0000 (01:08 +0300)]
New DNS backend: c-ares
Supports all interesting features, unlike other backends:
- /etc/hosts with refresh
- SOA lookup
- Large replies (via TCP/EDNS+UDP)
- IPv6
Marko Kreen [Wed, 28 Nov 2012 10:55:18 +0000 (12:55 +0200)]
v1.5.4
Marko Kreen [Wed, 28 Nov 2012 10:54:31 +0000 (12:54 +0200)]
Refresh libusual
- another fix for deb check
- fix win32 compilation
Marko Kreen [Wed, 31 Oct 2012 11:29:29 +0000 (13:29 +0200)]
dnslookup: missing active count inc
Marko Kreen [Wed, 31 Oct 2012 08:51:23 +0000 (10:51 +0200)]
dns: need to use statlist_remove() instead list_del()
Otherwise host_list will have wrong count.
It does not look like the codepath is actually ever used,
but still...
Marko Kreen [Mon, 29 Oct 2012 15:20:01 +0000 (17:20 +0200)]
getaddrinfo_a: drop double-alloc
Marko Kreen [Mon, 29 Oct 2012 15:12:15 +0000 (17:12 +0200)]
Refresh libusual
Marko Kreen [Mon, 29 Oct 2012 15:05:52 +0000 (17:05 +0200)]
udns: don't leak results
Marko Kreen [Sun, 28 Oct 2012 16:41:37 +0000 (18:41 +0200)]
Improve description of pooling states
Marko Kreen [Mon, 8 Oct 2012 08:11:31 +0000 (11:11 +0300)]
dnslookup: more informative error from getaddrinfo_a()
Marko Kreen [Mon, 8 Oct 2012 08:08:15 +0000 (11:08 +0300)]
config.txt: remove \ before *
Seems older asciidoc needed it but not any more.
Marko Kreen [Thu, 13 Sep 2012 05:47:39 +0000 (08:47 +0300)]
Include new antimake files.
William Grant [Wed, 12 Sep 2012 10:55:36 +0000 (20:55 +1000)]
Document the new DISABLE/ENABLE commands.
William Grant [Wed, 12 Sep 2012 10:38:22 +0000 (20:38 +1000)]
Add DISABLE/ENABLE to SHOW HELP.
Marko Kreen [Wed, 12 Sep 2012 10:37:57 +0000 (13:37 +0300)]
v1.5.3
William Grant [Wed, 12 Sep 2012 10:23:49 +0000 (20:23 +1000)]
Factor out the find-or-register DB logic.
William Grant [Wed, 12 Sep 2012 09:59:31 +0000 (19:59 +1000)]
Add DISABLE/ENABLE commands to prevent new connections.
DISABLE causes new connections to a particular database to be rejected
while existing ones continue. ENABLE allows new connections again.
Marko Kreen [Mon, 10 Sep 2012 10:07:43 +0000 (13:07 +0300)]
add_database: fail gracefully if too long db name
Truncating & adding can lead to fatal() later.
It was not an issue before, but with audodb (* in [databases] section)
the database name can some from network, thus allowing remote shutdown..
Marko Kreen [Wed, 18 Jul 2012 18:32:27 +0000 (21:32 +0300)]
Update NEWS
Marko Kreen [Wed, 18 Jul 2012 18:18:00 +0000 (21:18 +0300)]
Show invalid header in hex
Marko Kreen [Wed, 18 Jul 2012 18:16:46 +0000 (21:16 +0300)]
Refactor bin2hex function
Marko Kreen [Wed, 18 Jul 2012 18:11:30 +0000 (21:11 +0300)]
max_packet_size - new variable.
Helps to detect network or application problems.
Marko Kreen [Wed, 18 Jul 2012 18:06:54 +0000 (21:06 +0300)]
Refresh libusual
Marko Kreen [Sun, 8 Jul 2012 06:41:13 +0000 (09:41 +0300)]
console: allow empty string arguments, unify copy_arg
Now it's possible to disable server_reset_query from console.
Marko Kreen [Sat, 7 Jul 2012 17:13:00 +0000 (20:13 +0300)]
Refresh libusual to pick up Antimake fixes
Marko Kreen [Fri, 15 Jun 2012 07:43:23 +0000 (10:43 +0300)]
config.txt: server_idle_timeout does not care how full pool is.
Noticed-by: Mike Broers
Marko Kreen [Thu, 7 Jun 2012 09:30:00 +0000 (12:30 +0300)]
Makefile: correct is _LDADD instead _LIBS
Marko Kreen [Tue, 5 Jun 2012 14:43:06 +0000 (17:43 +0300)]
Refresh libusual
Marko Kreen [Thu, 31 May 2012 17:47:13 +0000 (20:47 +0300)]
config.txt: hint that all timeouts can be specified as floats
During discussion with Keyur Govande we found out that all timeouts
can be specified as float since 1.4, except reserve_pool_timeout,
which works since 1.5.2.
Add a hints to documentation about that.
Marko Kreen [Tue, 29 May 2012 08:05:16 +0000 (11:05 +0300)]
v1.5.2
Marko Kreen [Tue, 29 May 2012 20:11:10 +0000 (23:11 +0300)]
test.sh: force /tmp as unix socket dir
This allows to surive pgsql that defaults somewhere else.
Also change default path.
Marko Kreen [Tue, 29 May 2012 08:59:54 +0000 (11:59 +0300)]
faq: where should pgbouncer be installed?
Marko Kreen [Mon, 28 May 2012 13:38:59 +0000 (16:38 +0300)]
Proper fix for reserve_pool_timeout.
Marko Kreen [Mon, 28 May 2012 13:19:23 +0000 (16:19 +0300)]
faq: how to map client connection to server connections
Marko Kreen [Mon, 28 May 2012 10:22:02 +0000 (13:22 +0300)]
config.txt: fix invalid formattinc
Marko Kreen [Thu, 24 May 2012 17:16:56 +0000 (20:16 +0300)]
faq: add DNS RR to load-balancing question
Marko Kreen [Thu, 24 May 2012 16:37:56 +0000 (19:37 +0300)]
reserve_pool_timeout should be in seconds, not microseconds
It is mistakenly specified as CF_INT, instead of CF_USEC.
Noticed-By: Keyur Govande
Marko Kreen [Tue, 17 Apr 2012 13:05:42 +0000 (16:05 +0300)]
v1.5.1
Marko Kreen [Tue, 17 Apr 2012 13:03:11 +0000 (16:03 +0300)]
Refresh libusual
- safeio: ignore EINTR on close()
Marko Kreen [Tue, 17 Apr 2012 12:54:08 +0000 (15:54 +0300)]
Improve sample ini file
- Use full paths for log and pidfile
- comment out console users
- comment out sample databases
Marko Kreen [Wed, 28 Mar 2012 06:57:16 +0000 (09:57 +0300)]
config.txt: Describe MD5 "encryption"
Marko Kreen [Tue, 27 Mar 2012 21:09:57 +0000 (00:09 +0300)]
doc/makefile: fix doc pushing to web
Marko Kreen [Tue, 27 Mar 2012 21:01:13 +0000 (00:01 +0300)]
config.txt: Postgres does not use auth files anymore.
Clarify documentation on the matter and hint how to
generate the file automatically.
Marko Kreen [Wed, 14 Mar 2012 13:01:32 +0000 (15:01 +0200)]
Stop including html in source tarball, seems wrong.
Marko Kreen [Wed, 14 Mar 2012 12:51:01 +0000 (14:51 +0200)]
Fix find_modules filename
Marko Kreen [Wed, 14 Mar 2012 12:34:03 +0000 (14:34 +0200)]
v1.5.1rc1
Marko Kreen [Wed, 14 Mar 2012 12:32:55 +0000 (14:32 +0200)]
Refresh libusual
Marko Kreen [Wed, 14 Mar 2012 10:11:15 +0000 (12:11 +0200)]
If connect string changes, refresh welcome parameters.
This is mainly needed when new server is differenct version
of Postgres. Previously PgBouncer kept reporting old
version which confuses clients.
It would be even better to detect version change without
the connect string change and without reload, but that
will require quite complex logic. Lets use simple fix first.
Marko Kreen [Wed, 14 Mar 2012 10:10:44 +0000 (12:10 +0200)]
Add 'tags' target to makefile
Marko Kreen [Tue, 13 Mar 2012 10:04:15 +0000 (12:04 +0200)]
autodb: drop old connections on config change
We already do it for regular databases, but autodb
needs different approach.
Reported-by: Maxim Boguk
Marko Kreen [Sun, 26 Feb 2012 22:52:40 +0000 (00:52 +0200)]
Document stats_period
Marko Kreen [Fri, 10 Feb 2012 11:14:40 +0000 (13:14 +0200)]
Non-git-based dist files for libusual.
Need to move the spec into libusual proper.
Marko Kreen [Thu, 19 Jan 2012 11:26:57 +0000 (13:26 +0200)]
unix_socket_mode / _name
This mirrors similar parameters in Postgres config.
Marko Kreen [Thu, 19 Jan 2012 11:20:32 +0000 (13:20 +0200)]
doc: make manpages and html 'dist'
This stops cleaning them (thus pointless rebuilds)
and also includes in tarball.
Marko Kreen [Thu, 19 Jan 2012 11:20:14 +0000 (13:20 +0200)]
refresh libusual
Marko Kreen [Thu, 19 Jan 2012 09:58:36 +0000 (11:58 +0200)]
varcache: allow empty string for server-side variable.
Seems application_name is broken otherwise.
Reported-by: Tim Bunce
Marko Kreen [Thu, 19 Jan 2012 09:57:41 +0000 (11:57 +0200)]
configure: bump asciidoc req to >= 8.4
Seems older ones do not parse current docs anymore.
Marko Kreen [Thu, 5 Jan 2012 13:08:58 +0000 (15:08 +0200)]
v1.5
Marko Kreen [Thu, 5 Jan 2012 13:01:21 +0000 (15:01 +0200)]
makefile: add config.log to DISTCLEANFILES
Marko Kreen [Thu, 5 Jan 2012 13:01:14 +0000 (15:01 +0200)]
refresh libusual
Marko Kreen [Tue, 20 Dec 2011 22:18:47 +0000 (00:18 +0200)]
makefile: shortcuts for uploading
Marko Kreen [Tue, 20 Dec 2011 22:08:10 +0000 (00:08 +0200)]
Update news for 1.5rc1
Marko Kreen [Tue, 20 Dec 2011 22:02:01 +0000 (00:02 +0200)]
refresh libusual
Marko Kreen [Tue, 20 Dec 2011 21:46:45 +0000 (23:46 +0200)]
refresh libusual
Marko Kreen [Tue, 20 Dec 2011 19:54:31 +0000 (21:54 +0200)]
Refresh libusual
Marko Kreen [Tue, 20 Dec 2011 19:53:52 +0000 (21:53 +0200)]
doc: dont try to build manpages if no asciidoc
Marko Kreen [Tue, 20 Dec 2011 19:25:47 +0000 (21:25 +0200)]
Mention required gnu-make version
Marko Kreen [Tue, 20 Dec 2011 19:20:57 +0000 (21:20 +0200)]
system.h: use <usual/ctype.h> instead ctype directly.
Fixes problems with signed chars.
Marko Kreen [Tue, 20 Dec 2011 15:36:55 +0000 (17:36 +0200)]
refresh libusual
Marko Kreen [Tue, 20 Dec 2011 15:28:05 +0000 (17:28 +0200)]
deb: export options to make nostrip work
Marko Kreen [Tue, 20 Dec 2011 15:13:26 +0000 (17:13 +0200)]
make zip: shortcut to build -win32.zip
Marko Kreen [Tue, 20 Dec 2011 15:01:55 +0000 (17:01 +0200)]
Few build fixes
- drop fixman.py, not needed
- support srcdir != builddir
- make 'doc' proper subdir
Marko Kreen [Tue, 13 Dec 2011 14:08:57 +0000 (16:08 +0200)]
Makefile: recurse into 'doc'
Marko Kreen [Tue, 13 Dec 2011 14:08:30 +0000 (16:08 +0200)]
deb: override DEB_CONFIGURE_EXTRA_FLAGS for old cdbs
Marko Kreen [Tue, 13 Dec 2011 13:52:37 +0000 (15:52 +0200)]
refresh libusual
Marko Kreen [Tue, 13 Dec 2011 13:20:12 +0000 (15:20 +0200)]
Makefile cleanup
- add autoconf files to distclean
- find antimake even when unconfigured
- proper error message when unconfigured
- make deb shortcut - needs to be run in configured tree
Marko Kreen [Tue, 13 Dec 2011 13:09:55 +0000 (15:09 +0200)]
debian/: drop yada, use simple cdbs packaging
Marko Kreen [Mon, 12 Dec 2011 23:18:33 +0000 (01:18 +0200)]
authors: add Petr
Marko Kreen [Mon, 12 Dec 2011 23:18:15 +0000 (01:18 +0200)]
Include lib/ in .tgz