Re: Dead Space Map version 3 (simplified)

From: ITAGAKI Takahiro <itagaki(dot)takahiro(at)oss(dot)ntt(dot)co(dot)jp>
To: pgsql-hackers(at)postgresql(dot)org, Heikki Linnakangas <heikki(at)enterprisedb(dot)com>
Subject: Re: Dead Space Map version 3 (simplified)
Date: 2007-04-23 03:31:32
Message-ID: 20070423104946.6695.ITAGAKI.TAKAHIRO@oss.ntt.co.jp
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers pgsql-patches

Heikki Linnakangas <heikki(at)enterprisedb(dot)com> wrote:

> We discussed it a long time ago already, but I really wished the DSM
> wouldn't need a fixed size shared memory area. It's one more thing the
> DBA needs to tune manually. It also means we need to have an algorithm
> for deciding what to keep in the DSM and what to leave out.

I'm planning some kinds of flexible memory management for 8.4, but
I can't finish it by the deadline of 8.3. I think we need to brush up
memory management in many places; it is required not only by DSM but
also by FSM and the modules using SLRU.

> And I don't
> see a good way to extend the current approach to implement the
> index-only-scans that we've been talking about, and the same goes for
> recovery. :(

Yes, we need a strictly accurate DSM to achieve index-only-scans.
I went for it at the beginning, but the index-only-scans is not done
at 8.3. That's why I gave up it -- an accurate DSM merely introduces
an overhead for now.

> The way you update the DSM is quite interesting. When a page is dirtied,
> the BM_DSM_DIRTY flag is set in the buffer descriptor. The corresponding
> bit in the DSM is set lazily in FlushBuffer whenever BM_DSM_DIRTY is
> set. That's a clever way to avoid contention on updates. But does it
> work for tables that have a small hot part that's updated very
> frequently?

Hm, I provided the min_dsm_target parameter, that means the minimum size
of tables of which dead space is tracked. But it is useless in such cases.
I intended to make it for a small hot *table*, but I forgot around a small
hot *part of a large table*.

> A straightforward fix would be
> to scan the buffer cache for buffers marked with BM_DSM_DIRTY to update
> the DSM before starting the vacuum scan.

It requires sequentially searches of the buffer pool, but it would pay.

> It might not be a problem in practice, but it bothers me that the DSM
> isn't 100% accurate. You end up having a page with dead tuples on it
> marked as non-dirty in the DSM at least when a page is vacuumed but
> there's some RECENTLY_DEAD tuples on it that become dead later on. There
> might be other scenarios as well.

Quite so. RECENTLY_DEAD tuples should be considered as dead tuples in DSM.
We might apply the same to DELETE_IN_PROGRESS tuples if we assume commits
occurs more frequectly than rollbacks.

Additonally, when HEAP_XMIN_INVALID or HEAP_XMAX_COMMITTED flags are added,
we might need to re-add BM_DSM_DIRTY for the page. It occurs when pages
with inserted tuples are written before the transaction is done, and then
it rollbacks.

> If I'm reading the code correctly, DSM makes no attempt to keep the
> chunks ordered by block number. If that's the case, vacuum needs to be
> modified because it currently relies on the fact that blocks are scanned
> and the dead tuple list is therefore populated in order.

Vacuum still scans heaps in block order and picks up corresponding DSM
chunks. Therefore the order of DSM chunks is not important. This method
is not efficient for huge tables with small deadspaces, but I think it
doesn't become a serious issue.

Regards,
---
ITAGAKI Takahiro
NTT Open Source Software Center

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Hiroki Kataoka 2007-04-23 04:41:21 Re: Dead Space Map version 3 (simplified)
Previous Message Tom Lane 2007-04-23 02:53:28 Re: BUG #3244: problem with PREPARE

Browse pgsql-patches by date

  From Date Subject
Next Message Hiroki Kataoka 2007-04-23 04:41:21 Re: Dead Space Map version 3 (simplified)
Previous Message Koichi Suzuki 2007-04-23 00:17:21 Re: [HACKERS] Full page writes improvement, code update