Re: 2 computers 1hd 2 postgres daemons. Is it possible?

From: "Tony Simopoulos" <karkalis(at)earthling(dot)net>
To: "Clark, Joel" <jclark(at)lendingtree(dot)com>
Cc: <pgsql-interfaces(at)postgresql(dot)org>
Subject: Re: 2 computers 1hd 2 postgres daemons. Is it possible?
Date: 2000-10-16 21:42:33
Message-ID: 00f301c037b9$fe6938c0$0382a8c0@metavera.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-interfaces

> Through an NFS mount maybe?
without a "distributed lock manager" sharing cannot be done efficiently. NFS creates problems both desired features of this set-up.

1) High Availability
if the computer that is serving the NFS mount goes down, any other machine using the "share" goes down as well -- i.e. single-point
of failure

2) Load Balancing
NFS is extremely expensive. all that would be balanced is the database logic; in place sorting, connection overheads, etc.
expensive reads and writes will all hit the NFS mounting server -- i.e. single-threading every query to the disk i/o of one machine.

tonys.

>
> -----Original Message-----
> From: Tony Simopoulos [mailto:karkalis(at)earthling(dot)net]
> Sent: Monday, October 16, 2000 3:03 PM
> To: Oscar Serrano
> Cc: pgsql-interfaces(at)postgresql(dot)org
> Subject: Re: [INTERFACES] 2 computers 1hd 2 postgres daemons. Is it
> possible?
>
>
> a redundant, replicated, or parallel system (choose whichever adjective
> befits your desires) is being developed. check out
> http://www.erserver.com/.
>
> sharing a single disk is an O/S & hardware problem. what is your intended
> platform?
>
> good luck,
>
> tonys.
>
> ----- Original Message -----
> From: Oscar Serrano <oserra(at)fondos(dot)net>
> To: Postgres interfaces <pgsql-interfaces(at)postgresql(dot)org>
> Sent: Monday, October 16, 2000 2:15 PM
> Subject: [INTERFACES] 2 computers 1hd 2 postgres daemons. Is it possible?
>
>
> > Hi men :-)
> > Just one question for those of you who have spent many time with postgres.
> > I want to create a load balancing and High Availability system with two
> > servers.
> > This two server have a common hard disk: A RAID 5 server connected to them
> > by the LAN.
> > I have a hardware machine (WSD+ from RADWARE) that manages the load
> > balancing.
> > I want to have, two servers, and two postgres installations, one in each
> > server, but with a common PGDATA directory in the RAID.
> > So, if one of the servers crashes, people can still get the information
> from
> > the other server.
> > Esentially, what I want is, two postgres (one in each machine) with a
> shared
> > PGDATA directory, and that both postgres can access and do Inserts in the
> > tables, and when one postgres does an insert, the second sees what the
> first
> > has inserted.
> >
> > Thanks.
> >
> >
> >
>

In response to

Browse pgsql-interfaces by date

  From Date Subject
Next Message Clark, Joel 2000-10-16 22:11:27 RE: 2 computers 1hd 2 postgres daemons. Is it possib le?
Previous Message Clark, Joel 2000-10-16 21:10:58 RE: Windows application deployment