]> granicus.if.org Git - postgresql/commitdiff
Further thoughts about temp_file_limit patch.
authorTom Lane <tgl@sss.pgh.pa.us>
Sun, 17 Jul 2011 19:05:44 +0000 (15:05 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Sun, 17 Jul 2011 19:05:44 +0000 (15:05 -0400)
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.

src/backend/storage/file/fd.c

index 884d9151278ab2e3f80b4e5d9f0a114d3ba59a12..95402794b47d5262881d793af2eb482eb2bf6cf7 100644 (file)
@@ -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;
 }