From: | "Brian Maguire" <bmaguire(at)vantage(dot)com> |
---|---|
To: | "Tatsuo Ishii" <t-ishii(at)sra(dot)co(dot)jp>, <pgsql-general(at)postgresql(dot)org> |
Subject: | Re: Pgpool questions |
Date: | 2005-04-25 14:51:17 |
Message-ID: | 4BAFBB6B9CC46F41B2AD7D9F4BBAF7850298C56E@vt-pe2550-001.vantage.vantage.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
Thanks.
Is it on your todo list to something like this...? It is the opposite
of "/* NO LOAD BALANCE */".
Make a "/* SLAVE */" type comment to force it to a slave? It would be
helpful in forcing a query to a reporting server if you know your what
your reporting queries are.
"Set weight_secondary to 0."
Did you mean Set weight_master to 0. Unfortunately this would not help
on a query by query basis, but the above would.
-----Original Message-----
From: Tatsuo Ishii [mailto:t-ishii(at)sra(dot)co(dot)jp]
Sent: Saturday, April 23, 2005 7:23 PM
To: Brian Maguire
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: [GENERAL] Pgpool questions
> I have a couple Pgpool questions regarding running pgpool as a load
balancer with Sony as the replicator.
>
>
>
> Is there anyway to load balance selects to more than 2 servers? ex. 1
master with 2 slaves? Run multiple instances?
It's on my TODO but will not be a trivial change.
> Is there any way to tell a select (ex. with a function) to go only the
master and not the slave?
Pgpool will send any query not starting with "SELECT" or "select" to
the master. So you can insert a white space or a comment, for example
"/* NO LOAD BALANCE */" at the beginning of the line to prevent the
query to be sent to the slave.
> Is there any way to tell a select query to only go to the slave?
Set weight_secondary to 0.
--
Tatsuo Ishii
From | Date | Subject | |
---|---|---|---|
Next Message | Ned Lilly | 2005-04-25 15:02:43 | OpenRPT (was Re: [ANNOUNCE] == PostgreSQL Weekly News - April 24 2005 ==) |
Previous Message | Tatsuo Ishii | 2005-04-25 14:47:08 | Re: Pgpool questions |