Hot-standby and canceled queries - Mailing list pgsql-admin

From David F. Skoll
Subject Hot-standby and canceled queries
Date
Msg-id 20130424074238.2aa7f764@shishi.roaringpenguin.com
Whole thread Raw
Responses Re: Hot-standby and canceled queries  (Simon Riggs <simon@2ndQuadrant.com>)
List pgsql-admin
Hi,

I ran a query on a hot-standby (PostgreSQL 9.1) and it was canceled as
per the documentation about vacuum cleanups on the master.

Second time testing, I started a transaction on the master (with
BEGIN) but my query on the hot-standby was still canceled.

Is that because a transaction doesn't "really" begin with BEGIN, but only
after the first real statement after the BEGIN?  Is it sufficient to
use:   BEGIN; SELECT ... ; to start a transaction on the master, or
do I need to use UPDATE or INSERT to ensure that a vacuum cleanup isn't
applied until the transaction is finished?

Or am I totally out of luck?  The documentation says: "PostgreSQL
allows cleanup of old row versions when there are no transactions that
need to see them to ensure correct visibility of data according to
MVCC rules."  So does that mean I can still run into trouble even with
an active transaction on the master?

I don't really want to set max_standby_streaming_delay very high, but that
will be the action of last resort.

Regards,

David.


pgsql-admin by date:

Previous
From: Paul Hinze
Date:
Subject: Simultaneous index creates on different schemas cause deadlock?
Next
From: Simon Riggs
Date:
Subject: Re: Hot-standby and canceled queries