]> granicus.if.org Git - postgresql/commit
Ensure that we retry rather than erroring out when send() or recv() return
authorTom Lane <tgl@sss.pgh.pa.us>
Sun, 16 Jul 2006 18:17:14 +0000 (18:17 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Sun, 16 Jul 2006 18:17:14 +0000 (18:17 +0000)
commite96373aae58f0e12a4c1845d5c10d94729a01b52
tree277534c18f20b509bf86ea54912ace6605d6cd5a
parenta420818d679a88a18cc206f6f9d353587840dbc3
Ensure that we retry rather than erroring out when send() or recv() return
EINTR; the stats code was failing to do this and so were a couple of places
in the postmaster.  The stats code assumed that recv() could not return EINTR
if a preceding select() showed the socket to be read-ready, but this is
demonstrably false with our Windows implementation of recv(), and it may
not be the case on all Unix variants either.  I think this explains the
intermittent stats regression test failures we've been seeing, as well
as reports of stats collector instability under high load on Windows.

Backpatch as far as 8.0.
src/backend/postmaster/pgstat.c
src/backend/postmaster/postmaster.c