RE: [HACKERS] redolog - for discussion

From: "Hiroshi Inoue" <Inoue(at)tpf(dot)co(dot)jp>
To: "Vadim Mikheev" <vadim(at)krs(dot)ru>, "Jan Wieck" <jwieck(at)debis(dot)com>
Cc: <pgsql-hackers(at)postgreSQL(dot)org>
Subject: RE: [HACKERS] redolog - for discussion
Date: 1998-12-18 00:56:49
Message-ID: 000801be2a21$4aff8660$2801007e@cadzone.tpf.co.jp
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers


> -----Original Message-----
> From: owner-pgsql-hackers(at)postgreSQL(dot)org
> [mailto:owner-pgsql-hackers(at)postgreSQL(dot)org]On Behalf Of Vadim Mikheev
> Sent: Thursday, December 17, 1998 5:03 PM
> To: Jan Wieck
> Cc: pgsql-hackers(at)postgreSQL(dot)org
> Subject: Re: [HACKERS] redolog - for discussion
>
>
> Jan Wieck wrote:
> >
> > >
> > > I foresee problems with using _commands_ logging for
> > > recovery/replication -:((
> > >
> ...
> >
> > Yepp, the order in which commands begun is absolutely not of
> > interest. Locking could already delay the execution of one
> > command until another one started later has finished and
> > released the lock. It's a classic race condition.
> >
> > Thus, my plan was to log the queries just before the call to
> > CommitTransactionCommand() in tcop. This has the advantage,
>
> Oh, I see - you right!
>

If image level logging is used,probably it's OK.
But if query(command) level logging is used ???

If the isolation level of all transactions is SERIARIZABLE,it's probably
OK because they are serializable order by the time when they are
committed.
But if there are transactions whose isolation level is READ COMMITTED,
they are not serializable.
So commands must be issued according to the original order when they
were issued ?

If the same mechanism of locking is used at recovery time,the order
of locks caused by commands(rerun) will be same ?????
I'm not confident.

Thanks.

Hiroshi inoue
Inoue(at)tpf(dot)co(dot)jp

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Keith Parks 1998-12-18 01:16:41 Re: [HACKERS] CURRENT: crash in select_view regression test...
Previous Message Jan Wieck 1998-12-17 22:44:42 Re: [HACKERS] CVS log for a specific tag