Re: Large databases, performance

From: "Michael Paesold" <mpaesold(at)gmx(dot)at>
To: <pgsql-performance(at)postgresql(dot)org>
Subject: Re: Large databases, performance
Date: 2002-10-04 16:38:21
Message-ID: 01c601c26bc4$73d5f900$4201a8c0@beeblebrox
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general pgsql-hackers pgsql-performance pgsql-sql

Andrew Sullivan <andrew(at)libertyrms(dot)info> wrote:

> On Thu, Oct 03, 2002 at 06:51:05PM +0200, Hans-J?rgen Sch?nig wrote:
>
> > In the case of concurrent transactions MySQL does not do as well due to
> > very bad locking behavious. PostgreSQL is far better because it does row
> > level locking instead of table locking.
>
> It is my understanding that MySQL no longer does this on InnoDB
> tables. Whether various bag-on-the-side table types are a good thing
> I will leave to others; but there's no reason to go 'round making
> claims about old versions of MySQL any more than there is a reason to
> continue to talk about PostgreSQL not being crash safe. MySQL has
> moved along nearly as quickly as PostgreSQL.

Locking and transactions is not fine in MySQL (with InnoDB) though. I tried
to do selects on a table I was concurrently inserting to. In a single thread
I was constantly inserting 1000 rows per transaction. While inserting I did
some random selects on the same table. It often happend that the insert
transactions were aborted due to dead lock problems. There I see the problem
with locking reads.
I like PostgreSQL's MVCC!

Regards,
Michael Paesold

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Tom Lane 2002-10-04 16:44:48 Re: pg_restore issue..
Previous Message Bt 2002-10-04 16:35:00 table linking problem

Browse pgsql-hackers by date

  From Date Subject
Next Message Oleg Bartunov 2002-10-04 16:40:01 any experience with IA-64
Previous Message scott.marlowe 2002-10-04 16:35:38 Re: Threaded Sorting

Browse pgsql-performance by date

  From Date Subject
Next Message Andrew Sullivan 2002-10-04 16:44:03 Re: Comparitive UPDATE speed
Previous Message Hans-Jürgen Schönig 2002-10-04 16:30:47 Re: [HACKERS] Large databases, performance

Browse pgsql-sql by date

  From Date Subject
Next Message David Blood 2002-10-04 16:46:57 Pinning a table into memory
Previous Message Hans-Jürgen Schönig 2002-10-04 16:30:47 Re: [HACKERS] Large databases, performance