I have the shiny application
deployed on the Rshiny pro server
. The main aim of the application is to process the input excel
files and produce the report in the form of word document
which has couple of tables
and around 15 graphs
rendered using the ggplot
.
This application works perfect for the input excel files having less than approx. 3500-4500 rows
for around 10 metrics
.
Now, I am trying to process the excel file with around 4000-4500 rows
for around 20 metrics
. While processing this file, during report generation(Rmarkdown
file processing) it's showing the network error
on the UI
only. Despite this error on the UI, in the back-end the report file is getting generated, but the generated report doesn't get downloaded. After this error, the report generation action is getting triggered automatically resulting in the generation of two reports which is again doesn't get downloaded.
So, from this observations, I came to the conclusion that on getting the network error
, the download report
(report generation and downloading) action is getting triggered again by the server.R.
Has anyone been through such strange situation? I am looking for guidance regarding the two problems here-
- What can be the reason of getting the
network error
sometime only? - What is there, which is triggering the
download report
action twice? - Is there any option to specify the max. session timeout period?