I have the shiny application deployed on the Rshiny pro server(1.5.2)
.
Application does some heavy computations and generates the report without any problem if it gets completed before approximately 45 seconds
.
If the computation and report generation goes beyond approximately 45 seconds, user's session / connection to the server is getting interrupted. Then automatically server is reconnecting
the disconnected users almost immediately. After few seconds of re-connection
the user session is getting reaped and user is presented with the notwork error.
From above observations we know that the reconnect
flag is enabled
at the server.
I need help to understand-
- Why the user session is getting interrupted around approximately
45 seconds
every single time. - How to prevent this session interruption? Is there any configuration at server or application side which will help me achieve uninterrupted session between user and server?