Re: Connection.setReadOnly()

Поиск
Список
Период
Сортировка
От Craig Ringer
Тема Re: Connection.setReadOnly()
Дата
Msg-id 4B225922.1090705@postnewspapers.com.au
обсуждение исходный текст
Ответ на Re: Connection.setReadOnly()  (Oliver Jowett <oliver@opencloud.com>)
Ответы Re: Connection.setReadOnly()  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-jdbc
Oliver Jowett wrote:
> John R Pierce wrote:
>> Oliver Jowett wrote:
>
>>> If your oracle developers don't want manually committed transactions,
>>> perhaps they should.. turn on autocommit.
>>>
>> otherwise, an app thats doing purely read queries has to periodically
>> issue a Commit().   I have to say, doing Commit() on read operations is
>> NOT at all intuitive.
>
> Maybe not, but it's a fairly well known quirk of Postgresql that
> long-running transactions don't work so well; the JDBC driver is no
> different to any other interface in this regard.

Does Pg have issues with long-running read-only transactions in
read-committed mode? Or are they an exception to the usual "avoid
long-running mostly-idle transactions" guideline?

Pg doesn't have to worry about retaining old rows in vacuum with such a
statement, because each new statement creates a new snapshot, so if it's
idle it effectively has _no_ snapshot and vacuum is free to clear old
rows. It doesn't need to keep track of anything to roll back, since the
transaction is read only.

So ... for READ COMMITTED, READ ONLY transactions, _are_ there any
VACUUM issues?

--
Craig Ringer

В списке pgsql-jdbc по дате отправления:

Предыдущее
От: Greg Stark
Дата:
Сообщение: Re: Connection.setReadOnly()
Следующее
От: "Albe Laurenz"
Дата:
Сообщение: Re: Connection.setReadOnly()