Can we exceed Execution time more than 1 mins
Opened this issue · 2 comments
Hi,
I am trying to run long script on grails console, after some time (approx 1 min), it stop execution. SO can we exceed the time of execution ?
Usually this is caused by a timeout setting in the container.
From our experience, the 60s timeout is just for http request by default. What I mean is that, even the http request timeout (so we see a error on console UI, we get no response from server etc.), the script is actually still running on the server.
We had to do some heavy DB operations in the script and it couldn't finish in 1 minute for sure. What we did is to compose the script with sufficient logging. So even the request times out, the script is still running and we can track the progress by tailing the application log.