Node PostgreSQL timeout a query by the client

若如初见. 提交于 2019-12-23 12:38:10

问题


I'm using Node package pg for postgres (here):

npm i pg

var pg = require('pg');

I'm querying a large cluster which is not owned by me, and under certain conditions may fail. Failure may be bad response which is easy to handle or endless query. Please note I can not introduce changes [config or otherwise] on the DB side.

Is there any way to set a timeout for query time? I'd like my client to give up after a set time, and return timeout error.

Couldn't find anything as such in the docs.

Thanks from ahead!


回答1:


Best practice is using an init query, to set query timeout for the session.

    SET statement_timeout TO 15000; # x milliseconds or 0 (turns off limitation)

This takes an argument of the timeout in ms, and is applied for the session. Afterwards, when a query takes longer than the value specified, you will receive an error from the server. Note this is on user's request:

    ERROR:  Query (150) cancelled on user's request

Also note this actually cancels the query on the server side, reducing load.




回答2:


You can setup statement_timeout in the client:

const { Client } = require('pg')

const client = new Client({
  statement_timeout: 10000
})

or in the pool:

const { Pool } = require('pg')

const pool = new Pool({
  statement_timeout: 10000
})


来源:https://stackoverflow.com/questions/31904365/node-postgresql-timeout-a-query-by-the-client

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!