Creating index on different tablespace and its temp files

From: Marcin Mirosław <marcin(at)mejor(dot)pl>
To: "pgsql-novice(at)postgresql(dot)org" <pgsql-novice(at)postgresql(dot)org>
Subject: Creating index on different tablespace and its temp files
Date: 2010-10-11 07:47:31
Message-ID: 4CB2C113.3060700@mejor.pl
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

Hello!
I've got two additional tablespaces, let's call them tb_1 and tb_2.
Default tablespace for databse is tb_1, and all objects inside the one
are in tablespace tb_1.
I've start to create index with tablespace tb_2:
'
CREATE INDEX "idx.XX"
ON tableX (flow_start ASC NULLS FIRST)
WITH (FILLFACTOR=100)
TABLESPACE tb_1;
'
and i noticed that temporary files for new index are creating in tb_1
not tb_2. Let's imagine that tb_2 could be on diffrent hdd, creating
files in tb_2 should be faster because:
- there would bo no need to copy all index (after succesfull creating)
from tb_1 to tb_2
- reading data from disk is faster than reading and writting to the same hdd

I'm wondering what was the reasons to make "create index tablespace ..."
working in this way.
Thanks for reply.
[postgresql-9.0.1]

Regards,
Marcin

Responses

Browse pgsql-novice by date

  From Date Subject
Next Message Krzysztof Hoffmann 2010-10-11 07:47:54 Re: UPGRADE TO V9
Previous Message Solaimurugan V. 2010-10-11 07:29:32 Range of IP address specification in pg_hba.conf