Re: Would it be OK if I put db file on a ext2 filesystem?

Поиск
Список
Период
Сортировка
От Alvaro Herrera
Тема Re: Would it be OK if I put db file on a ext2 filesystem?
Дата
Msg-id 20071212161308.GG7925@alvh.no-ip.org
обсуждение исходный текст
Ответ на Would it be OK if I put db file on a ext2 filesystem?  (Magicloud Wang <magicloud@pogolinux.com.cn>)
Ответы Re: Would it be OK if I put db file on a ext2 filesystem?
Список pgsql-general
Magicloud Wang wrote:
> Dear,
>     I think database has its own operation journal, and different journal
> filesystem does give different performance. So if I put database file on a
> non-journal filesystem, would it be safe? Does this like using a raw device?

Regular database files need metadata journalling (data=writeback mount
option for ext3).  This is quite faster than full-blown journalling
which is what you get with default ext3 mount options.  WAL files
(pg_xlog) do not need any kind of journalling, so you can save the
overhead and put them on an ext2 filesystem (or any other nonjournalled
filesystem).

--
Alvaro Herrera                          Developer, http://www.PostgreSQL.org/
Voy a acabar con todos los humanos / con los humanos yo acabaré
voy a acabar con todos / con todos los humanos acabaré (Bender)

В списке pgsql-general по дате отправления:

Предыдущее
От: "Pavel Stehule"
Дата:
Сообщение: Re: convert function
Следующее
От: "Scott Marlowe"
Дата:
Сообщение: Re: Would it be OK if I put db file on a ext2 filesystem?