From: Tom Lane Date: Sun, 17 Jul 2011 19:05:44 +0000 (-0400) Subject: Further thoughts about temp_file_limit patch. X-Git-Tag: REL9_2_BETA1~1396 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9473bb96d0eb7ed73f1bf5269613e6266f64ad85;p=postgresql Further thoughts about temp_file_limit patch. Move FileClose's decrement of temporary_files_size up, so that it will be executed even if elog() throws an error. This is reasonable since if the unlink() fails, the fact the file is still there is not our fault, and we are going to forget about it anyhow. So we won't count it against temp_file_limit anymore. Update fileSize and temporary_files_size correctly in FileTruncate. We probably don't have any places that truncate temp files, but fd.c surely should not assume that. --- diff --git a/src/backend/storage/file/fd.c b/src/backend/storage/file/fd.c index 884d915127..95402794b4 100644 --- a/src/backend/storage/file/fd.c +++ b/src/backend/storage/file/fd.c @@ -1097,6 +1097,10 @@ FileClose(File file) */ vfdP->fdstate &= ~FD_TEMPORARY; + /* Subtract its size from current usage (do first in case of error) */ + temporary_files_size -= vfdP->fileSize; + vfdP->fileSize = 0; + if (log_temp_files >= 0) { struct stat filestats; @@ -1133,10 +1137,6 @@ FileClose(File file) if (unlink(vfdP->fileName)) elog(LOG, "could not unlink file \"%s\": %m", vfdP->fileName); } - - /* Subtract its size from current usage */ - temporary_files_size -= vfdP->fileSize; - vfdP->fileSize = 0; } /* Unregister it from the resource owner */ @@ -1447,6 +1447,15 @@ FileTruncate(File file, off_t offset) return returnCode; returnCode = ftruncate(VfdCache[file].fd, offset); + + if (returnCode == 0 && VfdCache[file].fileSize > offset) + { + /* adjust our state for truncation of a temp file */ + Assert(VfdCache[file].fdstate & FD_TEMPORARY); + temporary_files_size -= VfdCache[file].fileSize - offset; + VfdCache[file].fileSize = offset; + } + return returnCode; }