I am getting a connection reset error. I am fairly certain this is ing from a long running REST request, that is timing out.
{ [Error: socket hang up] code: 'ECONNRESET' }
Is there a way to disable request timeouts in Koa, so that I can test this hypothesis?
I am running node version 5.x, koa 0.10, centOs 6
I am getting a connection reset error. I am fairly certain this is ing from a long running REST request, that is timing out.
{ [Error: socket hang up] code: 'ECONNRESET' }
Is there a way to disable request timeouts in Koa, so that I can test this hypothesis?
I am running node version 5.x, koa 0.10, centOs 6
Share Improve this question edited Oct 19, 2016 at 18:30 akaphenom asked Oct 19, 2016 at 18:05 akaphenomakaphenom 6,89611 gold badges61 silver badges112 bronze badges 4- What do you mean by disable timeouts? Prevent the request from being made, or prevent it from throwing an error? This post could help, if you haven't read it yet. stackoverflow./questions/10814481/… – Larry Turtis Commented Oct 19, 2016 at 19:45
- Thanks Larry - I wondering if there is a more koa, specific answer. It wraps the HTTP stuff and gives you limited control... – akaphenom Commented Oct 19, 2016 at 19:56
-
Have you tried running the app with
DEBUG=*
and using app.onerror? You're trying to find the bad request, right? – Larry Turtis Commented Oct 19, 2016 at 20:09 -
AFAIK Koa doesn't impose any timeouts, the socket
hang up error
is thrown from the underlying nodejs socket. Maybereq.socket.setTimeout()
might help you increase the timeout. – zeronone Commented Oct 30, 2016 at 13:35
2 Answers
Reset to default 6It seems your request take longer than default Koa timeout. Default Koa timeout is 2 minutes
I had similar problem one request take more time than 2 minutes.
I was inspirate by zeronone
mend in this post, and finally this line helped to me
ctx.request.socket.setTimeout(5 * 60 * 1000);
so whole code in router could look like
router.post('/long-request', async (ctx) => {
// set timeout to 5 minutes
ctx.request.socket.setTimeout(5 * 60 * 1000);
// do some stuf what take long time
// but less than 5 minutes
});
I really don't remend do request what take longer than 1 minute, ideally run the heavy stuff on separate process and by other request just check if is the work done.
So that could be good just for testing purposes
if want to set timeout for application server:
let app = new Koa();
let server=app.listen(3000);
server.timeout=5*60*1000;
if for per request, as @m1uan saying:
router.get("/path",async (ctx)=>{
ctx.request.socket.setTimeout(5 * 60 * 1000);
})
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743638304a4482526.html
评论列表(0条)