Re: PostgreSQL clustering VS MySQL clustering

From: "Iain" <iain(at)mst(dot)co(dot)jp>
To: "Jim C(dot) Nasby" <decibel(at)decibel(dot)org>, "Bruno Almeida do Lago" <teolupus(at)gmail(dot)com>
Cc: "'Mitch Pirtle'" <mitch(dot)pirtle(at)gmail(dot)com>, <pgsql-performance(at)postgresql(dot)org>
Subject: Re: PostgreSQL clustering VS MySQL clustering
Date: 2005-01-21 02:14:59
Message-ID: 01a001c4ff5f$05688b50$7201a8c0@mst1x5r347kymb
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

Oracle's RAC is good, but I think it's best to view it as a step in the high
availability direction rather than a performance enhancer. While it can help
your application scale up, that depends on the usage pattern. Also it's not
100% transparent to the application for example you can't depend on a
sequence numbers being allocated uniquely as there can be delays propagating
them to all nodes. So in clusters where insert rates are high this means you
should explicitly check for unique key violations and try again. Dealing
with propagation delays comes with the clustering technology I guess.
Nonetheless, I would love to see this kind of functionality in postgres.

Regards
Iain

----- Original Message -----
From: "Jim C. Nasby" <decibel(at)decibel(dot)org>
To: "Bruno Almeida do Lago" <teolupus(at)gmail(dot)com>
Cc: "'Mitch Pirtle'" <mitch(dot)pirtle(at)gmail(dot)com>;
<pgsql-performance(at)postgresql(dot)org>
Sent: Friday, January 21, 2005 10:30 AM
Subject: Re: [PERFORM] PostgreSQL clustering VS MySQL clustering

> On Thu, Jan 20, 2005 at 10:40:02PM -0200, Bruno Almeida do Lago wrote:
>>
>> I was thinking the same! I'd like to know how other databases such as
>> Oracle
>> do it.
>>
> In a nutshell, in a clustered environment (which iirc in oracle means
> shared disks), they use a set of files for locking and consistency
> across machines. So you better have fast access to the drive array, and
> the array better have caching of some kind.
> --
> Jim C. Nasby, Database Consultant decibel(at)decibel(dot)org
> Give your computer some brain candy! www.distributed.net Team #1828
>
> Windows: "Where do you want to go today?"
> Linux: "Where do you want to go tomorrow?"
> FreeBSD: "Are you guys coming, or what?"
>
> ---------------------------(end of broadcast)---------------------------
> TIP 3: if posting/reading through Usenet, please send an appropriate
> subscribe-nomail command to majordomo(at)postgresql(dot)org so that your
> message can get through to the mailing list cleanly

In response to

Browse pgsql-performance by date

  From Date Subject
Next Message Joshua D. Drake 2005-01-21 03:16:15 Re: PostgreSQL clustering VS MySQL clustering
Previous Message Tatsuo Ishii 2005-01-21 01:40:07 Re: PostgreSQL clustering VS MySQL clustering