Re: max execution time of query

From: Chris <dmagick(at)gmail(dot)com>
To: S Arvind <arvindwill(at)gmail(dot)com>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: max execution time of query
Date: 2009-06-05 06:29:04
Message-ID: 4A28BB30.3080406@gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

S Arvind wrote:
> Is there any possibility to mention max time a query can execute from
> DBCP side? our DB is Postgres and Container is tomcat 6. we dont want to
> give the timeout in postgres for all query but need to set in
> application side based on differnet needs? Is it possible?
>
> Is there anyother way to specify the query execution time out while
> establishing connection with the help of DBCP in tomcat?
>
> Example, if a query executed from web application then it should not
> execute more then 22mins. If it execute more then that means query shold
> be cancelled from postgres(important) and java should get exception on
> this event. Is it possible?

You can set statement_timeout per session.

http://www.postgresql.org/docs/8.3/static/runtime-config-client.html

Not sure what happens on the java side when the exec time is hit but the
query is cancelled in postgres.

--
Postgresql & php tutorials
http://www.designmagick.com/

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Albe Laurenz 2009-06-05 07:11:34 Re: recursive execute
Previous Message A. Kretschmer 2009-06-05 06:19:47 Re: max execution time of query