Обсуждение: filesystem options for WAL

Поиск
Список
Период
Сортировка

filesystem options for WAL

От
"Jaime Casanova"
Дата:
Hi,

Here http://www.westnet.com/~gsmith/content/postgresql/TuningPGWAL.htm I read:
"""
Combining these two, an optimal fstab for the WAL might look like this:

/dev/hda2  /var ext3 defaults,writeback,noatime 1 2
"""
Is this info accurate?

I also read on other document from the "technical documentation" that
for partitions where you have the tables and indexes is better to have
journaling and for partitions for the WAL is better to not have
journalling...

i tought it has to be the other way (tables & indices without
journalling, WAL with journalling)

--
regards,
Jaime Casanova
Soporte y capacitación de PostgreSQL
Guayaquil - Ecuador
Cel. (593) 87171157

Re: filesystem options for WAL

От
Greg Smith
Дата:
On Sun, 6 Jul 2008, Jaime Casanova wrote:

> Here http://www.westnet.com/~gsmith/content/postgresql/TuningPGWAL.htm I read:
> """
> Combining these two, an optimal fstab for the WAL might look like this:
>
> /dev/hda2  /var ext3 defaults,writeback,noatime 1 2
> """
> Is this info accurate?

Nah, that guy doesn't know what he's talking about.  That article is
overdue for an overhaul.

> I also read on other document from the "technical documentation" that
> for partitions where you have the tables and indexes is better to have
> journaling and for partitions for the WAL is better to not have
> journalling...

The WAL is itself a sort of journal, and the way writes to it are done the
filesystem level journaling that ext3 provides doesn't buy you much beyond
additional overhead.  Check out

http://www.commandprompt.com/blogs/joshua_drake/2008/04/is_that_performance_i_smell_ext2_vs_ext3_on_50_spindles_testing_for_postgresql/

for an extensive comparison of different options here, where you can see
that using ext2 instead can be much more efficient.  The main downside of
ext2 is that you might get longer boot times from running fsck, but it
won't be any less reliable for database use though.

--
* Greg Smith gsmith@gregsmith.com http://www.gregsmith.com Baltimore, MD