Re: Load sharing question

From: Curt Sampson <cjs(at)cynic(dot)net>
To: Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us>
Cc: Andrew Sullivan <andrew(at)libertyrms(dot)info>, <pgsql-general(at)postgresql(dot)org>
Subject: Re: Load sharing question
Date: 2002-09-10 03:07:17
Message-ID: Pine.NEB.4.44.0209101204430.13186-100000@angelic.cynic.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Mon, 9 Sep 2002, Bruce Momjian wrote:

> OK, I didn't go into detail, but the issue is test-and-set assembler
> instructions we use for light-weight locking. You can't tell me that
> actually works on a cluster, can you?

You bet. But DU clustering (derived from VMS clustering) is one of the
few "pretty much transaparent" clustering systems in the world. It's
very, very cool stuff, IMHO.

However, even with a very, very fast bus between the systems, that's not
to say you're going to like the memory latency when you've got to drag a
shared memory block off another machine on to yours. :-)

Generally, one would want to modify one's program to use locking
mechanisms more suitable for a cluster, and distribute the load more
suitably, as well.

cjs
--
Curt Sampson <cjs(at)cynic(dot)net> +81 90 7737 2974 http://www.netbsd.org
Don't you know, in this new Dark Age, we're all light. --XTC

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Jong-won Choi 2002-09-10 04:06:09 nextval result type difference between 7.1.3 and 7.2.1
Previous Message Bruce Momjian 2002-09-10 03:03:28 Re: Load sharing question