Express.js连接超时与服务器超时

问题描述 投票:0回答:1

我正在使用express和Connect Timeout Middleware来处理超时。

它工作得很好,但我默认的node http服务器的超时设置为两分钟。

因此,如果我想将超时中间件设置为大于两分钟的值,我还必须将http服务器超时增加到稍大一些(否则我的连接超时处理程序不会被调用)

const app = express();
const http = new Http.Server(app);

http.setTimeout((4 * 60 * 1000) + 1); <-- Must set this

app.use(timeout('4m')); 

我怎么能避免这个?我错过了什么吗?

node.js express connection-timeout
1个回答
1
投票

如果你想使用connect-timeout中间件,你无法避免它,因为中间件不会改变套接字超时,默认为2分钟。

有可能的方法来避免它,使用server.setTimeout()request.setTimeout

如果您只想将超时更改为几个路由,并将默认超时保留为其余路由,建议的方法是使用:request.setTimeout

app.use('/some-routes', (req, res, next) => {
   req.setTimeout((4 * 60 * 1000) + 1);
   next();
}, timeout('4m'));

req.setTimeout设置为大于connect-timeout值的替代方法是放弃connect-timeout中间件并使用另一种解决方法,这也是不理想的。

你可以查看这个旧的Node.js问题https://github.com/nodejs/node-v0.x-archive/issues/3460

function haltOnTimedout (req, res, next) {
  if (!req.timedout) next()
}

app.use('/some-routes', (req, res, next) => {
    req.setTimeout(4 * 60 * 1000); // No need to offset

    req.socket.removeAllListeners('timeout'); // This is the work around
    req.socket.once('timeout', () => {
        req.timedout = true;
        res.status(504).send('Timeout');
    });

    next();
});


app.use(haltOnTimedout);

// But if the timeout occurs in the middle of a route
// You will need to check if the headers were sent or if the request timedout

app.get('/some-routes', async(req, res, next) => {

  // some async processing...
  await asyncOperation();

  if (!res.headersSent) // or !req.timedout 
    res.send('done');

});
© www.soinside.com 2019 - 2024. All rights reserved.