With Atlassian applications there are typically 2 places where you can set timeouts. The first is within Tomcat itself. The second is in your proxy. I contend that timeouts are misunderstood and as a result, misconfigured.
From the Tomcat Connector Docs:
If JK aborts waiting for a response, because a reply timeout fired, there is no way to stop processing on the backend. Although you free processing resources in your web server, the request will continue to run on the backend - without any way to send back a result once the reply timeout fired.
For your proxy, since it has no way to kill a backend job, it also does essentially the same thing.
But what does this mean for us practically? I think it's easier to illustrate with an example:
This is of course an extreme example, but in practice this kind of thing does happen. Especially across a variety of users and operations. Most importantly, the timeout in this case is not bringing any value to end users, and especially not to application administrators.
I propose that unless you have a very good reason to specify low timeouts that you set them exceptionally high.
I would love to hear counterpoints that I may not have thought of.
I tend to set it anywhere from 10-30 minutes.
When the timout is long, the user get impatient and refresh the browser. That would also build up more running job on the server right? I noticed that user tend to refresh their browser after 3-4 minutes.
This is a possibility, but with a timeout, it is a certainty. I prefer the prior 🤷