]> granicus.if.org Git - postgresql/commit
What I have done for libpgtcl:
authorBruce Momjian <bruce@momjian.us>
Sat, 17 Aug 2002 12:19:31 +0000 (12:19 +0000)
committerBruce Momjian <bruce@momjian.us>
Sat, 17 Aug 2002 12:19:31 +0000 (12:19 +0000)
commitb7214a877cc1d0fc181f207ec332ca1b9dd90dcd
tree4ab52d49f0d994744e9715c75bcf54269701b378
parentb813554dbdc5569ed9e22a2727707eff38e01964
What I have done for libpgtcl:
Everytime if I do PQconsumeInput (when the backend channel gets
readable) I check for the return value. (0 == error) and generate a
notification manually, e.g. fixed string connection_closed) and pass it to the
TCL event queue. The only other thing I had to do is to comment out removing
all pending events in PgStopNotifyEventSource whenever the connection was
unexpectedly closed (so the manually generated event will not be deleted).

A broken backend connection triggers a notify event to the client (fixed
notification string "connection_closed") so proper action can be taken to switch
to another database server etc. Remember that this is event driven. If you have
applications, that have idle database connections most of the time, you'll get
immediate feedback of a dying server. Upon connection to the server issue a
pg_notify for notify event "connection_closed" and whenever the backend crashes
(which it does do in very very rare cases) you get an event driven recovery. (of
course the Tcl-Event loop has to be processed). Issuing a notification
"connection_closed" on a still working database could be used for switching to
another db-server (which I've actually impelemented right now).

Gerhard Hintermayer
src/interfaces/libpgtcl/pgtclCmds.c
src/interfaces/libpgtcl/pgtclId.c
src/interfaces/libpgtcl/pgtclId.h