Re: MVCC performance issue - Mailing list pgsql-performance

From Mladen Gogala
Subject Re: MVCC performance issue
Date
Msg-id 4CE07FB6.2000404@vmsinfo.com
Whole thread Raw
In response to Re: MVCC performance issue  (Marti Raudsepp <marti@juffo.org>)
List pgsql-performance
Marti Raudsepp wrote:
>
>
> Another advantage of Oracle's approach seems that they need much less
> tuple-level overhead. IMO the 23-byte tuple overhead is a much bigger
> drawback in Postgres than table fragmentation.
>
> Regards,
> Marti
>
>
Oracle, however, does have a problem with "ORA-1555 Snapshot too old",
precisely because of their implementation of MVCC. In other words, if
your query is running long and Oracle is not able to reconstruct the old
rows from the UNDO segments, you're out of luck and your query will die.
The greatest burden of the Postgres implementation is the fact that
there is no row id, so that the table header and the indexes need to be
updated much more frequently than is the case with Oracle.

--
Mladen Gogala
Sr. Oracle DBA
1500 Broadway
New York, NY 10036
(212) 329-5251
www.vmsinfo.com


pgsql-performance by date:

Previous
From: Robert Haas
Date:
Subject: Re: Why dose the planner select one bad scan plan.
Next
From: Artur Zając
Date:
Subject: Difference between explain analyze and real execution time