Re: BUG: endless lseek(.., SEEK_END) from select queries on x64 builds

Поиск
Список
Период
Сортировка
Искать
От
Heikki Linnakangas
Тема
Re: BUG: endless lseek(.., SEEK_END) from select queries on x64 builds
Дата
Msg-id
5127741D.6090907@vmware.com
Ответ на
Список
Дерево обсуждения
BUG: endless lseek(.., SEEK_END) from select queries on x64 builds Markus Schulz <msc@antzsystem.de>
Re: BUG: endless lseek(.., SEEK_END) from select queries on x64 builds Stephen Frost <sfrost@snowman.net>
Re: BUG: endless lseek(.., SEEK_END) from select queries on x64 builds Heikki Linnakangas <hlinnakangas@vmware.com>
Re: BUG: endless lseek(.., SEEK_END) from select queries on x64 builds Markus Schulz <msc@antzsystem.de>
Re: BUG: endless lseek(.., SEEK_END) from select queries on x64 builds Heikki Linnakangas <hlinnakangas@vmware.com>
Re: BUG: endless lseek(.., SEEK_END) from select queries on x64 builds Tom Lane <tgl@sss.pgh.pa.us>
On 22.02.2013 10:25, Markus Schulz wrote:
> i can run the query four times with good performance and after that postgresql
> starts with the strange lseek() behavior.

By default, the JDBC driver re-plans the prepared statement for the 
first 4 invocations of the query. On the fifth invocation, it switches 
to using a generic plan, which will be reused on subsequent invocations. 
See http://jdbc.postgresql.org/documentation/head/server-prepare.html. 
The generic plan seems to perform much worse in this case. You can 
disable that mechanism and force re-planning the query every time by 
setting the "prepareThreshold=0" parameter on the data source.

You could check what the generic plan looks like by taking the query 
used in the java program, with the parameter markers, and running 
EXPLAIN on that.

PostgreSQL version 9.2 might work better in this case. It has some 
smarts in the server to generate parameter-specific plans even when 
prepared statements are used, if the planner thinks a specific plan will 
be faster.

- Heikki

В списке pgsql-performance по дате отправления
От: Markus Schulz
Дата:
От: Stephen Frost
Дата:
FAQ