Re: Create and drop temp table in 8.3.4 - Mailing list pgsql-performance

From Kevin Grittner
Subject Re: Create and drop temp table in 8.3.4
Date
Msg-id 49131226.EE98.0025.0@wicourts.gov
Whole thread Raw
In response to Re: Create and drop temp table in 8.3.4  ("Scott Carey" <scott@richrelevance.com>)
List pgsql-performance
>>> "Scott Carey" <scott@richrelevance.com> wrote:
> Note that Write Barriers can be very important for data integrity
when power
> loss or hardware failure are a concern.  Only disable them if you
know the
> consequences are mitigated by other factors (such as a BBU + db using
the
> WAL log with sync writes), or if you accept the additional risk to
data
> loss.

For those using xfs, this link may be useful:

http://oss.sgi.com/projects/xfs/faq.html#wcache

> On Temp Tables:
> I am a bit ignorant on the temp table relationship to file creation
-- it
> makes no sense to me at all that a file would even be created for a
temp
> table unless it spills out of RAM or is committed.  Inside of a
transaction,
> shouldn't they be purely in-memory if there is space?  Is there any
way to
> prevent the file creation?  This seems like a total waste of time for
many
> temp table use cases, and explains why they were so slow in some
exploratory
> testing we did a few months ago.

As I learned today, creating a temporary table in PostgreSQL can
easily create four files and do dozens of updates to system tables;
that's all before you start actually inserting any data into the
temporary table.

-Kevin

pgsql-performance by date:

Previous
From: "Scott Carey"
Date:
Subject: Re: Create and drop temp table in 8.3.4
Next
From: "Scott Marlowe"
Date:
Subject: Re: Create and drop temp table in 8.3.4