当你的任务是耗时任务的时候,不要用 http 来做健康检查
这里的 http 指的是:@http('GET', '/health/')
这样的 http 装饰器
nameko 有 max_workers 限制 pool 的大小, http 也是要排队的
任务本身特别耗时,用 http client 就会 timeout
发布时间:2022-11-19 21:30
当你的任务是耗时任务的时候,不要用 http 来做健康检查
这里的 http 指的是:@http('GET', '/health/')
这样的 http 装饰器
nameko 有 max_workers 限制 pool 的大小, http 也是要排队的
任务本身特别耗时,用 http client 就会 timeout