NestJS - 请求超时

时间:2018-03-09 06:38:42

标签: express nestjs

如何为所有请求设置超时,如果timedout再响应自定义json?

我试图使用:

import * as timeout from 'connect-timeout';

import { NestFactory } from '@nestjs/core';
import { ApplicationModule } from './app.module';

const port = process.env.PORT || 3020;

async function bootstrap() {
  const app = await NestFactory.create(ApplicationModule);
  app.use(timeout('5s'));
  app.use(haltOnTimedOut);

  await app.listen(port);
} 
bootstrap();


function haltOnTimedOut (req, res, next) {
  if (!req.timedout){
      next();
  } else {
      res
        .status(408)
        .json({ status: 'error', data: 'timeout'})
  }
}

但没有运气。

4 个答案:

答案 0 :(得分:6)

要增加 nestjs-API应用服务器请求/响应超时,我在main.js中做了以下操作

const server = await app.listen(5000);
server.setTimeout(1800000); // 600,000=> 10Min, 1200,000=>20Min, 1800,000=>30Min

答案 1 :(得分:0)

app.use(timeout('5s'));移出bootstrap功能,并从else功能中移除haltOnTimedOut阻止。

尝试将您的bootstrap函数称为中间件,如下所示,

app.use(boostrap, timeout('5s'), bodyParser.json(), haltOnTimedout, function (req, res, next) {
if (req.timedout) return
      res
        .status(408)
        .json({ status: 'error', data: 'timeout'})
});

希望这有帮助!

答案 2 :(得分:0)

您可以将快速实例传递给from collections import Counter def suractifs3(names, group): names_in_acts = sum( (list(s) for s in group.itervalues()), []) act_list = Counter(names_in_acts).most_common() act_list.sort(key=lambda t : -t[1]) a = act_list[0] return set(names[t[0]] for t in act_list if t[1] == a[1]), a[1] ,以便将中间件添加到该快速实例中,例如

NextFactory.create(module, expressInstance)

它应该有用。

答案 3 :(得分:0)

NestJS 有一个叫做拦截器的特性。拦截器可用于强制超时,它们在此处演示,TimeoutInterceptor

假设您的拦截器位于一个名为 timeout.interceptor.ts 的文件中:

import { Injectable, NestInterceptor, ExecutionContext, CallHandler, RequestTimeoutException } from '@nestjs/common';
import { Observable, throwError, TimeoutError } from 'rxjs';
import { catchError, timeout } from 'rxjs/operators';

@Injectable()
export class TimeoutInterceptor implements NestInterceptor {
  intercept(context: ExecutionContext, next: CallHandler): Observable<any> {
    return next.handle().pipe(
      timeout(5000),
      catchError(err => {
        if (err instanceof TimeoutError) {
          return throwError(new RequestTimeoutException());
        }
        return throwError(err);
      }),
    );
  };
};

在此之后,您必须注册它,这可以通过多种方式完成。全局注册方式如下图:

const app = await NestFactory.create(AppModule);
app.useGlobalInterceptors(new TimeoutInterceptor());