Express.js HTTP request timeout

后端 未结 3 1573
-上瘾入骨i
-上瘾入骨i 2021-01-05 02:37

I was wondering if anyone could tell me what the default HTTP request timeout is when using express.

What I mean by this is: after how many seconds of dealing with a

相关标签:
3条回答
  • 2021-01-05 03:14

    req.connection.setTimeout(ms); appears to set the request timeout for a HTTP server in Node.js.

    0 讨论(0)
  • 2021-01-05 03:19

    req.connection.setTimeout(ms); might be a bad idea since multiple requests can be sent over the same socket.

    Try connect-timeout or use this:

    var errors = require('./errors');
    const DEFAULT_TIMEOUT = 10000;
    const DEFAULT_UPLOAD_TIMEOUT = 2 * 60 * 1000;
    
    /*
    Throws an error after the specified request timeout elapses.
    
    Options include:
        - timeout
        - uploadTimeout
        - errorPrototype (the type of Error to throw)
    */
    module.exports = function(options) {
        //Set options
        options = options || {};
        if(options.timeout == null)
            options.timeout = DEFAULT_TIMEOUT;
        if(options.uploadTimeout == null)
            options.uploadTimeout = DEFAULT_UPLOAD_TIMEOUT;
        return function(req, res, next) {
            //timeout is the timeout timeout for this request
            var tid, timeout = req.is('multipart/form-data') ? options.uploadTimeout : options.timeout;
            //Add setTimeout and clearTimeout functions
            req.setTimeout = function(newTimeout) {
                if(newTimeout != null)
                    timeout = newTimeout; //Reset the timeout for this request
                req.clearTimeout();
                tid = setTimeout(function() {
                    if(options.throwError && !res.finished)
                    {
                        //throw the error
                        var proto = options.error == null ? Error : options.error;
                        next(new proto("Timeout " + req.method + " " + req.url) );
                    }
                }, timeout);
            };
            req.clearTimeout = function() {
                clearTimeout(tid);
            };
            req.getTimeout = function() {
                return timeout;
            };
            //proxy end to clear the timeout
            var oldEnd = res.end;
            res.end = function() {
                req.clearTimeout();
                res.end = oldEnd;
                return res.end.apply(res, arguments);
            }
            //start the timer
            req.setTimeout();
            next();
        };
    }
    
    0 讨论(0)
  • 2021-01-05 03:25

    The default request timeout in Node v0.9+ is 2 minutes. That is what express uses.

    You can increase it for a single route using:

    app.get('/longendpoint', function (req, res) {
       req.setTimeout(360000); // 5 minutes
       ...
    });
    
    0 讨论(0)
提交回复
热议问题