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!