diff --git a/src/backend/postmaster/syslogger.c b/src/backend/postmaster/syslogger.c index 4fb9aacf6c24f1daa53097ddd803ad56f8c17601..48358c5b7325ff16416daac035463e8997c8dcd4 100644 --- a/src/backend/postmaster/syslogger.c +++ b/src/backend/postmaster/syslogger.c @@ -1058,6 +1058,15 @@ pipeThread(void *arg) bytes_in_logbuffer += bytesRead; process_pipe_input(logbuffer, &bytes_in_logbuffer); } + + /* + * If we've filled the current logfile, nudge the main thread to do a + * log rotation. + */ + if (Log_RotationSize > 0 && + ftell(syslogFile) >= Log_RotationSize * 1024L) + SetLatch(&sysLoggerLatch); + LeaveCriticalSection(&sysloggerSection); }