我使用jOOQ对PostgreSQL数据库运行了一个查询。由于我知道这个查询需要很长时间,我尝试设置查询超时。我尝试了几种方法,但每次的结果都是查询超时被忽略,并且查询在一分钟后失败(这是这个数据库的默认超时),错误如下:* “由于语句超时取消语句”*.为什么会这样,如何设置查询超时?
以下是我尝试设置TO的方法:
1.
DSL.using(dataSource, SQLDialect.POSTGRES, new Settings().withQueryTimeout(600))
.deleteFrom(...)
...
.execute();
DSL.using(dataSource, SQLDialect.POSTGRES)
.deleteFrom(...)
...
.queryTimeout(6000)
.execute();
DSLContext transactionContext =
DSL.using(dataSource, SQLDialect.POSTGRES, new Settings().withQueryTimeout(600));
transactionContext.transaction(configuration ->
{
DSL.using(configuration).deleteFrom(...)
...
.execute();
});
我被告知这与jOOQ无关,所以我做了下面的测试:
import org.apache.commons.dbcp2.*;
import java.sql.Connection;
import java.sql.PreparedStatement;
...
ConnectionFactory connectionFactory = new DriverManagerConnectionFactory(dbURL, username, password);
Connection connection = connectionFactory.createConnection();
PreparedStatement preparedStatement = connection.prepareStatement("select pg_sleep(80)");
preparedStatement.setQueryTimeout(120);
preparedStatement.execute();
这在一分钟后失败,并出现相同的超时错误,因此该问题确实与jOOQ无关。connection
的类型为org.postgresql.jdbc.PgConnection
。preparedStatement
的类型为org.postgresql.jdbc.PgPreparedStatement
。
1条答案
按热度按时间t1qtbnec1#
这两个函数的作用不同。statement_timeout使数据库服务器根据PostgreSQL的计时器自行取消查询,而setQueryTimeout()使Java根据Java的计时器启动取消操作(通过打开一个单独的特定目的的数据库连接并发送一个取消请求)。由于它们是不同的机制,因此一个不会取消另一个。
要取消服务器设置,您需要执行
set local statement_timeout=120000;
语句。可能还有其他方法可以更改服务器设置,但setQueryTimeout()不是其中之一。