Re: Some ideas about Vacuum

Поиск
Список
Период
Сортировка
От Alvaro Herrera
Тема Re: Some ideas about Vacuum
Дата
Msg-id 20080116135633.GE5106@alvh.no-ip.org
обсуждение исходный текст
Ответ на Re: Some ideas about Vacuum  ("Heikki Linnakangas" <heikki@enterprisedb.com>)
Ответы Re: Some ideas about Vacuum  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-hackers
Heikki Linnakangas escribió:

> Another issue is that reading WAL is inherently not very scalable. There's 
> only one WAL for the whole cluster, and it needs to be read sequentially, 
> so it can easily become a bottleneck on large systems.

I have wondered why do we do it this way.  Is there a problem with
having one WAL per database, and another for general operations?  This
last WAL would have changes to shared tables, as well as global stuff
like "create database" or "create tablespace".

Of course, it means a lot more files, and a PITR setup is a bit more
complex.

One obvious problem is that it is no longer true that you have a "no
seek" disk head.  But is there much use of that, these days?  People
have either a big RAID on which the WAL resides along all data; or, on
low-cost systems, the whole thing is in a single disk or a small RAID.

-- 
Alvaro Herrera                                http://www.CommandPrompt.com/
The PostgreSQL Company - Command Prompt, Inc.


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

Предыдущее
От: "Gokulakannan Somasundaram"
Дата:
Сообщение: Re: Some ideas about Vacuum
Следующее
От: "Gokulakannan Somasundaram"
Дата:
Сообщение: Thick indexes - a look at count(1) query