Re: BUG #16373: Behavior of Temporary table creation - Mailing list pgsql-bugs

From Tom Lane
Subject Re: BUG #16373: Behavior of Temporary table creation
Date
Msg-id 18686.1587146736@sss.pgh.pa.us
Whole thread Raw
In response to Re: BUG #16373: Behavior of Temporary table creation  (Hritik Gupta <hritik122@gmail.com>)
Responses Re: BUG #16373: Behavior of Temporary table creation
List pgsql-bugs
Hritik Gupta <hritik122@gmail.com> writes:
> Q=> So does that mean postgres does not have *only* “in memory” temporary
> tables in any case?
> At best, what it is going to do is to cache the temp. table pages in the
> temp buffer, but the blocks are still there on the storage, its just cached
> in memory for the time being, no matter how small the temporary table is.
> is it correct?

No.  We *reserve space* on disk, typically by writing zeroes.  But actual
data would only get spilled there if we run out of temp buffer space.
It's entirely possible for a temp table's data to stay in memory for
its whole existence.

For regular tables, there are effects such as checkpoints that would
cause data to get written out from shared buffers periodically, even
if there's plenty of buffer space.  That doesn't apply to temp tables.

The reason for reserving space is to try to avoid having to deal with
ENOSPC failures during buffer spills.  On newer filesystems that
can happen anyway, of course, but it's still useful on non-COW
filesystems.

            regards, tom lane



pgsql-bugs by date:

Previous
From: Hritik Gupta
Date:
Subject: Re: BUG #16373: Behavior of Temporary table creation
Next
From: PG Bug reporting form
Date:
Subject: BUG #16375: Error in pgAdmin 4.20 when trying to script a function to Query Tool