Re: Probable faq: need some benchmarks of pgsql vr.s mysql

From: Josh Berkus <josh(at)agliodbs(dot)com>
To: pgsql-advocacy(at)postgresql(dot)org
Subject: Re: Probable faq: need some benchmarks of pgsql vr.s mysql
Date: 2010-11-08 18:02:01
Message-ID: 4CD83B19.1070806@agliodbs.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-advocacy


> It isn't that simple as I described earlier in this thread. InnoDB has
> the insert buffer:
> http://www.google.com/search?hl=en&q=insert+buffer+innodb
>
> InnoDB can do a disk seek for each PK/unique index on a table during
> an insert. It does not do disk seeks for each secondary index.

How does InnoDB make sure that sessions see the buffered inserts if they
should transactionally be visible?

Postgres doesn't have a concept of "primary" vs. "secondary" indexes,
since unlike InnoDB, table rows are not btree-ordered on disk. This
means that, for example, it takes a much larger table before we hit the
"won't fit in memory" limit where the indexes become expensive to
update. It also makes insert buffering much less valuable, since when a
table gets busy we can just start tacking stuff onto the end.

Not that I wouldn't love to have someone working on "fractal indexes" in
Postgres. Maybe I need to find a Postgres-based business model for
Tokutek. ;-)

--
-- Josh Berkus
PostgreSQL Experts Inc.
http://www.pgexperts.com

In response to

Responses

Browse pgsql-advocacy by date

  From Date Subject
Next Message Peter Eisentraut 2010-11-08 18:47:44 Re: Postgres References
Previous Message Martin Farach-Colton 2010-11-08 16:23:18 Re: Probable faq: need some benchmarks of pgsql vr.s mysql