Re: Re: We have got a serious problem with pg_clog/WAL synchronization

Поиск
Список
Период
Сортировка
От Kenneth Marshall
Тема Re: Re: We have got a serious problem with pg_clog/WAL synchronization
Дата
Msg-id 20040812170336.GA11862@it.is.rice.edu
обсуждение исходный текст
Ответ на Re: Re: We have got a serious problem with pg_clog/WAL synchronization  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-hackers
On Thu, Aug 12, 2004 at 09:58:56AM -0400, Tom Lane wrote:
> Kenneth Marshall <ktm@is.rice.edu> writes:
> > Would it be possible to use a latch + version number in
> > this case to minimize this problem by allowing all but the checkpoint to
> > perform a read-only action on the latch?
> 
> How would a read-only action work to block out the checkpoint?
> 
> More generally, though, this lock is hardly the one I'd be most
> concerned about in an SMP situation.  It's only taken once per
> transaction, while there are others that may be taken many times.
> (At least two of these, the WALInsertLock and the lock on shared
> pg_clog, will need to be taken again in the process of recording
> transaction commit.)
> 
> What I'd most like to find is a way to reduce contention for the
> BufMgrLock --- there are at least some behavioral patterns in which
> that is demonstrably a dominant cost.  See past discussions in the
> archives ("context swap storm" should find you some recent threads).
> 
>             regards, tom lane
> 

The latch+version number is use by the checkpoint process. The
other processes can do a read of the latch to determine if it has
been set. This does not cause a cache invalidation hit. If the
latch is set, the competing processes read until it has been
cleared and the version updated. This makes the general case of
no checkpoint not incur a write and the consequent cache-line
invalidation and reload by all processors on an SMP system.

Ken


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

Предыдущее
От: Kenneth Marshall
Дата:
Сообщение: Re: Re: We have got a serious problem with pg_clog/WAL synchronization
Следующее
От: henryyipca@yahoo.ca (Henry)
Дата:
Сообщение: Referencing OLD/NEW Rows on Trigger Definition