Improved timeout handling.

This commit is contained in:
2026-09-14 20:08:55 +02:00
parent 8b52d73a65
commit 1496a48199
+15 -20
View File
@@ -10,21 +10,6 @@ const { agentFor } = require('../proxy');
const logger = require('../logger')(__filename); const logger = require('../logger')(__filename);
const limiterFor = require('../limiter'); const limiterFor = require('../limiter');
// bhttp has no timeout at all by default - if the server (or, more likely, a proxy tunnel
// that connects fine but then never relays anything) just stops responding mid-request without
// erroring, the returned promise never settles. With the limiter's concurrency capped, that one
// stuck request blocks every other download queued behind it, indefinitely. Race it against a
// hard wall-clock ceiling so a stall fails (and retries, below) instead of hanging forever.
function withTimeout(promise, ms, url) {
let timer;
const timedOut = new Promise((resolve, reject) => {
timer = setTimeout(() => reject(new Error(`Timed out after ${ms}ms fetching '${url}'`)), ms);
});
return Promise.race([promise, timedOut]).finally(() => clearTimeout(timer));
}
async function fetchItem(url, attempt, context) { async function fetchItem(url, attempt, context) {
async function retry(error) { async function retry(error) {
logger.warn(`Failed to fetch '${url}', ${attempt < config.fetch.retries ? 'retrying' : 'giving up'}: ${error.message} (${context.post ? context.post.permalink : 'no post'})`); logger.warn(`Failed to fetch '${url}', ${attempt < config.fetch.retries ? 'retrying' : 'giving up'}: ${error.message} (${context.post ? context.post.permalink : 'no post'})`);
@@ -42,11 +27,21 @@ async function fetchItem(url, attempt, context) {
// whichever of proxied/direct is NOT what it'd normally get - see resolveProxyUrl() // whichever of proxied/direct is NOT what it'd normally get - see resolveProxyUrl()
const flip = config.proxy.retryFlipped && attempt > 0; const flip = config.proxy.retryFlipped && attempt > 0;
const res = await limiterFor(url).schedule(async () => withTimeout( const res = await limiterFor(url).schedule(() => bhttp.get(url, {
bhttp.get(url, { headers: context.headers, agent: agentFor(url, { flip }) }), headers: context.headers,
config.fetch.timeout, agent: agentFor(url, { flip }),
url, // bhttp has no timeout at all by default - a server (or, more likely, a proxy
)); // tunnel) that connects fine but then just stops responding would otherwise hang
// forever. This isn't just a wall-clock ceiling on the *promise* (an external
// Promise.race achieves that, but leaves the real connection dangling) - bhttp
// calls req.abort() itself when this fires, actually releasing the socket. Without
// that, every stalled attempt leaks one connection onto the shared agent for that
// host; enough of those piling up (e.g. after several retries against a host that's
// currently black-holing everything, as seen with i.redd.it) exhausts it, and every
// *future* request to that host silently queues forever waiting for a socket that's
// never coming back - a freeze with no further log lines, not just a slow retry.
responseTimeout: config.fetch.timeout,
}));
if (res.statusCode !== 200) { if (res.statusCode !== 200) {
throw new Error(`Response not OK for ${url} (${res.statusCode})`); throw new Error(`Response not OK for ${url} (${res.statusCode})`);