Re: Sending a select to multiple servers.

From: Ligesh <gxlists(at)gmail(dot)com>
To: Frank Wiles <frank(at)wiles(dot)org>
Cc: pgsql-performance(at)postgresql(dot)org
Subject: Re: Sending a select to multiple servers.
Date: 2005-08-26 22:51:23
Message-ID: 20050826225123.GB24476@lxlabs.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

On Fri, Aug 26, 2005 at 11:04:59AM -0500, Frank Wiles wrote:
> On Fri, 26 Aug 2005 20:54:09 +0530
> Ligesh <gxlists(at)gmail(dot)com> wrote:

> Mostly because every situation is different, you may have
> 10 servers and need 10 rows of results, others may need something
> entirely different.
>

No. I have say 'm' number of servers, and I need 'n' rows. To get the results, you need to run the query against all the 'm' servers, which will return 'm x n' results, then you have to re-sort it and drop the 'm x n - n' rows and return only the 'n'. So this is like retrieving the 'n' rows amongst ALL the servers, that satisfy your search criteria.

Once you retrieve the data, you will know which server each row belongs to, and you can do the writes yourself at the higher level.

Thanks.

--
:: Ligesh :: http://ligesh.com

In response to

Browse pgsql-performance by date

  From Date Subject
Next Message asif ali 2005-08-26 22:52:24 Re: Weird performance drop after VACUUM
Previous Message Ligesh 2005-08-26 22:45:40 Re: Sending a select to multiple servers.